diff --git a/dnd5e.mjs b/dnd5e.mjs
index deb30c4747..3c93b9d23a 100644
--- a/dnd5e.mjs
+++ b/dnd5e.mjs
@@ -110,7 +110,7 @@ Hooks.once("init", function() {
if ( !game.settings.get("dnd5e", "sanityScore") ) delete DND5E.abilities.san;
// Legacy rules.
- if ( game.settings.get("dnd5e", "rulesVersion") === "legacy" ) applyLegacyRules();
+ if ( dnd5e.settings.rulesVersion === "legacy" ) applyLegacyRules();
// Register system
DND5E.SPELL_LISTS.forEach(uuid => dnd5e.registry.spellLists.register(uuid));
@@ -483,7 +483,7 @@ Hooks.once("i18nInit", () => {
// Set up status effects. Explicitly performed after init and before prelocalization.
_configureStatusEffects();
- if ( game.settings.get("dnd5e", "rulesVersion") === "legacy" ) {
+ if ( dnd5e.settings.rulesVersion === "legacy" ) {
const { translations, _fallback } = game.i18n;
foundry.utils.mergeObject(translations, {
"TYPES.Item": {
diff --git a/module/applications/actor/api/base-actor-sheet.mjs b/module/applications/actor/api/base-actor-sheet.mjs
index 277087a80e..7aacaa7913 100644
--- a/module/applications/actor/api/base-actor-sheet.mjs
+++ b/module/applications/actor/api/base-actor-sheet.mjs
@@ -204,7 +204,7 @@ export default class BaseActorSheet extends PrimarySheetMixin(
limited: this.actor.limited,
modernRules: this.actor.system.source?.rules
? this.actor.system.source.rules === "2024"
- : game.settings.get("dnd5e", "rulesVersion") === "modern",
+ : dnd5e.settings.rulesVersion === "modern",
rollableClass: this.isEditable ? "rollable" : "",
sidebarCollapsed: !!game.user.getFlag("dnd5e", this._sidebarCollapsedKeyPath),
system: this.actor.system,
diff --git a/module/applications/actor/npc-sheet.mjs b/module/applications/actor/npc-sheet.mjs
index 4dcddea3c2..7dd51524a4 100644
--- a/module/applications/actor/npc-sheet.mjs
+++ b/module/applications/actor/npc-sheet.mjs
@@ -293,7 +293,7 @@ export default class NPCActorSheet extends BaseActorSheet {
// Visibility
if ( this._mode === this.constructor.MODES.PLAY ) {
context.showDeathSaves = context.important && !context.system.attributes.hp.value;
- context.showInitiativeScore = game.settings.get("dnd5e", "rulesVersion") === "modern";
+ context.showInitiativeScore = dnd5e.settings.rulesVersion === "modern";
}
context.showLoyalty = context.important && game.settings.get("dnd5e", "loyaltyScore") && game.user.isGM;
context.showRests = game.user.isGM || (this.actor.isOwner && game.settings.get("dnd5e", "allowRests"));
diff --git a/module/applications/advancement/ability-score-improvement-flow.mjs b/module/applications/advancement/ability-score-improvement-flow.mjs
index 1c7f81cc40..a9bea559d4 100644
--- a/module/applications/advancement/ability-score-improvement-flow.mjs
+++ b/module/applications/advancement/ability-score-improvement-flow.mjs
@@ -99,7 +99,7 @@ export default class AbilityScoreImprovementFlow extends AdvancementFlow {
};
}
- const modernRules = game.settings.get("dnd5e", "rulesVersion") === "modern";
+ const modernRules = dnd5e.settings.rulesVersion === "modern";
const pluralRules = new Intl.PluralRules(game.i18n.lang);
return foundry.utils.mergeObject(super.getData(), {
abilities, lockImprovement, points, recommendation,
diff --git a/module/applications/item/item-sheet.mjs b/module/applications/item/item-sheet.mjs
index 1ae1144c35..36ed1d18b0 100644
--- a/module/applications/item/item-sheet.mjs
+++ b/module/applications/item/item-sheet.mjs
@@ -342,7 +342,7 @@ export default class ItemSheet5e extends PrimarySheetMixin(DocumentSheet5e) {
// If using modern rules, do not show redundant artificer progression unless it is already selected.
context.spellProgression = { ...CONFIG.DND5E.spellProgression };
- if ( (game.settings.get("dnd5e", "rulesVersion") === "modern")
+ if ( (dnd5e.settings.rulesVersion === "modern")
&& (this.item.system.spellcasting?.progression !== "artificer") ) delete context.spellProgression.artificer;
context.spellProgression = Object.entries(context.spellProgression).map(([value, config]) => {
const group = CONFIG.DND5E.spellcasting[config.type]?.label ?? "";
diff --git a/module/applications/settings/variant-rules-settings.mjs b/module/applications/settings/variant-rules-settings.mjs
index d24ba95952..fff9420374 100644
--- a/module/applications/settings/variant-rules-settings.mjs
+++ b/module/applications/settings/variant-rules-settings.mjs
@@ -39,7 +39,7 @@ export default class VariantRulesSettingsConfig extends BaseSettingsConfig {
switch ( partId ) {
case "general":
context.fields = [
- game.settings.get("dnd5e", "rulesVersion") === "legacy" ? this.createSettingField("allowFeats") : null,
+ dnd5e.settings.rulesVersion === "legacy" ? this.createSettingField("allowFeats") : null,
this.createSettingField("restVariant"),
this.createSettingField("proficiencyModifier"),
this.createSettingField("levelingMode")
diff --git a/module/canvas/layers/tokens.mjs b/module/canvas/layers/tokens.mjs
index c9eefd9408..198a83750e 100644
--- a/module/canvas/layers/tokens.mjs
+++ b/module/canvas/layers/tokens.mjs
@@ -9,7 +9,7 @@ export default class TokenLayer5e extends foundry.canvas.layers.TokenLayer {
*/
isOccupiedGridSpaceBlocking(gridSpace, token, { preview=false }={}) {
const tokenSize = CONFIG.DND5E.actorSizes[token.actor?.system.traits.size]?.numerical ?? 2;
- const modernRules = game.settings.get("dnd5e", "rulesVersion") === "modern";
+ const modernRules = dnd5e.settings.rulesVersion === "modern";
const halflingNimbleness = token.actor?.getFlag("dnd5e", "halflingNimbleness");
const found = this.#getRelevantOccupyingTokens(gridSpace, token, { preview }).filter(t => {
// Only creatures block movement.
@@ -60,7 +60,7 @@ export default class TokenLayer5e extends foundry.canvas.layers.TokenLayer {
* @returns {boolean} Whether the moving token should suffer difficult terrain
*/
isOccupiedGridSpaceDifficult(gridSpace, token, { preview=false }={}) {
- const modernRules = game.settings.get("dnd5e", "rulesVersion") === "modern";
+ const modernRules = dnd5e.settings.rulesVersion === "modern";
const found = this.#getRelevantOccupyingTokens(gridSpace, token, { preview }).filter(t => {
// Only consider creatures as difficult terrain for now.
if ( !t.actor?.system.isCreature ) return false;
diff --git a/module/data/abstract/system-data-model.mjs b/module/data/abstract/system-data-model.mjs
index 59482d5dcb..b52caf8299 100644
--- a/module/data/abstract/system-data-model.mjs
+++ b/module/data/abstract/system-data-model.mjs
@@ -136,22 +136,23 @@ export default class SystemDataModel extends foundry.abstract.TypeDataModel {
/* -------------------------------------------- */
/** @inheritDoc */
- static cleanData(source, options) {
- this._cleanData(source, options);
- return super.cleanData(source, options);
+ static cleanData(source, options, _state) {
+ this._cleanData(source, options, _state);
+ return super.cleanData(source, options, _state);
}
/* -------------------------------------------- */
/**
* Performs cleaning without calling DataModel.cleanData.
- * @param {object} [source] The source data
- * @param {object} [options={}] Additional options (see DataModel.cleanData)
+ * @param {object} [source] The source data
+ * @param {object} [options={}] Additional options (see DataModel.cleanData)
+ * @param {Partial 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): [[/item
+ following cleric spells prepared: Cantrips (at will): [[/item
.n9pJzTDsAwQxJVRl]]{sacred flame}, [[/item .8zT7njvqbpXs4Cel]]{spare
- the dying}, [[/item .MUO1uYN7JR1hm4dR]]{thaumaturgy}• 1st level (4
- slots): [[/item .arzCrMRgcNiQuh43]]{command}, [[/item
+ the dying}, [[/item .MUO1uYN7JR1hm4dR]]{thaumaturgy} 1st level
+ (4 slots): [[/item .arzCrMRgcNiQuh43]]{command}, [[/item
.Mzh95utKDPIrjiH8]]{detect evil and good}, [[/item
- .ghXTfe7sgCbgf1Q8]]{detect magic}• 2nd level (3 slots): [[/item
+ .ghXTfe7sgCbgf1Q8]]{detect magic} 2nd level (3 slots): [[/item
.F0GsG0SJzsIOacwV]]{lesser restoration}, [[/item
- .CylBa7jR8DSbo8Z3]]{zone of truth}• 3rd level (3 slots): [[/item
+ .CylBa7jR8DSbo8Z3]]{zone of truth} 3rd level (3 slots): [[/item
.15Fa6q1nH27XfbR8]]{dispel magic}, [[/item
- .gopnZvS0c2jD5FP8]]{tongues}• 4th level (3 slots): [[/item
+ .gopnZvS0c2jD5FP8]]{tongues} 4th level (3 slots): [[/item
.pxpb2eOB6bv4phAf]]{banishment}, [[/item .da0a1t2FqaTjRZGT]]{freedom
- of movement}• 5th level (2 slots): [[/item .5e1xTohkzqFqbYH4]]{flame
- strike}, [[/item .WzvJ7G3cqvIubsLk]]{greater restoration}• 6th level
- (1 slot): [[/item .mgFqi0ev8f7Ut19y]]{heroes' feast}
5th level (2 slots): [[/item + .5e1xTohkzqFqbYH4]]{flame strike}, [[/item .WzvJ7G3cqvIubsLk]]{greater + restoration}
6th level (1 slot): [[/item + .mgFqi0ev8f7Ut19y]]{heroes' feast}
chat: >-The sphinx is a spellcaster. Its spellcasting ability is Wisdom.
@@ -643,11 +644,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745447015920 + modifiedTime: 1765824512170 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!nEC1BRwM8Lx9hLXW.zXzGfPnSFJbfZ7oW' @@ -925,19 +926,21 @@ items: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.
+ able to hear the roar must make a saving throw.First + Roar. Each creature that fails a DC 18 Wisdom saving throw is + &Reference[frightened apply=false]{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 &Reference[deafened + apply=false]{deafened} and frightened for 1 minute. A frightened + creature is &Reference[paralyzed apply=false]{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 + &Reference[prone]{prone}. On a successful save, the creature takes + half as much damage and isn't knocked prone.
chat: >-The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different. @@ -962,118 +965,7 @@ items: requirements: '' properties: [] activities: - dnd5eactivity000: - _id: dnd5eactivity000 - type: utility - activation: - type: action - value: 1 - condition: '' - override: false - consumption: - targets: - - type: itemUses - target: '' - value: '1' - scaling: - mode: '' - formula: '' - scaling: - allowed: false - max: '' - spellSlot: true - description: - chatFlavor: '' - duration: - concentration: false - value: '' - units: '' - special: '' - override: false - effects: [] - range: - value: '500' - units: ft - special: '' - override: false - target: - template: - count: '' - contiguous: false - type: '' - size: '' - width: '' - height: '' - units: any - affects: - count: '' - type: creature - choice: false - special: '' - prompt: true - override: false - uses: - spent: 0 - max: '' - recovery: [] - roll: - formula: '' - name: '' - prompt: false - visible: false - sort: 0 - enchant: {} - prerequisites: - level: null - identifier: roar - effects: [] - folder: null - sort: 300000 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.QCNJD2GuOZSTT4Wt - duplicateSource: null - coreVersion: '13.350' - systemId: dnd5e - systemVersion: 4.2.0 - createdTime: null - modifiedTime: 1760378366024 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!nEC1BRwM8Lx9hLXW.ez87kySQJgKUPT9L' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - recovery: [] - spent: 0 - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: - dnd5eactivity000: - _id: dnd5eactivity000 + YEy36H064rrzAAxY: type: save activation: type: action @@ -1084,7 +976,7 @@ items: targets: - type: itemUses value: '1' - target: ez87kySQJgKUPT9L + target: '' scaling: allowed: false max: '' @@ -1097,23 +989,24 @@ items: units: minute special: '' override: false - effects: [] + effects: + - _id: 8y59T2g8cbSOAHCs range: - units: '' + units: self special: '' override: false target: template: count: '' contiguous: false - type: '' - size: '' + type: radius + size: '500' width: '' height: '' - units: '' + units: ft affects: count: '' - type: '' + type: creature choice: false special: '' prompt: true @@ -1126,66 +1019,25 @@ items: onSave: half parts: [] save: - ability: wis + ability: + - wis dc: - calculation: '' + calculation: wis formula: '18' sort: 0 - name: '' + name: First Roar + flags: {} + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + _id: YEy36H064rrzAAxY img: '' - appliedEffects: [] - enchant: {} - prerequisites: - level: null - identifier: first-roar - effects: [] - folder: null - sort: 400000 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.T25IRJ66yUqi2F1m - duplicateSource: null - coreVersion: '13.350' - systemId: dnd5e - systemVersion: 5.2.0 - createdTime: null - modifiedTime: 1760378483118 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!nEC1BRwM8Lx9hLXW.sCcGdT18vb7al854' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - recovery: [] - spent: 0 - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: - dnd5eactivity000: - _id: dnd5eactivity000 + bw7Ol7mkkyDDH3LD: type: save activation: type: action @@ -1196,7 +1048,7 @@ items: targets: - type: itemUses value: '1' - target: ez87kySQJgKUPT9L + target: '' scaling: allowed: false max: '' @@ -1209,23 +1061,24 @@ items: units: minute special: '' override: false - effects: [] + effects: + - _id: zFYAB0S0YmMO1C8D range: - units: '' + units: self special: '' override: false target: template: count: '' contiguous: false - type: '' - size: '' + type: radius + size: '500' width: '' height: '' - units: '' + units: ft affects: count: '' - type: '' + type: creature choice: false special: '' prompt: true @@ -1238,66 +1091,25 @@ items: onSave: half parts: [] save: - ability: wis + ability: + - wis dc: - calculation: '' + calculation: wis formula: '18' sort: 0 - name: '' + name: Second Roar + flags: {} + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + _id: bw7Ol7mkkyDDH3LD img: '' - appliedEffects: [] - enchant: {} - prerequisites: - level: null - identifier: second-roar - effects: [] - folder: null - sort: 500000 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.lWnUAwBPfJf9WupM - duplicateSource: null - coreVersion: '13.350' - systemId: dnd5e - systemVersion: 5.2.0 - createdTime: null - modifiedTime: 1760378493850 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!nEC1BRwM8Lx9hLXW.hrPPu1rypQZWPHDp' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - recovery: [] - spent: 0 - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: - dnd5eactivity000: - _id: dnd5eactivity000 + euc6EMlISPKQtmY5: type: save activation: type: action @@ -1308,7 +1120,7 @@ items: targets: - type: itemUses value: '1' - target: ez87kySQJgKUPT9L + target: '' scaling: allowed: false max: '' @@ -1318,26 +1130,26 @@ items: duration: concentration: false value: '' - units: '' + units: inst special: '' override: false effects: [] range: - units: '' + units: self special: '' override: false target: template: count: '' contiguous: false - type: '' - size: '' + type: radius + size: '500' width: '' height: '' - units: '' + units: ft affects: count: '' - type: '' + type: creature choice: false special: '' prompt: true @@ -1358,42 +1170,130 @@ items: types: - thunder save: - ability: con + ability: + - con dc: - calculation: '' + calculation: wis formula: '18' sort: 0 - name: '' + name: Third Roar + flags: {} + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + _id: euc6EMlISPKQtmY5 img: '' - appliedEffects: [] enchant: {} prerequisites: level: null - identifier: third-roar - effects: [] + identifier: roar + effects: + - name: Frightened + img: systems/dnd5e/icons/svg/statuses/frightened.svg + origin: Compendium.dnd5e.monsters.Actor.nEC1BRwM8Lx9hLXW.Item.ez87kySQJgKUPT9L + transfer: false + _id: 8y59T2g8cbSOAHCs + type: base + system: {} + changes: [] + disabled: false + duration: + startTime: null + combat: null + seconds: 60 + rounds: null + turns: null + startRound: null + startTurn: null + description: '' + tint: '#ffffff' + statuses: + - frightened + sort: 0 + flags: + dnd5e: + riders: + statuses: [] + _stats: + compendiumSource: null + duplicateSource: null + exportSource: null + coreVersion: '13.351' + systemId: dnd5e + systemVersion: 5.2.3 + createdTime: 1765824670938 + modifiedTime: 1765824693547 + lastModifiedBy: dnd5ebuilder0000 + _key: >- + !actors.items.effects!nEC1BRwM8Lx9hLXW.ez87kySQJgKUPT9L.8y59T2g8cbSOAHCs + - name: Deafened, Frightened, & Paralyzed + img: systems/dnd5e/icons/svg/statuses/deafened.svg + origin: Compendium.dnd5e.monsters.Actor.nEC1BRwM8Lx9hLXW.Item.ez87kySQJgKUPT9L + transfer: false + _id: zFYAB0S0YmMO1C8D + type: base + system: {} + changes: [] + disabled: false + duration: + startTime: null + combat: null + seconds: 60 + rounds: null + turns: null + startRound: null + startTurn: null + description: '' + tint: '#ffffff' + statuses: + - deafened + - frightened + - paralyzed + sort: 0 + flags: + dnd5e: + riders: + statuses: [] + _stats: + compendiumSource: null + duplicateSource: null + exportSource: null + coreVersion: '13.351' + systemId: dnd5e + systemVersion: 5.2.3 + createdTime: 1765824705378 + modifiedTime: 1765824758890 + lastModifiedBy: dnd5ebuilder0000 + _key: >- + !actors.items.effects!nEC1BRwM8Lx9hLXW.ez87kySQJgKUPT9L.zFYAB0S0YmMO1C8D folder: null - sort: 600000 + sort: 300000 ownership: default: 0 flags: {} _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.WtQHjfWuFrsYEns3 + compendiumSource: Compendium.dnd5e.monsterfeatures.QCNJD2GuOZSTT4Wt duplicateSource: null - coreVersion: '13.350' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 5.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1760378502218 + modifiedTime: 1765824842919 lastModifiedBy: dnd5ebuilder0000 exportSource: null - _key: '!actors.items!nEC1BRwM8Lx9hLXW.guh5qlJFR8iKncKj' + _key: '!actors.items!nEC1BRwM8Lx9hLXW.ez87kySQJgKUPT9L' - _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.
+ value:The sphinx makes one [[/item .yotsIj19d5spOVGb]]{claw} attack.
chat: '' source: custom: '' @@ -1484,12 +1384,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.DPrO7eVVxiKD8QWD duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825709190 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!nEC1BRwM8Lx9hLXW.fZY6aMo87z2iSl9Q' - _id: ZZdoas8GMbE3AzzZ diff --git a/packs/_source/monsters/monstrosity/ankheg.yml b/packs/_source/monsters/monstrosity/ankheg.yml index d973a8e355..2dfceede08 100644 --- a/packs/_source/monsters/monstrosity/ankheg.yml +++ b/packs/_source/monsters/monstrosity/ankheg.yml @@ -670,9 +670,9 @@ items: value: >-The ankheg 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.
+ 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. chat: >-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 @@ -784,11 +784,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.kZpl32DBmqxlRegX duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676576 + modifiedTime: 1765824906853 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!Wcsjbl25uiUsyQwn.XZwZexkrBLOzLo1Q' diff --git a/packs/_source/monsters/monstrosity/basilisk.yml b/packs/_source/monsters/monstrosity/basilisk.yml index 32d7a881f5..55811c10c2 100644 --- a/packs/_source/monsters/monstrosity/basilisk.yml +++ b/packs/_source/monsters/monstrosity/basilisk.yml @@ -489,21 +489,20 @@ items: system: description: value: >- -
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.
+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.
chat: >-The basilisk can force the creature to make a Constitution saving throw. It must repeat the saving @@ -527,7 +526,8 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 @@ -599,11 +599,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.wkIN7WTeX8ebbjtv duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676591 + modifiedTime: 1765824959651 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!hqj2yXtgwt64v3Lj.bKBPawscKpixPeO0' diff --git a/packs/_source/monsters/monstrosity/behir.yml b/packs/_source/monsters/monstrosity/behir.yml index e50556b9c9..a9e174b676 100644 --- a/packs/_source/monsters/monstrosity/behir.yml +++ b/packs/_source/monsters/monstrosity/behir.yml @@ -942,10 +942,9 @@ items: description: value: >-
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.
+ 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. chat: >-The behir exhales a line of lightning that is 20 ft. long and 5 ft. wide. Each creature in that line must make a @@ -1057,11 +1056,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LVnd9fq9cQj7rR0Q duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676905 + modifiedTime: 1765824986709 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!x47ZnpHfYl0ptDM9.gjce4R2feN2UH0YE' @@ -1072,20 +1071,19 @@ items: system: description: value: >- -
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 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.
chat:The Behir attacks with its Swallow.
source: custom: '' @@ -1182,11 +1180,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676905 + modifiedTime: 1765825007392 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!x47ZnpHfYl0ptDM9.0QJeW80m89X0RLNz' diff --git a/packs/_source/monsters/monstrosity/bulette.yml b/packs/_source/monsters/monstrosity/bulette.yml index f94e4a6d58..d76ba41308 100644 --- a/packs/_source/monsters/monstrosity/bulette.yml +++ b/packs/_source/monsters/monstrosity/bulette.yml @@ -652,9 +652,8 @@ items: 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.
+The bulette's long jump is up to 30 feet and its high jump is up to + 15 feet, with or without a running start.
chat: '' source: custom: '' @@ -686,12 +685,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.f4yvSah35ixQOswD duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825031471 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!1ES45ODWg3pCrkzv.xZeM7pLE9OPzdhBY' - _id: Keg9oouX6Vbl9tms @@ -705,13 +704,13 @@ items: 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.
+ 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. chat: >-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 @@ -735,89 +734,11 @@ items: requirements: '' properties: [] activities: - dnd5eactivity000: - _id: dnd5eactivity000 - type: damage - activation: - type: '' - value: null - condition: '' - override: false - consumption: - targets: [] - scaling: - allowed: false - max: '' - spellSlot: true - description: - chatFlavor: '' - duration: - concentration: false - value: '' - units: '' - special: '' - override: false - effects: [] - range: - value: '15' - units: ft - special: '' - override: false - target: - template: - count: '' - contiguous: false - type: '' - size: '' - width: '' - height: '' - units: '' - affects: - count: '' - type: '' - choice: false - special: '' - prompt: true - override: false - uses: - spent: 0 - max: '' - recovery: [] - damage: - critical: - allow: false - bonus: '' - parts: - - number: 3 - denomination: 6 - bonus: '@mod' - types: - - bludgeoning - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' - - number: 3 - denomination: 6 - bonus: '@mod' - types: - - slashing - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' - sort: 0 dnd5eactivity100: _id: dnd5eactivity100 type: save activation: - type: '' + type: action value: null condition: '' override: false @@ -864,36 +785,35 @@ items: damage: onSave: half parts: - - number: 3 + - custom: + enabled: false + formula: '' + number: 3 denomination: 6 bonus: '@mod' types: - bludgeoning - custom: + - custom: enabled: false formula: '' - scaling: - mode: whole - number: null - formula: '' - - number: 3 + number: 3 denomination: 6 bonus: '@mod' types: - slashing - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' save: ability: str dc: calculation: '' formula: '16' - sort: 0 + sort: 100000 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null @@ -907,11 +827,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.bG5Z45jj4wz0N3T6 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676520 + modifiedTime: 1765825064404 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!1ES45ODWg3pCrkzv.Keg9oouX6Vbl9tms' diff --git a/packs/_source/monsters/monstrosity/centaur.yml b/packs/_source/monsters/monstrosity/centaur.yml index c20e7cbf1f..23c766d04a 100644 --- a/packs/_source/monsters/monstrosity/centaur.yml +++ b/packs/_source/monsters/monstrosity/centaur.yml @@ -635,18 +635,18 @@ items: identifier: pike effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.items.tC0kcqZT9HHAO0PD duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107550021 + modifiedTime: 1765825099125 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!5kZNNWzZ6HrfKuWf.uhqyN44IRWXixgxU' @@ -798,18 +798,18 @@ items: identifier: hooves effects: [] folder: null - sort: 0 + sort: 300000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.re3oXQ3Xg4Z3Fr6O duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107550021 + modifiedTime: 1765825099125 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!5kZNNWzZ6HrfKuWf.ICbiLFrPjwIfA1Nj' @@ -964,18 +964,18 @@ items: identifier: longbow effects: [] folder: null - sort: 0 + sort: 400000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.items.3cymOVja8jXbzrdT duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745173384893 + modifiedTime: 1765825099125 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!5kZNNWzZ6HrfKuWf.v7ForWMLPJp1u78X' @@ -1074,11 +1074,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745273655160 + modifiedTime: 1765825100156 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!5kZNNWzZ6HrfKuWf.iYlIoEDfSCrggrca' @@ -1091,7 +1091,7 @@ items: value: >-
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.
+ extra 10 (3d6) piercing damage. chat: >-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 @@ -1111,7 +1111,8 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 @@ -1192,11 +1193,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676912 + modifiedTime: 1765825096049 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!5kZNNWzZ6HrfKuWf.4R48w4DH2CqCpmED' diff --git a/packs/_source/monsters/monstrosity/chimera.yml b/packs/_source/monsters/monstrosity/chimera.yml index 41af7a0d8a..ac2e4af69e 100644 --- a/packs/_source/monsters/monstrosity/chimera.yml +++ b/packs/_source/monsters/monstrosity/chimera.yml @@ -630,18 +630,18 @@ items: identifier: bite effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107553030 + modifiedTime: 1765825119561 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kr6r8bhSehACPfZ8.dDrIfOa408VFGv4a' @@ -793,18 +793,18 @@ items: identifier: claws effects: [] folder: null - sort: 0 + sort: 300000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107553030 + modifiedTime: 1765825119561 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kr6r8bhSehACPfZ8.J98n5dL3pMkWGu69' @@ -816,9 +816,9 @@ items: description: value: >-
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.
+ 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. chat: >-The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a Dexterity saving throw.
@@ -853,17 +853,10 @@ items: consumption: targets: - type: itemUses - target: '' value: '1' - scaling: - mode: '' - formula: '' - - type: activityUses target: '' + - type: activityUses value: '1' - scaling: - mode: '' - formula: '' scaling: allowed: false max: '' @@ -878,7 +871,7 @@ items: override: false effects: [] range: - units: none + units: self special: '' override: false target: @@ -892,7 +885,7 @@ items: units: ft affects: count: '' - type: '' + type: creature choice: false special: '' prompt: true @@ -902,47 +895,49 @@ items: max: '1' recovery: - period: recharge - type: recoverAll formula: '5' damage: onSave: half parts: - - number: 7 + - custom: + enabled: false + formula: '' + number: 7 denomination: 8 bonus: '' types: - fire - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' save: ability: dex dc: calculation: '' formula: '15' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null identifier: fire-breath effects: [] folder: null - sort: 0 + sort: 400000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.bGSW8IuWURWiWtxr duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676922 + modifiedTime: 1765825154891 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kr6r8bhSehACPfZ8.c4fLDKOomwlaFcac' @@ -1043,11 +1038,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745273656884 + modifiedTime: 1765825120745 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kr6r8bhSehACPfZ8.sAkv9mnK6l5nXmcz' @@ -1199,18 +1194,18 @@ items: identifier: horns effects: [] folder: null - sort: 0 + sort: 200000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107553030 + modifiedTime: 1765825129808 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kr6r8bhSehACPfZ8.m5xGw7RgVRGTklJT' diff --git a/packs/_source/monsters/monstrosity/cockatrice.yml b/packs/_source/monsters/monstrosity/cockatrice.yml index 6270d14340..81a7f150c5 100644 --- a/packs/_source/monsters/monstrosity/cockatrice.yml +++ b/packs/_source/monsters/monstrosity/cockatrice.yml @@ -490,11 +490,11 @@ items: description: value: >-[[/attack extended]]. [[/damage extended]].
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.
+ 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. chat: >-The Cockatrice attacks with its Bite. The target must make a Constitution saving throw. On a failed save, it must @@ -684,19 +684,7 @@ items: recovery: [] damage: onSave: half - parts: - - number: 1 - denomination: 4 - bonus: '@mod' - types: - - piercing - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' + parts: [] save: ability: con dc: @@ -707,6 +695,7 @@ items: ammunition: {} magicalBonus: null identifier: bite + mastery: '' effects: [] folder: null sort: 0 @@ -716,11 +705,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107550914 + modifiedTime: 1765825179291 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!EpYl7qifM5pq6W6B.gpxvIs8yjQ4awt4s' diff --git a/packs/_source/monsters/monstrosity/darkmantle.yml b/packs/_source/monsters/monstrosity/darkmantle.yml index 66049c0850..96aa619a05 100644 --- a/packs/_source/monsters/monstrosity/darkmantle.yml +++ b/packs/_source/monsters/monstrosity/darkmantle.yml @@ -785,25 +785,20 @@ items: recovery: [] damage: onSave: half - parts: - - number: 1 - denomination: 6 - bonus: '@mod' - types: - - bludgeoning - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' + parts: [] save: ability: str dc: calculation: '' formula: '13' sort: 0 + name: Detach + img: '' + visibility: + level: + min: null + max: null + identifier: '' attuned: false ammunition: {} magicalBonus: null @@ -817,11 +812,11 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107552647 + modifiedTime: 1765825222088 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!g7FSu2oU4YHPgWNA.DA34sS4nWGc4OTwm' diff --git a/packs/_source/monsters/monstrosity/death-dog.yml b/packs/_source/monsters/monstrosity/death-dog.yml index 09b29d780a..2b3c4a9774 100644 --- a/packs/_source/monsters/monstrosity/death-dog.yml +++ b/packs/_source/monsters/monstrosity/death-dog.yml @@ -724,9 +724,9 @@ items: 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.
+The dog has advantage on Wisdom (Perception) checks and on saving + throws against being blinded, charmed, deafened, frightened, stunned, + or knocked unconscious.
chat: '' source: custom: '' @@ -758,12 +758,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.zSBlyP5Vm1CAV5VO duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825274950 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!PH78NBdvoaszAb61.xpakQFJhIVCQz3Si' - _id: EHX3CeEnlmzwnnK5 diff --git a/packs/_source/monsters/monstrosity/doppelganger.yml b/packs/_source/monsters/monstrosity/doppelganger.yml index 5ec15fa74a..db24eb79a1 100644 --- a/packs/_source/monsters/monstrosity/doppelganger.yml +++ b/packs/_source/monsters/monstrosity/doppelganger.yml @@ -491,9 +491,8 @@ items: system: description: value: >- -In the first round of a combat, the doppelganger has - advantage on attack rolls against any creature it has - surprised.
+In the first round of a combat, the doppelganger has advantage on + attack rolls against any creature it has surprised.
chat: '' source: custom: '' @@ -518,19 +517,19 @@ items: identifier: ambusher effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EMygUh5uRujWaFYK duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825336192 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!mWbrPhcKOz6oLXMV.Cp2MgsVDDSRiF2aj' - _id: yfN4gklLV7zqhzxo @@ -632,19 +631,19 @@ items: identifier: surprise-attack effects: [] folder: null - sort: 0 + sort: 300000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.5DJYFjGQCz5aSl5e duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.0.0 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825331013 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!mWbrPhcKOz6oLXMV.yfN4gklLV7zqhzxo' - _id: Sr7ZTAYd1TQ6Nfto @@ -1028,11 +1027,11 @@ items: 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.
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.
chat: >-The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true @@ -1052,7 +1051,8 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 @@ -1120,11 +1120,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676742 + modifiedTime: 1765825332121 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!mWbrPhcKOz6oLXMV.cG4WdhcrTZt6rxUi' diff --git a/packs/_source/monsters/monstrosity/drider.yml b/packs/_source/monsters/monstrosity/drider.yml index a016c0ca5e..8d55c1b68f 100644 --- a/packs/_source/monsters/monstrosity/drider.yml +++ b/packs/_source/monsters/monstrosity/drider.yml @@ -494,8 +494,8 @@ items: system: description: value: >- -
The drider has advantage on saving throws against - being charmed, and magic can't put the drider to sleep.
+The drider has advantage on saving throws against being charmed, + and magic can't put the drider to sleep.
chat: '' source: custom: '' @@ -527,12 +527,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LvSBjRKoCAKaAnQy duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825367312 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!1OQbxoZI5BtlB2ME.3Fnspq3GjJ5g41lM' - _id: uRaC62ut3Hk63e7m @@ -644,9 +644,8 @@ items: system: description: value: >- -While in sunlight, the drider has disadvantage on - attack rolls, as well as on Wisdom (Perception) checks that rely on - sight.
+While in sunlight, the drider has disadvantage on attack rolls, as + well as on Wisdom (Perception) checks that rely on sight.
chat: '' source: custom: '' @@ -678,12 +677,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825379856 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!1OQbxoZI5BtlB2ME.tnQSw6SXTbUKi6vN' - _id: 4fZJqIbZDoAx8Yix diff --git a/packs/_source/monsters/monstrosity/ettercap.yml b/packs/_source/monsters/monstrosity/ettercap.yml index e070a368f8..f5a092b68d 100644 --- a/packs/_source/monsters/monstrosity/ettercap.yml +++ b/packs/_source/monsters/monstrosity/ettercap.yml @@ -736,11 +736,10 @@ items: system: description: value: >- -[[/attack extended]]. [[/damage extended]].
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.
+[[/attack extended]]. [[/damage extended]].
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.
chat: >-The Ettercap attacks with its Bite. The target must make a Constitution saving throw. The creature can repeat @@ -892,10 +891,71 @@ items: number: null formula: '' sort: 0 + Mn2C0C7SP6BII5ng: + type: save + _id: Mn2C0C7SP6BII5ng + sort: 0 + activation: + type: '' + override: false + condition: '' + consumption: + scaling: + allowed: false + spellSlot: true + targets: [] + description: + chatFlavor: '' + duration: + units: minute + concentration: false + override: false + value: '1' + effects: [] + flags: {} + range: + units: self + override: false + target: + template: + contiguous: false + units: ft + type: '' + affects: + choice: false + type: creature + count: '1' + special: '' + override: false + prompt: true + uses: + spent: 0 + recovery: [] + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + damage: + onSave: half + parts: [] + save: + ability: + - con + dc: + calculation: '' + formula: '11' + name: '' + img: '' attuned: false ammunition: {} magicalBonus: null identifier: bite + mastery: '' effects: [] folder: null sort: 0 @@ -905,11 +965,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107552251 + modifiedTime: 1765825460419 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!aKt7vFAS1J0x3FQm.qpUx52QbFUCSPSln' diff --git a/packs/_source/monsters/monstrosity/gorgon.yml b/packs/_source/monsters/monstrosity/gorgon.yml index de8c470911..1d4ebf7169 100644 --- a/packs/_source/monsters/monstrosity/gorgon.yml +++ b/packs/_source/monsters/monstrosity/gorgon.yml @@ -490,11 +490,11 @@ items: 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 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.
chat: >-If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same @@ -514,62 +514,9 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: - dnd5eactivity000: - _id: dnd5eactivity000 - type: utility - activation: - type: '' - value: null - condition: '' - override: false - consumption: - targets: [] - scaling: - allowed: false - max: '' - spellSlot: true - description: - chatFlavor: '' - duration: - concentration: false - value: '' - units: '' - special: '' - override: false - effects: [] - range: - value: '20' - units: ft - special: '' - override: false - target: - template: - count: '' - contiguous: false - type: '' - size: '' - width: '' - height: '' - units: '' - affects: - count: '' - type: '' - choice: false - special: '' - prompt: true - override: false - uses: - spent: 0 - max: '' - recovery: [] - roll: - formula: '' - name: '' - prompt: false - visible: false - sort: 0 dnd5eactivity100: _id: dnd5eactivity100 type: save @@ -640,11 +587,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.yD51x4dihnbHwfsj duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676895 + modifiedTime: 1765825519830 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!nZthq6WHLhcdu3te.zpzof99ziVJCU4hI' @@ -982,12 +929,12 @@ items: 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.
+ 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.
chat: >-The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must make a Constitution saving throw. @@ -1023,11 +970,8 @@ items: consumption: targets: - type: itemUses - target: '' value: '1' - scaling: - mode: '' - formula: '' + target: '' scaling: allowed: false max: '' @@ -1056,7 +1000,7 @@ items: units: ft affects: count: '' - type: '' + type: creature choice: false special: '' prompt: true @@ -1074,6 +1018,13 @@ items: calculation: '' formula: '13' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null @@ -1087,11 +1038,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.xmXYBevj0kuPa3Fo duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676895 + modifiedTime: 1765825552768 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!nZthq6WHLhcdu3te.5tEnGK28Rd4nHnwM' diff --git a/packs/_source/monsters/monstrosity/grick.yml b/packs/_source/monsters/monstrosity/grick.yml index 47347be6ba..c77806e3bb 100644 --- a/packs/_source/monsters/monstrosity/grick.yml +++ b/packs/_source/monsters/monstrosity/grick.yml @@ -493,8 +493,8 @@ items: system: description: value: >- -
The grick has advantage on Dexterity (Stealth) - checks made to hide in rocky terrain.
+The grick has advantage on Dexterity (Stealth) checks made to hide + in rocky terrain.
chat: '' source: custom: '' @@ -526,12 +526,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.j1cPfWFNvxGoex9Z duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825566277 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!tFJX45zj3QDc3Zli.mZf3scqsBLavvot1' - _id: dw5lQaT8ySNuOVd4 diff --git a/packs/_source/monsters/monstrosity/griffon.yml b/packs/_source/monsters/monstrosity/griffon.yml index 744e190db7..9530806205 100644 --- a/packs/_source/monsters/monstrosity/griffon.yml +++ b/packs/_source/monsters/monstrosity/griffon.yml @@ -489,8 +489,8 @@ items: system: description: value: >- -The griffon has advantage on Wisdom (Perception) - checks that rely on sight.
+The griffon has advantage on Wisdom (Perception) checks that rely + on sight.
chat: '' source: custom: '' @@ -522,12 +522,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825582222 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!h052EIIUmRwJum65.0o0MDYjWjFsJFvQZ' - _id: wF7eGWgo8AZNTcyg diff --git a/packs/_source/monsters/monstrosity/guardian-naga.yml b/packs/_source/monsters/monstrosity/guardian-naga.yml index 3dcd09fd23..31b6a33eca 100644 --- a/packs/_source/monsters/monstrosity/guardian-naga.yml +++ b/packs/_source/monsters/monstrosity/guardian-naga.yml @@ -495,8 +495,8 @@ items: 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.
+ its hit points.Only a wish spell can prevent this trait from + functioning.
chat: >-If it dies, the naga returns to life in 1d6 days and regains all its hit points.
@@ -583,11 +583,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676888 + modifiedTime: 1765825615513 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!8ExSFCar5Lbhdo7u.GkVxLIsamEXICEeT' diff --git a/packs/_source/monsters/monstrosity/gynosphinx.yml b/packs/_source/monsters/monstrosity/gynosphinx.yml index 50817e5ad4..25572b414e 100644 --- a/packs/_source/monsters/monstrosity/gynosphinx.yml +++ b/packs/_source/monsters/monstrosity/gynosphinx.yml @@ -921,7 +921,7 @@ items: img: icons/skills/melee/strike-slashes-red.webp system: description: - value:The sphinx makes one claw attack.
+ value:The sphinx makes one [[/item .gVFZXBtgx450yiH7]]{claw} attack.
chat: '' source: custom: '' @@ -1012,12 +1012,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.DPrO7eVVxiKD8QWD duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825687589 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!6wbasdWWqtXeIAyD.7ttJw5cEHPyb5ETl' - _id: udtRN8dgOiBhUuZh diff --git a/packs/_source/monsters/monstrosity/harpy.yml b/packs/_source/monsters/monstrosity/harpy.yml index e0db1bea99..92f999d1a0 100644 --- a/packs/_source/monsters/monstrosity/harpy.yml +++ b/packs/_source/monsters/monstrosity/harpy.yml @@ -920,21 +920,21 @@ items: description: value: >-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.
+ 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.
chat: >-The harpy sings a magical melody. Every humanoid and giant within 300 ft. of the harpy that can hear the song must make a @@ -1026,11 +1026,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.IALpDTyYdDOzmDb5 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676769 + modifiedTime: 1765825733351 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!CqQ6pXQA5WXZNOm3.QeobH0xuWk2yWmsb' diff --git a/packs/_source/monsters/monstrosity/hippogriff.yml b/packs/_source/monsters/monstrosity/hippogriff.yml index d279b948b8..0ef20af089 100644 --- a/packs/_source/monsters/monstrosity/hippogriff.yml +++ b/packs/_source/monsters/monstrosity/hippogriff.yml @@ -489,8 +489,8 @@ items: system: description: value: >- -
The hippogriff has advantage on Wisdom - (Perception) checks that rely on sight.
+The hippogriff has advantage on Wisdom (Perception) checks that + rely on sight.
chat: '' source: custom: '' @@ -522,12 +522,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765825747203 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!T2PExQE84ZcIbAXz.b4iE9smYUMqyqVi6' - _id: bUWbRbY7TpLSL1kO diff --git a/packs/_source/monsters/monstrosity/hydra.yml b/packs/_source/monsters/monstrosity/hydra.yml index 231c05b477..458738b3cb 100644 --- a/packs/_source/monsters/monstrosity/hydra.yml +++ b/packs/_source/monsters/monstrosity/hydra.yml @@ -536,14 +536,14 @@ items: description: value: >-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.
+ 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.
chat: >-The hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against @@ -579,11 +579,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.dvSoAF3bOeUeIrxf duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676555 + modifiedTime: 1765825763088 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!K4vsSlHqbBAHUDHY.fsAeJDaI0a6sBeFk' diff --git a/packs/_source/monsters/monstrosity/kraken.yml b/packs/_source/monsters/monstrosity/kraken.yml index 173b86de1d..8cfcd28e4e 100644 --- a/packs/_source/monsters/monstrosity/kraken.yml +++ b/packs/_source/monsters/monstrosity/kraken.yml @@ -72,6 +72,10 @@ system: walk: 20 units: ft hover: false + bonus: '' + ignoredDifficultTerrain: + - all + special: '' attunement: max: 3 senses: @@ -749,12 +753,11 @@ items: 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 + 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.
@@ -896,64 +899,71 @@ items: includeBase: true parts: [] sort: 0 - dnd5eactivity300: - _id: dnd5eactivity300 - type: utility + 7NqsOwtHOcmvjNFZ: + type: damage + name: Swallowed Damage + _id: 7NqsOwtHOcmvjNFZ + sort: 0 activation: - type: action - value: 1 - condition: '' + type: turnStart override: false + condition: '' consumption: - targets: [] scaling: allowed: false - max: '' spellSlot: true + targets: [] description: chatFlavor: '' duration: + units: inst concentration: false - value: '' - units: '' - special: '' override: false effects: [] + flags: {} range: - value: '5' - units: ft - special: '' + units: self override: false target: template: - count: '' contiguous: false + units: ft type: '' - size: '' - width: '' - height: '' - units: '' affects: - count: '' - type: '' choice: false - special: '' - prompt: true + type: '' override: false + prompt: true uses: spent: 0 - max: '' recovery: [] - roll: - formula: 12d6 - name: '' - prompt: false - visible: false - sort: 0 + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + damage: + critical: + allow: false + parts: + - custom: + enabled: false + formula: '' + number: 12 + denomination: 6 + bonus: '' + types: + - acid + img: '' attuned: false ammunition: {} magicalBonus: null identifier: bite + mastery: '' effects: [] folder: null sort: 0 @@ -963,11 +973,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107553020 + modifiedTime: 1765825889060 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kVg37NlPcACAzjCT.r51OovswZTVF8Yna' @@ -1151,12 +1161,12 @@ items: 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.
+ 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.
chat: >-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 @@ -1180,72 +1190,78 @@ items: requirements: '' properties: [] activities: - dnd5eactivity000: - _id: dnd5eactivity000 - type: damage + nDEUGK9GxUWfn6xM: + type: save + _id: nDEUGK9GxUWfn6xM + sort: 0 activation: type: action - value: 1 - condition: '' override: false + condition: '' consumption: - targets: [] scaling: - allowed: false - max: '' + allowed: true + max: '6' spellSlot: true + targets: [] description: chatFlavor: '' duration: + units: inst concentration: false - value: '' - units: '' - special: '' override: false effects: [] + flags: {} range: - value: '60' - units: '' - special: '' + units: ft override: false + special: '' + value: '60' target: template: - count: '' contiguous: false + units: ft type: '' - size: '' - width: '' - height: '' - units: '' affects: - count: '1' - type: creature choice: false - special: '' - prompt: true + type: creature override: false + prompt: true uses: spent: 0 - max: '' recovery: [] + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' damage: - critical: - allow: false - bonus: '' + onSave: half parts: - - number: 1 + - custom: + enabled: false + formula: '' + number: 1 denomination: 6 bonus: '' types: - bludgeoning - custom: - enabled: false - formula: '' scaling: mode: whole - number: null + number: 1 formula: '' - sort: 0 + save: + ability: + - dex + dc: + calculation: '' + formula: '18' + name: '' + img: '' enchant: {} prerequisites: level: null @@ -1259,11 +1275,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.hxXzd3KCfnqnT89w duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676965 + modifiedTime: 1765825974517 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kVg37NlPcACAzjCT.bwwyMBn4QwiNd4SM' @@ -1275,10 +1291,10 @@ items: 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.
+ 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.
chat: >-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 @@ -1382,11 +1398,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.gM767AhU36B6LUGU duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676965 + modifiedTime: 1765825995013 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kVg37NlPcACAzjCT.wVCkpBj5omvdfaMm' @@ -1440,116 +1456,15 @@ items: lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kVg37NlPcACAzjCT.ojhTng7wa5ehcJz3' - - _id: y6iT81UwIkojo6c5 - 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: >- -If a legendary creature has lair actions, it can use them to - harness the ambient magic in its lair.
- source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: lair-actions - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.2.0 - createdTime: null - modifiedTime: 1736804676965 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!kVg37NlPcACAzjCT.y6iT81UwIkojo6c5' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: regional-effects - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6 - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.0.0 - createdTime: null - modifiedTime: null - lastModifiedBy: null - exportSource: null - _key: '!actors.items!kVg37NlPcACAzjCT.K9y1op1wZOMNsFg0' - _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.
+ value: >- +The kraken makes one [[/item .lfg28JvVAru30yJ4]]{tentacle} attack + or uses its [[/item .bwwyMBn4QwiNd4SM]]{Fling}.
chat: '' source: custom: '' @@ -1640,12 +1555,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.czKwBo1qw5O2gCNy duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826041280 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kVg37NlPcACAzjCT.e2EtrJsAPZ19WuE7' - _id: OKGAJSxcW9xQiwyj @@ -1654,7 +1569,7 @@ items: img: icons/magic/lightning/bolts-forked-large-blue-yellow.webp system: description: - value:The kraken uses Lightning Storm.
+ value:The kraken uses [[/item .wVCkpBj5omvdfaMm]]{Lightning Storm}.
chat: '' source: custom: '' @@ -1745,12 +1660,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.gM767AhU36B6LUGU duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826015645 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kVg37NlPcACAzjCT.OKGAJSxcW9xQiwyj' - _id: K0T5NDyi2n8Yt8Ts @@ -1763,11 +1678,11 @@ items: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 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. chat: >-The Kraken expels an ink cloud. The cloud spreads around corners, and that area is heavily obscured to creatures other than the Kraken. @@ -1801,11 +1716,8 @@ items: consumption: targets: - type: attribute - target: resources.legact.value value: '3' - scaling: - mode: '' - formula: '' + target: resources.legact.value scaling: allowed: false max: '' @@ -1834,7 +1746,7 @@ items: units: ft affects: count: '' - type: '' + type: creature choice: false special: '' prompt: true @@ -1846,24 +1758,27 @@ items: damage: onSave: half parts: - - number: 3 + - custom: + enabled: false + formula: '' + number: 3 denomination: 10 bonus: '' types: - poison - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' save: ability: con dc: calculation: '' formula: '23' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null @@ -1877,11 +1792,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.bojUXmNOZ2rJVujD duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676965 + modifiedTime: 1765826060635 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!kVg37NlPcACAzjCT.K0T5NDyi2n8Yt8Ts' @@ -1893,11 +1808,11 @@ ownership: flags: {} _stats: duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: 1726171252481 - modifiedTime: 1744916293114 + modifiedTime: 1765825813303 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors!kVg37NlPcACAzjCT' diff --git a/packs/_source/monsters/monstrosity/lamia.yml b/packs/_source/monsters/monstrosity/lamia.yml index 121be89a7f..912b062db0 100644 --- a/packs/_source/monsters/monstrosity/lamia.yml +++ b/packs/_source/monsters/monstrosity/lamia.yml @@ -485,7 +485,7 @@ prototypeToken: movementAction: null items: - _id: 72qxug7ywesnINin - name: Disguise Self (any humanoid form) + name: Disguise Self type: spell img: icons/magic/control/debuff-energy-hold-teal-blue.webp system: @@ -525,11 +525,14 @@ items: affects: type: self choice: false + special: '' template: units: '' contiguous: false + type: '' range: units: self + special: '' uses: max: '' recovery: [] @@ -588,7 +591,9 @@ items: prompt: false visible: false sort: 0 - identifier: disguise-self-any-humanoid-form + identifier: disguise-self + sourceClass: '' + ability: '' effects: [] folder: null sort: 0 @@ -598,12 +603,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.spells.A3q2gTNqG6fvNGrv duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826115276 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!MnoL59nOOfYatAkQ.72qxug7ywesnINin' - _id: mSRxk4sD2tHfYAUo @@ -615,17 +620,13 @@ items: value: >-
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), [[/item - .nslx2nT3p4lNkmdp]]{major image}
- -3/day each: [[/item .eS7XnnApoxRxYXPs]]{charm person}, [[/item - .X4c8xCkmF8U9HUMz]]{mirror image}, [[/item + components:
At will: [[/item .72qxug7ywesnINin]]{disguise self} + (any humanoid form), [[/item .nslx2nT3p4lNkmdp]]{major + image}
3/day each: [[/item .eS7XnnApoxRxYXPs]]{charm person}, + [[/item .X4c8xCkmF8U9HUMz]]{mirror image}, [[/item .fVbCxFRaORalHB20]]{scrying}, [[/item - .zMAWdyc8UVb37BK4]]{suggestion}
- -1/day: [[/item .JQyigMNPiDnGI18b]]{geas}
+ .zMAWdyc8UVb37BK4]]{suggestion}1/day: [[/item + .JQyigMNPiDnGI18b]]{geas}
chat: '' source: custom: '' @@ -657,11 +658,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.hkmTEk6klT6QL4K4 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745447015747 + modifiedTime: 1765826105570 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!MnoL59nOOfYatAkQ.mSRxk4sD2tHfYAUo' diff --git a/packs/_source/monsters/monstrosity/medusa.yml b/packs/_source/monsters/monstrosity/medusa.yml index 7004da3a7d..6ba1907705 100644 --- a/packs/_source/monsters/monstrosity/medusa.yml +++ b/packs/_source/monsters/monstrosity/medusa.yml @@ -491,22 +491,21 @@ items: description: value: >-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, + 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.
chat: >-The medusa can force it to make a Constitution @@ -608,11 +607,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.wkIN7WTeX8ebbjtv duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676918 + modifiedTime: 1765826169974 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!eiifqZwYGi71r2Yl.KmzlUGMXUhY2HubE' diff --git a/packs/_source/monsters/monstrosity/mimic.yml b/packs/_source/monsters/monstrosity/mimic.yml index 2ca7a56c43..c7ec5914ba 100644 --- a/packs/_source/monsters/monstrosity/mimic.yml +++ b/packs/_source/monsters/monstrosity/mimic.yml @@ -491,10 +491,10 @@ items: 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. 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.
chat: >-The mimic can use its action to polymorph into an object or back into its true, amorphous form.
@@ -513,7 +513,8 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 @@ -581,11 +582,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676894 + modifiedTime: 1765826252363 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!hx240PG5r5qpRet3.DOyBdRdgMxLm9BIh' @@ -597,9 +598,8 @@ items: 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.
+ creature adhered to the mimic is also grappled by it escape DC 13. + Ability checks made to escape this grapple have disadvantage. chat: >-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 @@ -634,11 +634,11 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676894 + modifiedTime: 1765826259264 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!hx240PG5r5qpRet3.aPL8wE2ARwh9JFeX' @@ -697,8 +697,8 @@ items: system: description: value: >- -
The mimic has advantage on attack rolls against - any creature grappled by it.
+The mimic has advantage on attack rolls against any creature + grappled by it.
chat: '' source: custom: '' @@ -730,12 +730,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.kP9t6MAeUvBBmoM3 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826266045 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!hx240PG5r5qpRet3.sGiOJWWFPPQ6J5Zm' - _id: qHJyEXRC7oExTjES diff --git a/packs/_source/monsters/monstrosity/minotaur.yml b/packs/_source/monsters/monstrosity/minotaur.yml index 893c71fe45..18d031474c 100644 --- a/packs/_source/monsters/monstrosity/minotaur.yml +++ b/packs/_source/monsters/monstrosity/minotaur.yml @@ -492,10 +492,9 @@ items: 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.
+ 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.
chat: >-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 @@ -519,72 +518,6 @@ items: requirements: '' properties: [] activities: - dnd5eactivity000: - _id: dnd5eactivity000 - type: damage - activation: - type: '' - value: null - condition: '' - override: false - consumption: - targets: [] - scaling: - allowed: false - max: '' - spellSlot: true - description: - chatFlavor: '' - duration: - concentration: false - value: '' - units: '' - special: '' - override: false - effects: [] - range: - value: '10' - units: ft - special: '' - override: false - target: - template: - count: '' - contiguous: false - type: '' - size: '' - width: '' - height: '' - units: '' - affects: - count: '' - type: '' - choice: false - special: '' - prompt: true - override: false - uses: - spent: 0 - max: '' - recovery: [] - damage: - critical: - allow: false - bonus: '' - parts: - - number: 2 - denomination: 8 - bonus: '' - types: - - piercing - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' - sort: 0 dnd5eactivity100: _id: dnd5eactivity100 type: save @@ -634,26 +567,29 @@ items: max: '' recovery: [] damage: - onSave: half + onSave: full parts: - - number: 2 + - custom: + enabled: false + formula: '' + number: 2 denomination: 8 bonus: '' types: - piercing - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' save: ability: str dc: calculation: '' formula: '14' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null @@ -667,11 +603,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676897 + modifiedTime: 1765826296132 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!pOPQU4UnR27zA0jf.Z1aFAtAP0JJ02tPV' @@ -727,7 +663,10 @@ items: img: icons/skills/social/intimidation-impressing.webp system: description: - value: '' + 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: >-At the start of its turn, the minotaur can gain advantage on all melee weapon attack rolls it @@ -763,11 +702,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.4v3xxn1jEEMRzLBG duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676897 + modifiedTime: 1765826337595 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!pOPQU4UnR27zA0jf.i1CyGkejt1lDCHEu' diff --git a/packs/_source/monsters/monstrosity/owlbear.yml b/packs/_source/monsters/monstrosity/owlbear.yml index d8d9102eb0..3ab2635eeb 100644 --- a/packs/_source/monsters/monstrosity/owlbear.yml +++ b/packs/_source/monsters/monstrosity/owlbear.yml @@ -489,8 +489,8 @@ items: system: description: value: >- -
The owlbear has advantage on Wisdom (Perception) - checks that rely on sight or smell.
+The owlbear has advantage on Wisdom (Perception) checks that rely + on sight or smell.
chat: '' source: custom: '' @@ -522,12 +522,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826369444 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!zY3W5MG7FjssENf6.QOTQoJFlLIMWmJsu' - _id: R7Vx1RxO8OjXpzQd diff --git a/packs/_source/monsters/monstrosity/purple-worm.yml b/packs/_source/monsters/monstrosity/purple-worm.yml index 2bb8980b5f..e158de5afa 100644 --- a/packs/_source/monsters/monstrosity/purple-worm.yml +++ b/packs/_source/monsters/monstrosity/purple-worm.yml @@ -538,7 +538,8 @@ items: description: value: >-The worm makes two attacks: one with its [[/item - .dlzFJ5UjbMAfJ6Sb]]{bite} and one with its stinger.
+ .dlzFJ5UjbMAfJ6Sb]]{bite} and one with its [[/item + .yOjkK3f9jt2fYu3M]]{stinger}. chat: '' source: custom: '' @@ -623,11 +624,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745273656156 + modifiedTime: 1765826442426 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!PtotS52HpHX596cZ.Uo4oxB1xZmJcWVsZ' @@ -638,19 +639,18 @@ items: system: description: value: >- -[[/attack extended]]. [[/damage extended]].
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.
+[[/attack extended]]. [[/damage extended]].
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.
chat: >-The Purple Worm attacks with its Bite. If the target is a Large or smaller creature, it must make a Dexterity saving @@ -794,7 +794,7 @@ items: _id: dnd5eactivity100 type: save activation: - type: action + type: turnStart value: 1 condition: '' override: false @@ -841,82 +841,32 @@ items: damage: onSave: half parts: - - number: 3 - denomination: 8 - bonus: '@mod' - types: - - piercing - custom: + - custom: enabled: false formula: '' - scaling: - mode: whole - number: null - formula: '' + number: 6 + denomination: 6 + bonus: '' + types: + - acid save: ability: dex dc: calculation: '' formula: '19' sort: 0 - dnd5eactivity300: - _id: dnd5eactivity300 - type: utility - activation: - type: action - value: 1 - condition: '' - override: false - consumption: - targets: [] - scaling: - allowed: false - max: '' - spellSlot: true - description: - chatFlavor: '' - duration: - concentration: false - value: '' - units: '' - special: '' - override: false - effects: [] - range: - value: '10' - units: ft - special: '' - override: false - target: - template: - count: '' - contiguous: false - type: '' - size: '' - width: '' - height: '' - units: '' - affects: - count: '' - type: '' - choice: false - special: '' - prompt: true - override: false - uses: - spent: 0 - max: '' - recovery: [] - roll: - formula: 6d6 - name: '' - prompt: false - visible: false - sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' attuned: false ammunition: {} magicalBonus: null identifier: bite + mastery: '' effects: [] folder: null sort: 0 @@ -926,11 +876,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107551645 + modifiedTime: 1765826483261 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!PtotS52HpHX596cZ.dlzFJ5UjbMAfJ6Sb' @@ -942,9 +892,8 @@ items: description: value: >-
[[/attack extended]]. [[/damage extended]].
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.
+ 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. chat: >-The Purple Worm attacks with its Tail Stinger. The target must make a Constitution saving throw.
@@ -1134,82 +1083,32 @@ items: damage: onSave: half parts: - - number: 3 - denomination: 6 - bonus: '@mod' - types: - - piercing - custom: + - custom: enabled: false formula: '' - scaling: - mode: whole - number: null - formula: '' + number: 12 + denomination: 6 + bonus: '' + types: + - poison save: ability: con dc: calculation: '' formula: '19' sort: 0 - dnd5eactivity300: - _id: dnd5eactivity300 - type: utility - activation: - type: action - value: 1 - condition: '' - override: false - consumption: - targets: [] - scaling: - allowed: false - max: '' - spellSlot: true - description: - chatFlavor: '' - duration: - concentration: false - value: '' - units: '' - special: '' - override: false - effects: [] - range: - value: '10' - units: ft - special: '' - override: false - target: - template: - count: '' - contiguous: false - type: '' - size: '' - width: '' - height: '' - units: '' - affects: - count: '' - type: '' - choice: false - special: '' - prompt: true - override: false - uses: - spent: 0 - max: '' - recovery: [] - roll: - formula: 12d6 - name: '' - prompt: false - visible: false - sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' attuned: false ammunition: {} magicalBonus: null identifier: tail-stinger + mastery: '' effects: [] folder: null sort: 0 @@ -1219,11 +1118,11 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107551645 + modifiedTime: 1765826505914 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!PtotS52HpHX596cZ.yOjkK3f9jt2fYu3M' diff --git a/packs/_source/monsters/monstrosity/remorhaz.yml b/packs/_source/monsters/monstrosity/remorhaz.yml index 13ff7d5560..bb2414163f 100644 --- a/packs/_source/monsters/monstrosity/remorhaz.yml +++ b/packs/_source/monsters/monstrosity/remorhaz.yml @@ -675,8 +675,7 @@ items: 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.
+ while within 5 feet of it takes 10 (3d6) fire damage. chat: >-A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes fire damage.
@@ -775,11 +774,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.iFNpsEMJT66eLoat duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676794 + modifiedTime: 1765826526867 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!VBzqw2rOUvTuNOPI.usmJdksgWhPnjq94' @@ -791,12 +790,11 @@ items: description: value: >-The remorhaz makes one bite attack against a Medium or smaller - creature it is grappling.
If the attack hits, that creature + 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.
+ 21 (6d6) acid damage at the start of each of the remorhaz's turns. chat:The Remorhaz attacks with its Swallow.
source: custom: '' @@ -921,23 +919,27 @@ items: allow: false bonus: '' parts: - - number: 6 + - custom: + enabled: false + formula: '' + number: 6 denomination: 6 bonus: '' types: - acid - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' attuned: false ammunition: {} magicalBonus: null identifier: swallow + mastery: '' effects: [] folder: null sort: 0 @@ -947,11 +949,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676794 + modifiedTime: 1765826557086 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!VBzqw2rOUvTuNOPI.kT6wF3F49uuWgP3h' diff --git a/packs/_source/monsters/monstrosity/roc.yml b/packs/_source/monsters/monstrosity/roc.yml index 0f288f4a1e..0e32740923 100644 --- a/packs/_source/monsters/monstrosity/roc.yml +++ b/packs/_source/monsters/monstrosity/roc.yml @@ -631,18 +631,18 @@ items: identifier: beak effects: [] folder: null - sort: 0 + sort: 250000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107553446 + modifiedTime: 1765826597748 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!p980augbCIdpK9ZX.PZWkwOa8C0Y2tSCR' @@ -653,8 +653,8 @@ items: system: description: value: >- -The roc has advantage on Wisdom (Perception) - checks that rely on sight.
+The roc has advantage on Wisdom (Perception) checks that rely on + sight.
chat: '' source: custom: '' @@ -686,12 +686,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826594993 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!p980augbCIdpK9ZX.1Ocl9VqVtWFu97Ua' - _id: s5X12Eygxcpzd9eM @@ -781,18 +781,18 @@ items: identifier: multiattack effects: [] folder: null - sort: 0 + sort: 200000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745273657160 + modifiedTime: 1765826597035 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!p980augbCIdpK9ZX.s5X12Eygxcpzd9eM' @@ -950,18 +950,18 @@ items: identifier: talons effects: [] folder: null - sort: 0 + sort: 300000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107553446 + modifiedTime: 1765826597035 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!p980augbCIdpK9ZX.XMiiDwLIMYWFqxyv' diff --git a/packs/_source/monsters/monstrosity/roper.yml b/packs/_source/monsters/monstrosity/roper.yml index f075e94bb1..58b52f8524 100644 --- a/packs/_source/monsters/monstrosity/roper.yml +++ b/packs/_source/monsters/monstrosity/roper.yml @@ -538,12 +538,11 @@ items: 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.
+ 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.
chat: >-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 @@ -578,11 +577,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LkepRN2rP3Hp4orY duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676899 + modifiedTime: 1765826617674 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qZyLwdx7lj5d1wfD.hQLj7Zzuva4M9KzH' @@ -782,18 +781,18 @@ items: identifier: bite effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107553551 + modifiedTime: 1765826632050 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qZyLwdx7lj5d1wfD.mBRjMwEitGrPDm5I' @@ -952,18 +951,18 @@ items: mastery: '' effects: [] folder: null - sort: 0 + sort: 300000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745175622958 + modifiedTime: 1765826632050 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qZyLwdx7lj5d1wfD.bTiw89tDx64zTqDk' @@ -973,7 +972,9 @@ items: img: icons/magic/control/sihouette-hold-beam-green.webp system: description: - value: '' + value: >- +
The roper pulls each creature grappled by it up to 25 feet straight + toward it.
chat: >-The roper pulls each creature grappled by it up to 25 ft. straight toward it.
@@ -1053,18 +1054,18 @@ items: identifier: reel effects: [] folder: null - sort: 0 + sort: 400000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.IwQRhCTgCfAADyt8 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676899 + modifiedTime: 1765826665977 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qZyLwdx7lj5d1wfD.iGuyFLbKazqPCcXY' @@ -1162,11 +1163,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745273657285 + modifiedTime: 1765826633014 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qZyLwdx7lj5d1wfD.fyF8vQbuvkuLKmKf' diff --git a/packs/_source/monsters/monstrosity/rust-monster.yml b/packs/_source/monsters/monstrosity/rust-monster.yml index 8742ad97af..4a0eb7e64b 100644 --- a/packs/_source/monsters/monstrosity/rust-monster.yml +++ b/packs/_source/monsters/monstrosity/rust-monster.yml @@ -490,7 +490,7 @@ items: description: value: >-The rust monster can pinpoint, by scent, the location of ferrous - metal within 30 feet of it.
+ metal within 30 feet of it. chat: '' source: custom: '' @@ -522,12 +522,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.gh5UPTS0L16fHYwB duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826685407 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!WJsxqbHU28D64lWT.IPdRnqMb4ZjhHAm4' - _id: dobpPU4kb00zSkQt @@ -538,11 +538,10 @@ items: 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.
+ 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. chat: >-Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a @@ -577,11 +576,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.GSgfXL9DyDA3GD0n duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676730 + modifiedTime: 1765826694139 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!WJsxqbHU28D64lWT.dobpPU4kb00zSkQt' @@ -757,14 +756,14 @@ items: 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 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.
chat: >-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 @@ -856,11 +855,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.6HJpLJxctQdMLeuB duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676730 + modifiedTime: 1765826729745 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!WJsxqbHU28D64lWT.yxwZ9AtLMKZ61sTz' diff --git a/packs/_source/monsters/monstrosity/spirit-naga.yml b/packs/_source/monsters/monstrosity/spirit-naga.yml index 7eac29c1a1..7ba2b8e0e0 100644 --- a/packs/_source/monsters/monstrosity/spirit-naga.yml +++ b/packs/_source/monsters/monstrosity/spirit-naga.yml @@ -495,9 +495,8 @@ items: description: value: >-
[[/attack extended]]. [[/damage extended]].
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.
+ 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. chat: >-The Spirit Naga attacks with its Bite. The target must make a Constitution saving throw.
@@ -633,19 +632,7 @@ items: critical: bonus: '' includeBase: true - parts: - - number: 7 - denomination: 8 - bonus: '' - types: - - poison - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' + parts: [] sort: 0 dnd5eactivity100: _id: dnd5eactivity100 @@ -698,28 +685,32 @@ items: damage: onSave: half parts: - - number: 1 - denomination: 6 - bonus: '@mod' - types: - - piercing - custom: + - custom: enabled: false formula: '' - scaling: - mode: whole - number: null - formula: '' + number: 7 + denomination: 6 + bonus: '' + types: + - poison save: ability: con dc: calculation: con formula: '13' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' attuned: false ammunition: {} magicalBonus: null identifier: bite + mastery: '' effects: [] folder: null sort: 0 @@ -729,11 +720,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107550626 + modifiedTime: 1765826791566 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!BAT6ld8qJZetpycL.aap2fFb4b7uX3XAO' @@ -745,8 +736,8 @@ items: 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.
+ its hit points. Only a wish spell can prevent this trait from + functioning. chat: >-If it dies, the naga returns to life in 1d6 days and regains all its hit points.
@@ -780,11 +771,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676709 + modifiedTime: 1765826750445 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!BAT6ld8qJZetpycL.WqOflwn1ubAMkGdQ' @@ -798,19 +789,19 @@ items: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): - [[/item .Utk1OQRwYkMkFRD3]]{mage hand}, [[/item - .oIzA2MEHwxhtQneU]]{minor illusion}, [[/item .ctW81uiX56xZR2c5]]{ray - of frost}
• 1st level (4 slots): [[/item - .eS7XnnApoxRxYXPs]]{charm person}, [[/item .ghXTfe7sgCbgf1Q8]]{detect - magic}, [[/item .KhwiSi9fwVfUPtku]]{sleep}
• 2nd level - (3 slots): [[/item .ppWAAEul0QHtm4er]]{detect thoughts}, - [[/item .3Lo9boi7P2ro6QV4]]{hold person}
• 3rd level (3 - slots): [[/item .IyikgTEOTv701jgQ]]{lightning bolt}, [[/item - .13uVuBQP6VaiSPvC]]{water breathing}
• 4th level (3 - slots): [[/item .pybg5MNc3lkerH4Y]]{blight}, [[/item - .A4RsPuSvB9wFtz1j]]{dimension door}
• 5th level (2 - slots): [[/item .91Sw6vOIaO7U8DvM]]{dominate person}
+ wizard spells prepared:Cantrips (at will): [[/item + .Utk1OQRwYkMkFRD3]]{mage hand}, [[/item .oIzA2MEHwxhtQneU]]{minor + illusion}, [[/item .ctW81uiX56xZR2c5]]{ray of frost}
1st level + (4 slots): [[/item .eS7XnnApoxRxYXPs]]{charm person}, [[/item + .ghXTfe7sgCbgf1Q8]]{detect magic}, [[/item + .KhwiSi9fwVfUPtku]]{sleep}
2nd level (3 slots): [[/item + .ppWAAEul0QHtm4er]]{detect thoughts}, [[/item .3Lo9boi7P2ro6QV4]]{hold + person}
3rd level (3 slots): [[/item + .IyikgTEOTv701jgQ]]{lightning bolt}, [[/item .13uVuBQP6VaiSPvC]]{water + breathing}
4th level (3 slots): [[/item + .pybg5MNc3lkerH4Y]]{blight}, [[/item .A4RsPuSvB9wFtz1j]]{dimension + door}
5th level (2 slots): [[/item .91Sw6vOIaO7U8DvM]]{dominate + person}
chat: >-The naga is a spellcaster. Its spellcasting ability is Intelligence and it needs only verbal components to cast its spells.
@@ -844,11 +835,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.fdmzHw875EzpXM2a duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745447015621 + modifiedTime: 1765826764882 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!BAT6ld8qJZetpycL.Fla0ZsaY2HvXWqbR' diff --git a/packs/_source/monsters/monstrosity/tarrasque.yml b/packs/_source/monsters/monstrosity/tarrasque.yml index 848ac6468e..700a968ac6 100644 --- a/packs/_source/monsters/monstrosity/tarrasque.yml +++ b/packs/_source/monsters/monstrosity/tarrasque.yml @@ -606,8 +606,8 @@ items: system: description: value: >- -The tarrasque has advantage on saving throws - against spells and other magical effects.
+The tarrasque has advantage on saving throws against spells and + other magical effects.
chat: '' source: custom: '' @@ -639,12 +639,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826831151 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!KCvt4FdOVJbuZ3T0.QmAWameRMoj0gDKt' - _id: tE9TjxIMLnqDisjv @@ -1413,9 +1413,9 @@ items: system: description: value: >- -[[/attack extended]]. [[/damage extended]].
If the target is - a creature, it must succeed on a DC 20 Strength - saving throw or be knocked prone.
+[[/attack extended]]. [[/damage extended]].
If the target is + a creature, it must succeed on a DC 20 Strength saving throw or be + knocked prone.
chat: >-The Tarrasque attacks with its Tail. If the target is a creature, it must make a Strength saving throw or be knocked @@ -1605,19 +1605,7 @@ items: recovery: [] damage: onSave: half - parts: - - number: 4 - denomination: 6 - bonus: '@mod' - types: - - bludgeoning - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' + parts: [] save: ability: str dc: @@ -1628,6 +1616,7 @@ items: ammunition: {} magicalBonus: null identifier: tail + mastery: '' effects: [] folder: null sort: 0 @@ -1637,11 +1626,11 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107551149 + modifiedTime: 1765826862424 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!KCvt4FdOVJbuZ3T0.Lo4LU9FBxez1Nzqm' @@ -1652,15 +1641,14 @@ items: 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 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.
chat: >-Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a Wisdom saving @@ -1752,11 +1740,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.nb6zOmwIIJBLz4iT duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676998 + modifiedTime: 1765826873404 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!KCvt4FdOVJbuZ3T0.3mtn5D2GoD19WDVW' @@ -1769,15 +1757,14 @@ items: 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 + 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.
@@ -1853,72 +1840,71 @@ items: container: null crewed: false activities: - dnd5eactivity000: - _id: dnd5eactivity000 - type: attack + KKNpoOVnXklx84vr: + type: damage + _id: KKNpoOVnXklx84vr + sort: 0 activation: type: action - value: 1 - condition: Large or smaller creature it is grappling override: false + condition: '' consumption: - targets: [] scaling: allowed: false - max: '' spellSlot: true + targets: [] description: chatFlavor: '' duration: + units: inst concentration: false - value: '' - units: '' - special: '' override: false effects: [] + flags: {} range: - units: '' - special: '' + units: self override: false target: template: - count: '' contiguous: false + units: ft type: '' - size: '' - width: '' - height: '' - units: '' affects: - count: '' - type: '' choice: false - special: '' - prompt: true + type: '' override: false + prompt: true uses: spent: 0 - max: '' recovery: [] - attack: - ability: str - bonus: '' - critical: - threshold: null - flat: false - type: - value: melee - classification: weapon + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' damage: critical: - bonus: '' - includeBase: true - parts: [] - sort: 0 + allow: false + parts: + - custom: + enabled: false + formula: '' + number: 16 + denomination: 6 + bonus: '' + types: + - acid + name: '' + img: '' attuned: false ammunition: {} magicalBonus: null identifier: swallow + mastery: '' effects: [] folder: null sort: 0 @@ -1928,68 +1914,14 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.aH5ncM30tP8tPQ24 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676998 + modifiedTime: 1765826941357 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!KCvt4FdOVJbuZ3T0.7ycN6rrAEJQP3ZOs' - - _id: 9OZ6Zm76HXyRSKlP - 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: >- -If a legendary creature has lair actions, it can use them to - harness the ambient magic in its lair.
- source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: lair-actions - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.2.0 - createdTime: null - modifiedTime: 1736804676998 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!KCvt4FdOVJbuZ3T0.9OZ6Zm76HXyRSKlP' - _id: sBnQiUt83GYUkKBw name: Legendary Actions type: feat @@ -2040,62 +1972,15 @@ items: lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!KCvt4FdOVJbuZ3T0.sBnQiUt83GYUkKBw' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: regional-effects - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6 - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.0.0 - createdTime: null - modifiedTime: null - lastModifiedBy: null - exportSource: null - _key: '!actors.items!KCvt4FdOVJbuZ3T0.UUapff5kwkff2TJP' - _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.
+ value: >- +The tarrasque makes one [[/item .7DRko62ztr6FjZLA]]{claw} attack or + [[/item .Lo4LU9FBxez1Nzqm]]{tail} attack.
chat: '' source: custom: '' @@ -2186,12 +2071,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826969643 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!KCvt4FdOVJbuZ3T0.XFNRU61XBt7FvXAM' - _id: wYuyOwVFLle1u78H @@ -2306,7 +2191,9 @@ items: img: icons/creatures/abilities/mouth-teeth-long-red.webp system: description: - value:The tarrasque makes one bite attack or uses its Swallow.
+ value: >- +The tarrasque makes one [[/item .suUr7bJqBqE7xk2F]]{bite} attack or + uses its [[/item .7ycN6rrAEJQP3ZOs]]{Swallow}.
chat: '' source: custom: '' @@ -2397,12 +2284,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.5rr8YdsGtL8WxEuE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765826999122 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!KCvt4FdOVJbuZ3T0.wqgAyjgICylYksGZ' effects: [] diff --git a/packs/_source/monsters/monstrosity/winter-wolf.yml b/packs/_source/monsters/monstrosity/winter-wolf.yml index c716e889cf..5d805f0bbe 100644 --- a/packs/_source/monsters/monstrosity/winter-wolf.yml +++ b/packs/_source/monsters/monstrosity/winter-wolf.yml @@ -493,8 +493,8 @@ items: system: description: value: >- -The wolf has advantage on Wisdom (Perception) - checks that rely on hearing or smell.
+The wolf has advantage on Wisdom (Perception) checks that rely on + hearing or smell.
chat: '' source: custom: '' @@ -526,12 +526,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765827016594 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!yGTh874etxUckmAf.gbqFx1sEQUYQlDpJ' - _id: axhIBG9zM7Z9AHxL @@ -541,9 +541,9 @@ items: 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.
+The wolf has advantage on an attack roll against a creature if at + least one of the wolf's allies is within 5 feet of the creature and + the ally isn't incapacitated.
chat: '' source: custom: '' @@ -575,12 +575,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.V1lW1vnrTpVTDr6o duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765827025904 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!yGTh874etxUckmAf.axhIBG9zM7Z9AHxL' - _id: pu8fxDuua6ObNqtg @@ -590,8 +590,8 @@ items: system: description: value: >- -The wolf has advantage on Dexterity (Stealth) - checks made to hide in snowy terrain.
+The wolf has advantage on Dexterity (Stealth) checks made to hide + in snowy terrain.
chat: '' source: custom: '' @@ -623,12 +623,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.jnKOUieu2UO1xHhT duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765827032365 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!yGTh874etxUckmAf.pu8fxDuua6ObNqtg' - _id: 5PmQuifZGbPWxAYz diff --git a/packs/_source/monsters/monstrosity/worg.yml b/packs/_source/monsters/monstrosity/worg.yml index 51b04cd7b9..529dbab8ec 100644 --- a/packs/_source/monsters/monstrosity/worg.yml +++ b/packs/_source/monsters/monstrosity/worg.yml @@ -491,8 +491,8 @@ items: system: description: value: >- -The worg has advantage on Wisdom (Perception) - checks that rely on hearing or smell.
+The worg has advantage on Wisdom (Perception) checks that rely on + hearing or smell.
chat: '' source: custom: '' @@ -524,12 +524,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765827059299 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!VBkp2rGQKvMcCOus.oWGcJqNGhbIOeRjU' - _id: UnONIXYgZcE3Jya0 diff --git a/packs/_source/monsters/ooze/black-pudding.yml b/packs/_source/monsters/ooze/black-pudding.yml index 4fba5932fc..f43a31e1c8 100644 --- a/packs/_source/monsters/ooze/black-pudding.yml +++ b/packs/_source/monsters/ooze/black-pudding.yml @@ -548,14 +548,13 @@ items: description: value: >-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.
+ 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.
chat: >-A creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes acid damage. Any nonmagical @@ -655,11 +654,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.cZm13DxOe9lZyGFT duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676723 + modifiedTime: 1765827327146 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!NwQpeeaMxAC3fRft.wvlDMuDDdk7peoPa' diff --git a/packs/_source/monsters/ooze/gelatinous-cube.yml b/packs/_source/monsters/ooze/gelatinous-cube.yml index 1d2d078cb5..6883552547 100644 --- a/packs/_source/monsters/ooze/gelatinous-cube.yml +++ b/packs/_source/monsters/ooze/gelatinous-cube.yml @@ -497,15 +497,13 @@ items: 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.
+ 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.
chat: >-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 @@ -529,8 +527,125 @@ items: value: '' subtype: '' requirements: '' - properties: [] - activities: {} + properties: + - trait + activities: + Zk4kCn0YQO2k3QBf: + type: check + name: Rescue + _id: Zk4kCn0YQO2k3QBf + sort: 0 + activation: + type: action + override: false + condition: '' + consumption: + scaling: + allowed: false + spellSlot: true + targets: [] + description: + chatFlavor: '' + duration: + units: inst + concentration: false + override: false + effects: [] + flags: {} + range: + units: self + override: false + special: '' + target: + template: + contiguous: false + units: ft + type: '' + affects: + choice: false + type: '' + override: false + prompt: true + uses: + spent: 0 + recovery: [] + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + check: + associated: [] + dc: + calculation: '' + formula: '12' + ability: str + img: '' + Po03o5Zvaah8GBHL: + type: damage + _id: Po03o5Zvaah8GBHL + sort: 0 + activation: + type: action + override: false + condition: '' + consumption: + scaling: + allowed: false + spellSlot: true + targets: [] + description: + chatFlavor: '' + duration: + units: inst + concentration: false + override: false + effects: [] + flags: {} + range: + units: self + override: false + special: '' + target: + template: + contiguous: false + units: ft + type: '' + affects: + choice: false + type: '' + override: false + prompt: true + uses: + spent: 0 + recovery: [] + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + damage: + critical: + allow: false + parts: + - custom: + enabled: false + formula: '' + number: 3 + denomination: 6 + bonus: '' + types: + - acid + name: '' + img: '' enchant: {} prerequisites: level: null @@ -544,11 +659,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.CvtGj6YimGuZdrhB duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676859 + modifiedTime: 1765827393116 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!3fzQVYQhXxCXRa2o.m8prrQUwqGwX6Jyk' @@ -559,10 +674,10 @@ items: 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 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.
chat: >-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. @@ -598,11 +713,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.cueeLXQ3W8gKHiLq duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676859 + modifiedTime: 1765827402668 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!3fzQVYQhXxCXRa2o.ISZmp6ev081hhUxT' @@ -785,18 +900,17 @@ items: 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 + 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.
chat: >-Whenever the cube enters a creature's space, the creature must make @@ -889,59 +1003,67 @@ items: calculation: '' formula: '12' sort: 0 - dnd5eactivity300: - _id: dnd5eactivity300 - type: utility + sDRiVB3bhk4S5XZI: + type: damage + _id: sDRiVB3bhk4S5XZI + sort: 0 activation: - type: action - value: 1 - condition: '' + type: turnStart override: false + condition: '' consumption: - targets: [] scaling: allowed: false - max: '' spellSlot: true + targets: [] description: chatFlavor: '' duration: + units: inst concentration: false - value: '' - units: '' - special: '' override: false effects: [] + flags: {} range: - units: touch - special: '' + units: self override: false + special: '' target: template: - count: '' contiguous: false + units: ft type: '' - size: '' - width: '' - height: '' - units: '' affects: - count: '' - type: '' choice: false - special: '' - prompt: true + type: '' override: false + prompt: true uses: spent: 0 - max: '' recovery: [] - roll: - formula: 6d6 - name: '' - prompt: false - visible: false - sort: 0 + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + damage: + critical: + allow: false + parts: + - custom: + enabled: false + formula: '' + number: 6 + denomination: 6 + bonus: '' + types: + - acid + name: '' + img: '' enchant: {} prerequisites: level: null @@ -955,11 +1077,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Eh80lkzHiEOJP8FI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676859 + modifiedTime: 1765827441974 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!3fzQVYQhXxCXRa2o.6PuULfBzy5vpBSFI' diff --git a/packs/_source/monsters/ooze/gray-ooze.yml b/packs/_source/monsters/ooze/gray-ooze.yml index 4bf07a43f9..dc281c24e5 100644 --- a/packs/_source/monsters/ooze/gray-ooze.yml +++ b/packs/_source/monsters/ooze/gray-ooze.yml @@ -547,11 +547,11 @@ items: description: value: >-
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.
+ 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.
chat:The ooze corrodes metal.
source: custom: '' @@ -583,11 +583,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.0z5v1BfMqQl5Z7UW duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676586 + modifiedTime: 1765827468049 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!fqbFYtbtkrL53FOC.uSay5J2sf9zXsabi' diff --git a/packs/_source/monsters/plant/shambling-mound.yml b/packs/_source/monsters/plant/shambling-mound.yml index f82d34e65f..b5199c8697 100644 --- a/packs/_source/monsters/plant/shambling-mound.yml +++ b/packs/_source/monsters/plant/shambling-mound.yml @@ -495,10 +495,9 @@ items: 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.
+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: '' source: custom: '' @@ -530,12 +529,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.KTsFgSQlDetDDm1f duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765827705396 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!gGeLeV411iQ5Yijs.gyAyLX9CJBbawmr3' - _id: 2aGoBVVEF54VcC9d @@ -547,8 +546,8 @@ items: value: >-The shambling mound makes two [[/item .lOIA9YKQU8xSx7Lj]]{slam} attacks. If both attacks hit a Medium or smaller target, the target is - grappled escape DC 14, and the shambling mound uses - its [[/item .N42BQALoCmeYphD1]]{Engulf} on it.
+ grappled escape DC 14, and the shambling mound uses its [[/item + .N42BQALoCmeYphD1]]{Engulf} on it. chat: '' source: custom: '' @@ -633,11 +632,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745273656670 + modifiedTime: 1765827711755 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!gGeLeV411iQ5Yijs.2aGoBVVEF54VcC9d' @@ -650,11 +649,11 @@ items: 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.
+ 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.
chat: >-The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to @@ -726,7 +725,7 @@ items: max: '' recovery: [] damage: - onSave: half + onSave: none parts: - custom: enabled: false @@ -736,8 +735,6 @@ items: bonus: '@mod' types: - bludgeoning - scaling: - number: 1 save: ability: con dc: @@ -745,24 +742,30 @@ items: formula: '14' sort: 0 name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null identifier: engulf effects: [] folder: null - sort: 0 + sort: 200000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Eh80lkzHiEOJP8FI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676589 + modifiedTime: 1765827741520 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!gGeLeV411iQ5Yijs.N42BQALoCmeYphD1' @@ -914,18 +917,18 @@ items: identifier: slam effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107552654 + modifiedTime: 1765827719954 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!gGeLeV411iQ5Yijs.lOIA9YKQU8xSx7Lj' diff --git a/packs/_source/monsters/plant/treant.yml b/packs/_source/monsters/plant/treant.yml index 4b6d38dd24..58e284fd69 100644 --- a/packs/_source/monsters/plant/treant.yml +++ b/packs/_source/monsters/plant/treant.yml @@ -496,15 +496,14 @@ items: 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. 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.
chat: >-The treant magically animates one or two trees it can see within 60 feet of it.
@@ -585,18 +584,18 @@ items: identifier: animate-trees effects: [] folder: null - sort: 0 + sort: 500000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.j6F0v4guYhRYWddT duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676791 + modifiedTime: 1765827815644 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!NB6wUgVqeOQtsQKu.8uUyRr6Ho7Yvx8pP' @@ -739,16 +738,16 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745273656063 + modifiedTime: 1765827792922 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!NB6wUgVqeOQtsQKu.BLz58sp79C2HvinU' - _id: eTROJriR9B5abIZy - name: Treant - Rock + name: Rock type: weapon img: icons/magic/earth/projectile-boulder-yellow.webp system: @@ -893,20 +892,21 @@ items: ammunition: {} magicalBonus: null identifier: treant-rock + mastery: '' effects: [] folder: null - sort: 0 + sort: 300000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745173385401 + modifiedTime: 1765827800449 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!NB6wUgVqeOQtsQKu.eTROJriR9B5abIZy' @@ -1103,18 +1103,18 @@ items: identifier: slam effects: [] folder: null - sort: 0 + sort: 150000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745107551521 + modifiedTime: 1765827805385 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!NB6wUgVqeOQtsQKu.lisZZTaupqInGEi1' diff --git a/packs/_source/monsters/undead/avatar-of-death.yml b/packs/_source/monsters/undead/avatar-of-death.yml index bccc8d4e4e..84fbcad1dd 100644 --- a/packs/_source/monsters/undead/avatar-of-death.yml +++ b/packs/_source/monsters/undead/avatar-of-death.yml @@ -495,8 +495,8 @@ items: description: value: >-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.
+ were difficult terrain.It takes 5 (1d10) force damage if it + ends its turn inside an object.
chat: >-The avatar can move through other creatures and objects as if they were difficult terrain.
@@ -595,11 +595,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676519 + modifiedTime: 1765828006011 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!XiSWKZzAUxdmFOLL.tXHiE3pxHbBF8bS6' @@ -657,9 +657,8 @@ items: description: value: >-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.
+ feet of it, dealing 7 (1d8 + 3) slashing damage plus 4 (1d8) necrotic + damage. chat: >-The avatar sweeps its spectral scythe through a creature within 5 feet of it.
@@ -771,11 +770,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.of2dTSnPwmhR52O7 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676519 + modifiedTime: 1765828020432 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!XiSWKZzAUxdmFOLL.d7ERliHkrcvQAF1X' diff --git a/packs/_source/monsters/undead/ghast.yml b/packs/_source/monsters/undead/ghast.yml index 4a4095bb00..97f6ab11e6 100644 --- a/packs/_source/monsters/undead/ghast.yml +++ b/packs/_source/monsters/undead/ghast.yml @@ -495,11 +495,10 @@ items: 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 feet 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.
chat: >-Any creature that starts its turn within 5 ft. of the ghast must succeed on a Constitution saving throw.
@@ -589,11 +588,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.OsPhT7jA5LlvUA6e duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676781 + modifiedTime: 1765828041131 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!IyIybE5t2adMEVUM.gBiHo206x7uGoySO' @@ -604,9 +603,8 @@ items: system: description: value: >- -The ghast and any ghouls within 30 ft. of it - have advantage on saving throws against effects that - turn undead.
+The ghast and any ghouls within 30 feet of it have advantage on + saving throws against effects that turn undead.
chat: '' source: custom: '' @@ -638,12 +636,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.oi1sikVSw463lQlp duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828051385 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!IyIybE5t2adMEVUM.WjqNhFTYP9w4gGHd' - _id: nSgLkorv2oln5BIt @@ -817,11 +815,11 @@ items: system: description: value: >- -[[/attack extended]]. [[/damage extended]].
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.
+[[/attack extended]]. [[/damage extended]].
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.
chat: >-The Ghast attacks with its Claws. If the target is a creature other than an undead, it must make a Constitution saving @@ -961,10 +959,68 @@ items: includeBase: true parts: [] sort: 0 + ZD0bnBuStMv4GFbh: + type: save + _id: ZD0bnBuStMv4GFbh + sort: 0 + activation: + type: action + override: false + condition: '' + consumption: + scaling: + allowed: false + spellSlot: true + targets: [] + description: + chatFlavor: '' + duration: + units: inst + concentration: false + override: false + effects: [] + flags: {} + range: + units: self + override: false + target: + template: + contiguous: false + units: ft + type: '' + affects: + choice: false + type: '' + override: false + prompt: true + uses: + spent: 0 + recovery: [] + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + damage: + onSave: half + parts: [] + save: + ability: + - con + dc: + calculation: '' + formula: '10' + name: '' + img: '' attuned: false ammunition: {} magicalBonus: null identifier: claws + mastery: '' effects: [] folder: null sort: 0 @@ -974,11 +1030,11 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107551051 + modifiedTime: 1765828064995 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!IyIybE5t2adMEVUM.ricjyd1SKzeQ5gQE' diff --git a/packs/_source/monsters/undead/ghost.yml b/packs/_source/monsters/undead/ghost.yml index 0ef5d82c0d..34423ac10c 100644 --- a/packs/_source/monsters/undead/ghost.yml +++ b/packs/_source/monsters/undead/ghost.yml @@ -506,8 +506,8 @@ items: system: description: value: >- -
The ghost can see 60 ft. into the Ethereal Plane - when it is on the Material Plane, and vice versa.
+The ghost can see 60 feet into the Ethereal Plane when it is on the + Material Plane, and vice versa.
chat: '' source: custom: '' @@ -539,12 +539,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.We6R4thWKYDRYlEc duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828117143 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qoFEjfrANBdrCP6m.tjrDz1IWVcjF7PMl' - _id: SiBsPubItj26pcHa @@ -555,8 +555,8 @@ items: 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.
+ were difficult terrain.It takes 5 (1d10) force damage if it + ends its turn inside an object.
chat: >-The ghost can move through other creatures and objects as if they were difficult terrain.
@@ -590,11 +590,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676881 + modifiedTime: 1765828122937 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qoFEjfrANBdrCP6m.SiBsPubItj26pcHa' @@ -872,15 +872,14 @@ items: 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.
+ 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.
chat: >-Each non-undead creature within 60 ft. of the ghost that can see it must succeed make a Wisdom saving throw. A target can @@ -972,11 +971,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.lBN86BToCJgkakL3 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676881 + modifiedTime: 1765828136678 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qoFEjfrANBdrCP6m.lOzkFHeXCdO2FB9X' @@ -988,14 +987,14 @@ items: 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 + 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 @@ -1102,11 +1101,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.NI3FPb5jQsePdlVl duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676881 + modifiedTime: 1765828146358 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!qoFEjfrANBdrCP6m.UF0mfYsgI4ay6mzv' diff --git a/packs/_source/monsters/undead/ghoul.yml b/packs/_source/monsters/undead/ghoul.yml index c28c6eb3ab..48bdfe8b2d 100644 --- a/packs/_source/monsters/undead/ghoul.yml +++ b/packs/_source/monsters/undead/ghoul.yml @@ -666,11 +666,11 @@ items: system: description: value: >- -
[[/attack extended]]. [[/damage extended]].
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.
+[[/attack extended]]. [[/damage extended]].
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.
chat: >-The Ghoul attacks with its Claws. If the target is a creature other than an elf or undead, it must make a Constitution @@ -814,6 +814,63 @@ items: name: '' img: '' appliedEffects: [] + whHtUhVBlQkDgqQ0: + type: save + _id: whHtUhVBlQkDgqQ0 + sort: 0 + activation: + type: action + override: false + condition: '' + consumption: + scaling: + allowed: false + spellSlot: true + targets: [] + description: + chatFlavor: '' + duration: + units: inst + concentration: false + override: false + effects: [] + flags: {} + range: + units: self + override: false + target: + template: + contiguous: false + units: ft + type: '' + affects: + choice: false + type: '' + override: false + prompt: true + uses: + spent: 0 + recovery: [] + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + damage: + onSave: half + parts: [] + save: + ability: + - con + dc: + calculation: '' + formula: '10' + name: '' + img: '' attuned: false ammunition: {} magicalBonus: null @@ -824,19 +881,15 @@ items: sort: 0 ownership: default: 0 - flags: - dnd5e: - riders: - activity: [] - effect: [] + flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745108147352 + modifiedTime: 1765828097493 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!OBujQLLPSmlJiZnL.ArxzPC3rsBztgUvI' diff --git a/packs/_source/monsters/undead/lich.yml b/packs/_source/monsters/undead/lich.yml index f339cddb8a..5c22bde7de 100644 --- a/packs/_source/monsters/undead/lich.yml +++ b/packs/_source/monsters/undead/lich.yml @@ -608,7 +608,9 @@ items: img: icons/magic/water/water-hand.webp system: description: - value:
The lich uses its Paralyzing Touch.
+ value: >- +The lich uses its [[/item .KDSrdpdFPDKnh80y]]{Paralyzing + Touch}.
chat: '' source: custom: '' @@ -691,11 +693,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.ebcmg4M5LsUYCqee duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745175210887 + modifiedTime: 1765828208313 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!bfh29vIEoGzI240e.dJLqLsCek3uxbzuX' @@ -707,12 +709,12 @@ items: description: value: >-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.
+ 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. chat: >-The lich fixes its gaze on one creature it can see within 10 feet of it. The target must make a Wisdom saving @@ -810,11 +812,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.cpnrDGQrqgPlSmwR duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676949 + modifiedTime: 1765828215173 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!bfh29vIEoGzI240e.Uox2GEp5GMXOOXOc' @@ -825,10 +827,10 @@ items: system: description: value: >- -
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 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.
chat: >-Each non-undead creature within 20 feet of the lich must make a Constitution saving throw against this magic.
@@ -936,11 +938,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EguIm3u5kkopYwEM duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676949 + modifiedTime: 1765828222353 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!bfh29vIEoGzI240e.sXU9KTYnmgi08EQw' @@ -1059,9 +1061,8 @@ items: 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.
+ days, regaining all its hit points and becoming active again. The new + body appears within 5 feet of the phylactery. chat: >-A destroyed lich gains a new body in 1d10 days, regaining all its hit points and becoming active again.
@@ -1148,11 +1149,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676949 + modifiedTime: 1765828163097 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!bfh29vIEoGzI240e.stk9i3rPK7z99CDf' @@ -1564,109 +1565,6 @@ items: lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!bfh29vIEoGzI240e.GvT7gczoJ6QCocrA' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: regional-effects - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6 - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.0.0 - createdTime: null - modifiedTime: null - lastModifiedBy: null - exportSource: null - _key: '!actors.items!bfh29vIEoGzI240e.TB52r9CGyQ5lewor' - - _id: XbzBKNTXHSUjzWtt - 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: >- -If a legendary creature has lair actions, it can use them to - harness the ambient magic in its lair.
- source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: lair-actions - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.2.0 - createdTime: null - modifiedTime: 1736804676949 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!bfh29vIEoGzI240e.XbzBKNTXHSUjzWtt' - _id: Utk1OQRwYkMkFRD3 name: Mage Hand ownership: diff --git a/packs/_source/monsters/undead/minotaur-skeleton.yml b/packs/_source/monsters/undead/minotaur-skeleton.yml index 66f693c71c..1b448664cf 100644 --- a/packs/_source/monsters/undead/minotaur-skeleton.yml +++ b/packs/_source/monsters/undead/minotaur-skeleton.yml @@ -496,10 +496,9 @@ items: 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.
+ 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.
chat: >-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 @@ -523,72 +522,6 @@ items: requirements: '' properties: [] activities: - dnd5eactivity000: - _id: dnd5eactivity000 - type: damage - activation: - type: '' - value: null - condition: '' - override: false - consumption: - targets: [] - scaling: - allowed: false - max: '' - spellSlot: true - description: - chatFlavor: '' - duration: - concentration: false - value: '' - units: '' - special: '' - override: false - effects: [] - range: - value: '10' - units: ft - special: '' - override: false - target: - template: - count: '' - contiguous: false - type: '' - size: '' - width: '' - height: '' - units: '' - affects: - count: '' - type: '' - choice: false - special: '' - prompt: true - override: false - uses: - spent: 0 - max: '' - recovery: [] - damage: - critical: - allow: false - bonus: '' - parts: - - number: 2 - denomination: 8 - bonus: '' - types: - - piercing - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' - sort: 0 dnd5eactivity100: _id: dnd5eactivity100 type: save @@ -638,26 +571,29 @@ items: max: '' recovery: [] damage: - onSave: half + onSave: full parts: - - number: 2 + - custom: + enabled: false + formula: '' + number: 2 denomination: 8 bonus: '' types: - piercing - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' save: ability: str dc: calculation: '' formula: '14' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null @@ -671,11 +607,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WqRzbokPG0am6AHb duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676835 + modifiedTime: 1765828257218 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!xple5bvGj42uGgdd.p7R5kkqAVQFKClRm' diff --git a/packs/_source/monsters/undead/mummy-lord.yml b/packs/_source/monsters/undead/mummy-lord.yml index 7d3d5f0983..6b850ad89d 100644 --- a/packs/_source/monsters/undead/mummy-lord.yml +++ b/packs/_source/monsters/undead/mummy-lord.yml @@ -502,9 +502,9 @@ items: description: value: >-
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.
+ 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. chat: >-Blinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must make a @@ -594,18 +594,18 @@ items: identifier: blinding-dust effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.ao6mxTJVYy7WaVgW duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676962 + modifiedTime: 1765828499401 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.Os0eEymWpLTVR2Xv' @@ -618,8 +618,8 @@ items: value: >-
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.
+ must succeed on a DC 16 Constitution saving throw or be stunned until + the end of the mummy lord's next turn. chat: >-The mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance @@ -709,18 +709,18 @@ items: identifier: blasphemous-word effects: [] folder: null - sort: 0 + sort: 300000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Xwj2GPqTxngS0j2L duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676962 + modifiedTime: 1765828505585 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.3PBv68cIzTlrzcYe' @@ -818,19 +818,19 @@ items: identifier: channel-negative-energy effects: [] folder: null - sort: 0 + sort: 400000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LO4nrudXAKJ4DbQI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.0.0 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828467151 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.sjY1jcYS6PdmZYKH' - _id: JxFTskCIHyVwp7fF @@ -840,8 +840,8 @@ items: system: description: value: >- -
The mummy lord has advantage on saving throws - against spells and other magical effects.
+The mummy lord has advantage on saving throws against spells and + other magical effects.
chat: '' source: custom: '' @@ -873,12 +873,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Hc6MqLQhPTI1KOvm duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828420190 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.JxFTskCIHyVwp7fF' - _id: AEc5FXdpe3M7KHQI @@ -889,9 +889,8 @@ items: 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.
+ intact, regaining all its hit points and becoming active again. The + new body appears within 5 feet of the mummy lord's heart. chat:A destroyed mummy lord gains a new body in 24 hours.
source: custom: '' @@ -923,11 +922,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.JcfHlAcfwSWnt7Ud duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676962 + modifiedTime: 1765828424873 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.AEc5FXdpe3M7KHQI' @@ -1353,13 +1352,12 @@ items: 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.
+ 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.
chat: >-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 @@ -1451,11 +1449,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.H306eluIH47Wfr0U duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676962 + modifiedTime: 1765828461323 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.yHydHrxw4vlDlyjf' @@ -1509,109 +1507,6 @@ items: lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.und47mebgauAcPu4' - - _id: NMN6cq7RkU8ccxKF - 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: >- -If a legendary creature has lair actions, it can use them to - harness the ambient magic in its lair.
- source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: lair-actions - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.2.0 - createdTime: null - modifiedTime: 1736804676962 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!UFW8M3JHzHkxUEGM.NMN6cq7RkU8ccxKF' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: regional-effects - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6 - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.0.0 - createdTime: null - modifiedTime: null - lastModifiedBy: null - exportSource: null - _key: '!actors.items!UFW8M3JHzHkxUEGM.IL0u33pW96t5O04m' - _id: MVq9wNMasHT5Cr1J name: Attack type: feat @@ -1619,8 +1514,9 @@ items: system: description: value: >- -The mummy lord makes one attack with its Rotting Fist or uses its - Dreadful Glare.
+The mummy lord makes one attack with its [[/item + .M6t9H8pMhzQxM9qv]]{Rotting Fist} or uses its [[/item + .yHydHrxw4vlDlyjf]]{Dreadful Glare}.
chat: '' source: custom: '' @@ -1711,12 +1607,12 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828491955 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.MVq9wNMasHT5Cr1J' - _id: o7UvUGPaF9cnGcQi @@ -1815,19 +1711,19 @@ items: identifier: whirlwind-of-sand effects: [] folder: null - sort: 0 + sort: 500000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.X96xsQjIolyHtV91 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.0.0 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828467151 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!UFW8M3JHzHkxUEGM.o7UvUGPaF9cnGcQi' - _id: n9pJzTDsAwQxJVRl diff --git a/packs/_source/monsters/undead/mummy.yml b/packs/_source/monsters/undead/mummy.yml index c7c9960560..d8002cdcdb 100644 --- a/packs/_source/monsters/undead/mummy.yml +++ b/packs/_source/monsters/undead/mummy.yml @@ -600,14 +600,13 @@ items: system: description: value: >- -[[/attack extended]]. [[/damage extended]].
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.
+[[/attack extended]]. [[/damage extended]].
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.
chat: >-The Mummy attacks with its Rotting Fist. If the target is a creature, it must make a Constitution saving @@ -808,19 +807,7 @@ items: recovery: [] damage: onSave: half - parts: - - number: 2 - denomination: 6 - bonus: '@mod' - types: - - bludgeoning - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' + parts: [] save: ability: con dc: @@ -831,6 +818,7 @@ items: ammunition: {} magicalBonus: null identifier: rotting-fist + mastery: '' effects: [] folder: null sort: 0 @@ -840,11 +828,11 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107553847 + modifiedTime: 1765828401412 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!t8WYD7ak07X7xpx8.ik1IkSZi4fpiGbB3' @@ -856,12 +844,12 @@ items: 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 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.
chat: >-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 @@ -953,11 +941,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.H306eluIH47Wfr0U duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676609 + modifiedTime: 1765828409328 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!t8WYD7ak07X7xpx8.8Jju4CVZaIDab6Ju' diff --git a/packs/_source/monsters/undead/ogre-zombie.yml b/packs/_source/monsters/undead/ogre-zombie.yml index 7e5917422c..4ed3d35ae1 100644 --- a/packs/_source/monsters/undead/ogre-zombie.yml +++ b/packs/_source/monsters/undead/ogre-zombie.yml @@ -654,11 +654,10 @@ items: 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 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.
chat: >-If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw.
@@ -692,11 +691,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.VYAnJjIgb5nPXfRr duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676571 + modifiedTime: 1765828935763 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!RenLfmDT2XlbCF4x.NPmV7puA7Yg3esqg' diff --git a/packs/_source/monsters/undead/shadow.yml b/packs/_source/monsters/undead/shadow.yml index cae08c3cd9..b1b266c9fe 100644 --- a/packs/_source/monsters/undead/shadow.yml +++ b/packs/_source/monsters/undead/shadow.yml @@ -575,7 +575,8 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 @@ -643,11 +644,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.nUVFUgyKK7fmQaFh duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676570 + modifiedTime: 1765828346422 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!QGcQYZbVl4bWzi4E.Xa0lRW8VhYHTAQT0' @@ -658,8 +659,8 @@ items: system: description: value: >- -While in sunlight, the shadow has disadvantage on - attack rolls, ability checks, and saving throws.
+While in sunlight, the shadow has disadvantage on attack rolls, + ability checks, and saving throws.
chat: '' source: custom: '' @@ -691,12 +692,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.u1Tt4l4Mczgt3wOS duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828335736 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!QGcQYZbVl4bWzi4E.BrzbftAD7eqZXWA8' - _id: 2OUOBIN4TJDoL0sJ @@ -707,10 +708,10 @@ items: description: value: >-[[/attack extended]]. [[/damage extended]].
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.
+ Strength score is reduced by [[/r 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. chat:The Shadow attacks with its Strength Drain.
source: custom: '' @@ -850,6 +851,7 @@ items: ammunition: {} magicalBonus: null identifier: strength-drain + mastery: '' effects: [] folder: null sort: 0 @@ -859,11 +861,11 @@ items: _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107551716 + modifiedTime: 1765828365244 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!QGcQYZbVl4bWzi4E.2OUOBIN4TJDoL0sJ' diff --git a/packs/_source/monsters/undead/specter.yml b/packs/_source/monsters/undead/specter.yml index 3dccf4fec8..23aa93675a 100644 --- a/packs/_source/monsters/undead/specter.yml +++ b/packs/_source/monsters/undead/specter.yml @@ -510,8 +510,8 @@ items: 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.
+ were difficult terrain.It takes 5 (1d10) force damage if it + ends its turn inside an object.
chat: >-The specter can move through other creatures and objects as if they were difficult terrain.
@@ -610,11 +610,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676568 + modifiedTime: 1765828300127 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!PuPo4H4Dcxigf0fY.FpoS5qzlgE3YPZGN' @@ -858,9 +858,8 @@ items: system: description: value: >- -While in sunlight, the specter has disadvantage on - attack rolls, as well as on Wisdom (Perception) checks that rely on - sight.
+While in sunlight, the specter has disadvantage on attack rolls, as + well as on Wisdom (Perception) checks that rely on sight.
chat: '' source: custom: '' @@ -892,12 +891,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828308594 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!PuPo4H4Dcxigf0fY.1FbU02rRuNLnEDXC' effects: [] diff --git a/packs/_source/monsters/undead/vampire-spawn.yml b/packs/_source/monsters/undead/vampire-spawn.yml index 5682f7a56b..3954d5885c 100644 --- a/packs/_source/monsters/undead/vampire-spawn.yml +++ b/packs/_source/monsters/undead/vampire-spawn.yml @@ -655,18 +655,18 @@ items: mastery: '' effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745175966453 + modifiedTime: 1765828689254 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!zpaZb7I8alY32vWV.HebvJc2NqYvdR79s' @@ -676,7 +676,9 @@ items: img: icons/skills/melee/strike-slashes-red.webp system: description: - value:[[/attack extended]]. [[/damage extended]].
+ value: >- +[[/attack extended]]. [[/damage extended]]. Instead of dealing + damage, the vampire can grapple the target (escape DC 13).
chat: >-The Vampire Spawn attacks with its Claws. Instead of dealing damage, the vampire can grapple the target.
@@ -818,20 +820,21 @@ items: ammunition: {} magicalBonus: null identifier: claws + mastery: '' effects: [] folder: null - sort: 0 + sort: 50000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107554337 + modifiedTime: 1765828724796 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!zpaZb7I8alY32vWV.DY9MW3aTF5T5zhpo' @@ -928,11 +931,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745273657774 + modifiedTime: 1765828690184 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!zpaZb7I8alY32vWV.Q9tHfkUiN6f1sguc' @@ -943,11 +946,10 @@ items: 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 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.
chat: >-The vampire regains 10 hit points at the start of its turn.
@@ -966,13 +968,14 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 type: heal activation: - type: '' + type: turnStart value: null condition: '' override: false @@ -1029,6 +1032,13 @@ items: number: null formula: '' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null @@ -1042,11 +1052,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676837 + modifiedTime: 1765828668263 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!zpaZb7I8alY32vWV.wzRyhY2I1U0ytB7D' @@ -1105,23 +1115,16 @@ items: system: description: value: >- -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 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.
- -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 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 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.
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.
chat: '' source: custom: '' @@ -1153,12 +1156,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Ervkb8H99e2Beiae duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828685210 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!zpaZb7I8alY32vWV.lLAigtCvoIuj0TM9' effects: [] diff --git a/packs/_source/monsters/undead/vampire.yml b/packs/_source/monsters/undead/vampire.yml index 3f9969bc14..7925a70a22 100644 --- a/packs/_source/monsters/undead/vampire.yml +++ b/packs/_source/monsters/undead/vampire.yml @@ -495,21 +495,19 @@ items: description: value: >-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.
+ 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.
chat: >-The vampire can use its action to polymorph or return to its true form.
@@ -543,11 +541,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.VhByyxHJN7MNQJRd duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676990 + modifiedTime: 1765828539560 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.BqG5guVa93LaOAn1' @@ -665,17 +663,15 @@ items: 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.
+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.
chat: >-A slain vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling unconscious.
@@ -709,11 +705,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.hMC7XCkDbzVMZ0QG duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676990 + modifiedTime: 1765828551461 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.pVlKFunmE2qxO0pe' @@ -724,11 +720,10 @@ items: 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 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.
chat: >-The vampire regains 20 hit points at the start of its turn.
@@ -747,13 +742,14 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 type: heal activation: - type: '' + type: turnStart value: null condition: '' override: false @@ -810,6 +806,13 @@ items: number: null formula: '' sort: 0 + name: '' + img: '' + visibility: + level: + min: null + max: null + identifier: '' enchant: {} prerequisites: level: null @@ -823,11 +826,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Av7H0ymGdPeTsnwV duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676990 + modifiedTime: 1765828569480 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.BDnluJG7T7FfBjsQ' @@ -886,23 +889,16 @@ items: system: description: value: >- -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 +
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.
chat: '' source: @@ -935,12 +931,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.Ervkb8H99e2Beiae duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828586712 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.RLsKLdfdmHajHSwD' - _id: siO3h9XOkgPVi78F @@ -1405,18 +1401,18 @@ items: 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 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.
chat: >-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 @@ -1508,11 +1504,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.ykoo88OJOdfYH7mH duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676990 + modifiedTime: 1765828614521 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.RHezeN7HzNf2oKYP' @@ -1681,109 +1677,6 @@ items: lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.rQOFEdWpVwJWS2U4' - - _id: hNBduaMwPI3vordA - 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: >- -If a legendary creature has lair actions, it can use them to - harness the ambient magic in its lair.
- source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: lair-actions - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.P0DMM1rgpoiBodDT - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.2.0 - createdTime: null - modifiedTime: 1736804676990 - lastModifiedBy: dnd5ebuilder0000 - exportSource: null - _key: '!actors.items!DDO9lDCDtNHkfShP.hNBduaMwPI3vordA' - - _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: '' - source: - custom: '' - book: '' - page: '' - license: CC-BY-4.0 - rules: '2014' - revision: 1 - uses: - max: '' - spent: 0 - recovery: [] - type: - value: '' - subtype: '' - requirements: '' - properties: [] - activities: {} - enchant: {} - prerequisites: - level: null - identifier: regional-effects - effects: [] - folder: null - sort: 0 - ownership: - default: 0 - flags: {} - _stats: - compendiumSource: Compendium.dnd5e.monsterfeatures.L7myj23X3PFPUNh6 - duplicateSource: null - coreVersion: '13.344' - systemId: dnd5e - systemVersion: 4.0.0 - createdTime: null - modifiedTime: null - lastModifiedBy: null - exportSource: null - _key: '!actors.items!DDO9lDCDtNHkfShP.zV0DTNKndsVldLsV' - _id: o4v4mHxP82HTbIOX name: Move type: feat @@ -1898,7 +1791,9 @@ items: img: icons/skills/melee/unarmed-punch-fist-yellow-red.webp system: description: - value:The vampire makes one unarmed strike.
+ value: >- +The vampire makes one [[/item .jYBYvv9EF1UnOvqZ]]{unarmed + strike}.
chat: '' source: custom: '' @@ -1989,12 +1884,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.items.GsuvwoekKZatfKwF duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828636959 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.rEmbKJQ6mpvnUPOO' - _id: pW4iNTQphTJ3litv @@ -2003,7 +1898,7 @@ items: img: icons/creatures/abilities/mouth-teeth-long-red.webp system: description: - value:The vampire makes a bite attack.
+ value:The vampire makes a [[/item .uqHuj7Pjf2sjny21]]{bite} attack.
chat: '' source: custom: '' @@ -2094,12 +1989,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.WdpSeGqhZpptz37y duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828649318 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!DDO9lDCDtNHkfShP.pW4iNTQphTJ3litv' effects: [] diff --git a/packs/_source/monsters/undead/wight.yml b/packs/_source/monsters/undead/wight.yml index cfbf1403f8..9611b7f916 100644 --- a/packs/_source/monsters/undead/wight.yml +++ b/packs/_source/monsters/undead/wight.yml @@ -573,9 +573,8 @@ items: system: description: value: >- -While in sunlight, the wight has disadvantage on - attack rolls, as well as on Wisdom (Perception) checks that rely on - sight.
+While in sunlight, the wight has disadvantage on attack rolls, as + well as on Wisdom (Perception) checks that rely on sight.
chat: '' source: custom: '' @@ -607,12 +606,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828739676 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!rbyp54px2D0ql4QK.qodTzcDY37TCj4GN' - _id: fKIUImfcNk0pU2HN @@ -703,18 +702,18 @@ items: identifier: multiattack effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.EqoLg8T8EHvhJgKE duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745273657387 + modifiedTime: 1765828747375 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!rbyp54px2D0ql4QK.fKIUImfcNk0pU2HN' @@ -869,18 +868,18 @@ items: identifier: longbow effects: [] folder: null - sort: 0 + sort: 200000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.items.3cymOVja8jXbzrdT duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745173385792 + modifiedTime: 1765828747375 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!rbyp54px2D0ql4QK.PUYwkzEiKopyM6YL' @@ -1035,18 +1034,18 @@ items: identifier: longsword effects: [] folder: null - sort: 0 + sort: 175000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.items.10ZP2Bu3vnCuYMIB duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.4.0 createdTime: null - modifiedTime: 1745173385792 + modifiedTime: 1765828767173 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!rbyp54px2D0ql4QK.WZ3XGh48UoyAvBhS' @@ -1058,14 +1057,14 @@ items: description: value: >-[[/attack extended]]. [[/damage extended]].
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.
+ 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.
chat: >-The Wight attacks with its Life Drain. The target must make a Constitution saving throw.
@@ -1268,18 +1267,18 @@ items: identifier: life-drain effects: [] folder: null - sort: 0 + sort: 150000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107553740 + modifiedTime: 1765828754639 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!rbyp54px2D0ql4QK.NX8cqG6aZMns8wvY' diff --git a/packs/_source/monsters/undead/will-o-wisp.yml b/packs/_source/monsters/undead/will-o-wisp.yml index c8d1b1bfd3..2119914980 100644 --- a/packs/_source/monsters/undead/will-o-wisp.yml +++ b/packs/_source/monsters/undead/will-o-wisp.yml @@ -508,11 +508,10 @@ items: 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.
+ see within 5 feet 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.
chat: >-The will-o'-wisp can target one creature it can see within 5 ft. The target must succeed on a Constitution @@ -532,7 +531,8 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 @@ -584,16 +584,7 @@ items: recovery: [] damage: onSave: half - parts: - - custom: - enabled: false - formula: '' - number: 3 - denomination: 6 - bonus: '' - types: [] - scaling: - number: 1 + parts: [] save: ability: con dc: @@ -601,6 +592,66 @@ items: formula: '10' sort: 0 name: '' + XXlHnpAClv3SEWrJ: + type: heal + _id: XXlHnpAClv3SEWrJ + sort: 0 + activation: + type: '' + override: false + condition: if the target dies + consumption: + scaling: + allowed: false + spellSlot: true + targets: [] + description: + chatFlavor: '' + duration: + units: inst + concentration: false + override: false + effects: [] + flags: {} + range: + units: self + override: false + special: '' + target: + template: + contiguous: false + units: ft + type: '' + affects: + choice: false + type: self + special: '' + override: false + prompt: true + uses: + spent: 0 + recovery: [] + max: '' + visibility: + level: + min: null + max: null + requireAttunement: false + requireIdentification: false + requireMagic: false + identifier: '' + healing: + types: + - healing + custom: + enabled: false + scaling: + number: 1 + number: 3 + denomination: 6 + bonus: '' + name: '' + img: '' enchant: {} prerequisites: level: null @@ -614,11 +665,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.r2nM5I77LnSvkLvD duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676865 + modifiedTime: 1765828834056 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!8KSVpQZyzius93ko.RAnyTfj3CGaiGK3W' @@ -676,8 +727,8 @@ items: 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.
+ they were difficult terrain.It takes 5 (1d10) force damage if + it ends its turn inside an object.
chat: >-The will-o'-wisp can move through other creatures and objects as if they were difficult terrain.
@@ -776,11 +827,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676865 + modifiedTime: 1765828843131 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!8KSVpQZyzius93ko.MGdIOXhRAQQRrAcO' @@ -791,10 +842,9 @@ items: 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.
+The will-o'-wisp sheds bright light in a 5- to 20-foot radius and + dim light for an additional number of feet equal to the chosen radius. + The will-o'-wisp can alter the radius as a bonus action.
chat: '' source: custom: '' @@ -826,12 +876,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.iQGaWIinmYFPRF94 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828855319 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!8KSVpQZyzius93ko.3Sr6MrVgbTGw66Aa' - _id: np6oHDOwHQFsSn5B diff --git a/packs/_source/monsters/undead/wraith.yml b/packs/_source/monsters/undead/wraith.yml index 924dea3751..95a8ffa50b 100644 --- a/packs/_source/monsters/undead/wraith.yml +++ b/packs/_source/monsters/undead/wraith.yml @@ -594,18 +594,18 @@ items: identifier: create-specter effects: [] folder: null - sort: 0 + sort: 200000 ownership: default: 0 flags: {} _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.SlAF2AE4ZKoUvQql duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e systemVersion: 4.2.0 createdTime: null - modifiedTime: 1736804676716 + modifiedTime: 1765828901854 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!ET4PEVEiNJLU4f7c.RADMbiPme1Hrfu8E' @@ -617,8 +617,8 @@ items: 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.
+ were difficult terrain.It takes 5 (1d10) force damage if it + ends its turn inside an object.
chat: >-The wraith can move through other creatures and objects as if they were difficult terrain.
@@ -637,7 +637,8 @@ items: value: '' subtype: '' requirements: '' - properties: [] + properties: + - trait activities: dnd5eactivity000: _id: dnd5eactivity000 @@ -717,26 +718,26 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.LUHmtIDD1VTreFqI duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676716 + modifiedTime: 1765828874941 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!ET4PEVEiNJLU4f7c.idILnIUj76QH9v8w' - _id: xZPFtf2vCYraWXVe - name: Wraith - Life Drain + name: Life Drain type: weapon img: icons/magic/unholy/strike-hand-glow-pink.webp system: description: value: >- -[[/attack extended]]. [[/damage extended]].
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.
+[[/attack extended]]. [[/damage extended]].
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.
chat: >-The Wraith attacks with its Life Drain. The target must make a Constitution saving throw.
@@ -924,19 +925,7 @@ items: recovery: [] damage: onSave: half - parts: - - number: 4 - denomination: 8 - bonus: '@mod' - types: - - necrotic - custom: - enabled: false - formula: '' - scaling: - mode: whole - number: null - formula: '' + parts: [] save: ability: con dc: @@ -947,20 +936,21 @@ items: ammunition: {} magicalBonus: null identifier: wraith-life-drain + mastery: '' effects: [] folder: null - sort: 0 + sort: 100000 ownership: default: 0 flags: {} _stats: compendiumSource: null duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.4.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1745107550850 + modifiedTime: 1765828901252 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!ET4PEVEiNJLU4f7c.xZPFtf2vCYraWXVe' @@ -971,9 +961,8 @@ items: system: description: value: >- -While in sunlight, the wraith has disadvantage on - attack rolls, as well as on Wisdom (Perception) checks that rely on - sight.
+While in sunlight, the wraith has disadvantage on attack rolls, as + well as on Wisdom (Perception) checks that rely on sight.
chat: '' source: custom: '' @@ -1005,12 +994,12 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.F14aW2Ke3I5ZtSg4 duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.0.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: null - lastModifiedBy: null + modifiedTime: 1765828880962 + lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!ET4PEVEiNJLU4f7c.3ERjE4pz2bgxXIPi' effects: [] diff --git a/packs/_source/monsters/undead/zombie.yml b/packs/_source/monsters/undead/zombie.yml index 482c1b2339..18868d8762 100644 --- a/packs/_source/monsters/undead/zombie.yml +++ b/packs/_source/monsters/undead/zombie.yml @@ -654,11 +654,10 @@ items: 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 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.
chat: >-If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw.
@@ -692,11 +691,11 @@ items: _stats: compendiumSource: Compendium.dnd5e.monsterfeatures.VYAnJjIgb5nPXfRr duplicateSource: null - coreVersion: '13.344' + coreVersion: '13.351' systemId: dnd5e - systemVersion: 4.2.0 + systemVersion: 5.2.3 createdTime: null - modifiedTime: 1736804676561 + modifiedTime: 1765828926469 lastModifiedBy: dnd5ebuilder0000 exportSource: null _key: '!actors.items!NAISFPoNNgUCsEyW.RDeCoZRniQBNq0rX'