}
*/
-async function rollDamage(event, speaker) {
+async function rollDamage(event) {
const target = event.target.closest(".roll-link");
const { formula, damageType } = target.dataset;
- const title = game.i18n.localize("DND5E.DamageRoll");
+ const isHealing = damageType in CONFIG.DND5E.healingTypes;
+ const title = game.i18n.localize(`DND5E.${isHealing ? "Healing" : "Damage"}Roll`);
const rollConfig = {
rollConfigs: [{
parts: [formula],
type: damageType
}],
- flavor: `${title} (${game.i18n.localize(CONFIG.DND5E.damageTypes[damageType]?.label ?? damageType)})`,
+ flavor: title,
event,
title,
messageData: {
@@ -1032,7 +1154,7 @@ async function rollDamage(event, speaker) {
targets: Item5e._formatAttackTargets(),
roll: {type: "damage"}
},
- speaker
+ speaker: ChatMessage.implementation.getSpeaker()
}
};
@@ -1040,3 +1162,47 @@ async function rollDamage(event, speaker) {
const roll = await damageRoll(rollConfig);
if ( roll ) Hooks.callAll("dnd5e.rollDamage", undefined, roll);
}
+
+/* -------------------------------------------- */
+
+/**
+ * Use an Item from an Item enricher.
+ * @param {object} [options]
+ * @param {string} [options.rollItemUuid] Lookup the Item by UUID.
+ * @param {string} [options.rollItemName] Lookup the Item by name.
+ * @param {string} [options.rollItemActor] The UUID of a specific Actor that should use the Item.
+ * @returns {Promise}
+ */
+async function useItem({ rollItemUuid, rollItemName, rollItemActor }={}) {
+ // If UUID is provided, always roll that item directly
+ if ( rollItemUuid ) return (await fromUuid(rollItemUuid))?.use();
+
+ if ( !rollItemName ) return;
+ const actor = rollItemActor ? await fromUuid(rollItemActor) : null;
+
+ // If no actor is specified or player isn't owner, fall back to the macro rolling logic
+ if ( !actor?.isOwner ) return rollItem(rollItemName);
+ const token = canvas.tokens.controlled[0];
+
+ // If a token is controlled, and it has an item with the correct name, activate it
+ let item = token?.actor.items.getName(rollItemName);
+
+ // Otherwise check the specified actor for the item
+ if ( !item ) {
+ item = actor.items.getName(rollItemName);
+
+ // Display a warning to indicate the item wasn't rolled from the controlled actor
+ if ( item && canvas.tokens.controlled.length ) ui.notifications.warn(
+ game.i18n.format("MACRO.5eMissingTargetWarn", {
+ actor: token.name, name: rollItemName, type: game.i18n.localize("DOCUMENT.Item")
+ })
+ );
+ }
+
+ if ( item ) return item.use();
+
+ // If no item could be found at all, display a warning
+ ui.notifications.warn(game.i18n.format("EDITOR.DND5E.Inline.Warning.NoItemOnActor", {
+ actor: actor.name, name: rollItemName, type: game.i18n.localize("DOCUMENT.Item")
+ }));
+}
diff --git a/module/settings.mjs b/module/settings.mjs
index 8b42906b44..fc4bfbc24f 100644
--- a/module/settings.mjs
+++ b/module/settings.mjs
@@ -193,6 +193,21 @@ export function registerSystemSettings() {
}
});
+ // Collapse Chat Card Trays
+ game.settings.register("dnd5e", "autoCollapseChatTrays", {
+ name: "SETTINGS.DND5E.COLLAPSETRAYS.Name",
+ hint: "SETTINGS.DND5E.COLLAPSETRAYS.Hint",
+ scope: "client",
+ config: true,
+ default: "older",
+ type: String,
+ choices: {
+ never: "SETTINGS.DND5E.COLLAPSETRAYS.Never",
+ older: "SETTINGS.DND5E.COLLAPSETRAYS.Older",
+ always: "SETTINGS.DND5E.COLLAPSETRAYS.Always"
+ }
+ });
+
// Allow Polymorphing
game.settings.register("dnd5e", "allowPolymorphing", {
name: "SETTINGS.5eAllowPolymorphingN",
@@ -312,17 +327,6 @@ export function registerSystemSettings() {
type: PrimaryPartyData,
onChange: s => ui.actors.render()
});
-
- // Token Rings
- game.settings.register("dnd5e", "disableTokenRings", {
- name: "SETTINGS.5eTokenRings.Name",
- hint: "SETTINGS.5eTokenRings.Hint",
- scope: "client",
- config: true,
- type: Boolean,
- default: false,
- requiresReload: true
- });
}
/**
@@ -346,7 +350,7 @@ export function registerDeferredSettings() {
name: "SETTINGS.DND5E.THEME.Name",
hint: "SETTINGS.DND5E.THEME.Hint",
scope: "client",
- config: true,
+ config: game.release.generation < 12,
default: "",
type: String,
choices: {
@@ -356,13 +360,24 @@ export function registerDeferredSettings() {
onChange: s => setTheme(document.body, s)
});
- setTheme(document.body, game.settings.get("dnd5e", "theme"));
matchMedia("(prefers-color-scheme: dark)").addEventListener("change", () => {
setTheme(document.body, game.settings.get("dnd5e", "theme"));
});
matchMedia("(prefers-contrast: more)").addEventListener("change", () => {
setTheme(document.body, game.settings.get("dnd5e", "theme"));
});
+
+ // Hook into core color scheme setting.
+ if ( game.release.generation > 11 ) {
+ const setting = game.settings.settings.get("core.colorScheme");
+ const { onChange } = setting ?? {};
+ if ( onChange ) setting.onChange = s => {
+ onChange();
+ setTheme(document.body, s);
+ };
+ setTheme(document.body, game.settings.get("core", "colorScheme"));
+ }
+ else setTheme(document.body, game.settings.get("dnd5e", "theme"));
}
/* -------------------------------------------- */
diff --git a/module/tooltips.mjs b/module/tooltips.mjs
index 35987c72cd..ab1b71001c 100644
--- a/module/tooltips.mjs
+++ b/module/tooltips.mjs
@@ -103,8 +103,8 @@ export default class Tooltips5e {
* @protected
*/
async _onHoverContentLink(doc) {
- if ( !doc.system?.richTooltip ) return;
- const { content, classes } = await doc.system.richTooltip();
+ const { content, classes } = await (doc.richTooltip?.() ?? doc.system?.richTooltip?.() ?? {});
+ if ( !content ) return;
this.tooltip.innerHTML = content;
classes?.forEach(c => this.tooltip.classList.add(c));
const { tooltipDirection } = game.tooltip.element.dataset;
@@ -172,25 +172,33 @@ export default class Tooltips5e {
/**
* Position a tooltip after rendering.
- * @param {string} [direction="LEFT"] The direction to position the tooltip.
+ * @param {string} [direction] The direction to position the tooltip.
* @protected
*/
- _positionItemTooltip(direction=TooltipManager.TOOLTIP_DIRECTIONS.LEFT) {
- const tooltip = this.tooltip;
- const { clientWidth, clientHeight } = document.documentElement;
- const tooltipBox = tooltip.getBoundingClientRect();
- const targetBox = game.tooltip.element.getBoundingClientRect();
- const maxTop = clientHeight - tooltipBox.height;
- const top = Math.min(maxTop, targetBox.bottom - ((targetBox.height + tooltipBox.height) / 2));
- const left = targetBox.left - tooltipBox.width - game.tooltip.constructor.TOOLTIP_MARGIN_PX;
- const right = targetBox.right + game.tooltip.constructor.TOOLTIP_MARGIN_PX;
- const { RIGHT, LEFT } = TooltipManager.TOOLTIP_DIRECTIONS;
- if ( (direction === LEFT) && (left < 0) ) direction = RIGHT;
- else if ( (direction === RIGHT) && (right + targetBox.width > clientWidth) ) direction = LEFT;
- tooltip.style.top = `${Math.max(0, top)}px`;
- tooltip.style.right = "";
- if ( direction === RIGHT ) tooltip.style.left = `${Math.min(right, clientWidth - tooltipBox.width)}px`;
- else tooltip.style.left = `${Math.max(0, left)}px`;
+ _positionItemTooltip(direction) {
+ if ( !direction ) {
+ direction = TooltipManager.TOOLTIP_DIRECTIONS.LEFT;
+ game.tooltip._setAnchor(direction);
+ }
+
+ const pos = this.tooltip.getBoundingClientRect();
+ const dirs = TooltipManager.TOOLTIP_DIRECTIONS;
+ switch ( direction ) {
+ case dirs.UP:
+ if ( pos.y - TooltipManager.TOOLTIP_MARGIN_PX <= 0 ) direction = dirs.DOWN;
+ break;
+ case dirs.DOWN:
+ if ( pos.y + this.tooltip.offsetHeight > window.innerHeight ) direction = dirs.UP;
+ break;
+ case dirs.LEFT:
+ if ( pos.x - TooltipManager.TOOLTIP_MARGIN_PX <= 0 ) direction = dirs.RIGHT;
+ break;
+ case dirs.RIGHT:
+ if ( pos.x + this.tooltip.offsetWidth > window.innerWith ) direction = dirs.LEFT;
+ break;
+ }
+
+ game.tooltip._setAnchor(direction);
// Set overflowing styles for item tooltips.
if ( tooltip.classList.contains("item-tooltip") ) {
diff --git a/module/utils.mjs b/module/utils.mjs
index 8ecd43bfc0..06e06651dd 100644
--- a/module/utils.mjs
+++ b/module/utils.mjs
@@ -49,7 +49,9 @@ export function isValidDieModifier(mod) {
reroll: /rr?([0-9]+)?([<>=]+)?([0-9]+)?/i,
explode: /xo?([0-9]+)?([<>=]+)?([0-9]+)?/i,
minimum: /(?:min)([0-9]+)/i,
- maximum: /(?:max)([0-9]+)/i
+ maximum: /(?:max)([0-9]+)/i,
+ dropKeep: /[dk]([hl])?([0-9]+)?/i,
+ count: /(?:c[sf])([<>=]+)?([0-9]+)?/i
};
return Object.values(regex).some(rgx => rgx.test(mod));
}
@@ -76,6 +78,39 @@ export function parseInputDelta(input, target) {
/* -------------------------------------------- */
+/**
+ * Replace referenced data attributes in the roll formula with values from the provided data.
+ * If the attribute is not found in the provided data, display a warning on the actor.
+ * @param {string} formula The original formula within which to replace.
+ * @param {object} data The data object which provides replacements.
+ * @param {object} options
+ * @param {Actor5e} [options.actor] Actor upon which to display the preparation warnings.
+ * @param {string} options.property Name of the property to which this formula belongs.
+ * @returns {string} Formula with replaced data.
+ */
+export function replaceFormulaData(formula, data, { actor, property }) {
+ const dataRgx = new RegExp(/@([a-z.0-9_-]+)/gi);
+ const missingReferences = new Set();
+ formula = formula.replace(dataRgx, (match, term) => {
+ let value = foundry.utils.getProperty(data, term);
+ if ( value == null ) {
+ missingReferences.add(match);
+ return "0";
+ }
+ return String(value).trim();
+ });
+ if ( (missingReferences.size > 0) && actor ) {
+ const listFormatter = new Intl.ListFormat(game.i18n.lang, { style: "long", type: "conjunction" });
+ const message = game.i18n.format("DND5E.FormulaMissingReferenceWarn", {
+ property, name: this.name, references: listFormatter.format(missingReferences)
+ });
+ actor._preparationWarnings.push({ message, link: this.uuid, type: "warning" });
+ }
+ return formula;
+}
+
+/* -------------------------------------------- */
+
/**
* Convert a bonus value to a simple integer for displaying on the sheet.
* @param {number|string|null} bonus Bonus formula.
@@ -173,27 +208,59 @@ export function indexFromUuid(uuid) {
/**
* Creates an HTML document link for the provided UUID.
- * @param {string} uuid UUID for which to produce the link.
- * @returns {string} Link to the item or empty string if item wasn't found.
+ * Try to build links to compendium content synchronously to avoid DB lookups.
+ * @param {string} uuid UUID for which to produce the link.
+ * @param {object} [options]
+ * @param {string} [options.tooltip] Tooltip to add to the link.
+ * @returns {string} Link to the item or empty string if item wasn't found.
*/
-export function linkForUuid(uuid) {
- if ( game.release.generation < 12 ) {
- return TextEditor._createContentLink(["", "UUID", uuid]).outerHTML;
+export function linkForUuid(uuid, { tooltip }={}) {
+ let doc = fromUuidSync(uuid);
+ if ( !doc ) return "";
+ if ( uuid.startsWith("Compendium.") && !(doc instanceof foundry.abstract.Document) ) {
+ const {collection} = foundry.utils.parseUuid(uuid);
+ const cls = collection.documentClass;
+ // Minimal "shell" of a document using index data
+ doc = new cls(foundry.utils.deepClone(doc), {pack: collection.metadata.id});
}
+ const a = doc.toAnchor();
+ if ( tooltip ) a.dataset.tooltip = tooltip;
+ return a.outerHTML;
+}
- // TODO: When v11 support is dropped we can make this method async and return to using TextEditor._createContentLink.
- if ( uuid.startsWith("Compendium.") ) {
- let [, scope, pack, documentName, id] = uuid.split(".");
- if ( !CONST.PRIMARY_DOCUMENT_TYPES.includes(documentName) ) id = documentName;
- const data = {
- classes: ["content-link"],
- attrs: { draggable: "true" }
- };
- TextEditor._createLegacyContentLink("Compendium", [scope, pack, id].join("."), "", data);
- data.dataset.link = "";
- return TextEditor.createAnchor(data).outerHTML;
- }
- return fromUuidSync(uuid).toAnchor().outerHTML;
+/* -------------------------------------------- */
+/* Targeting */
+/* -------------------------------------------- */
+
+/**
+ * Get currently selected tokens in the scene or user's character's tokens.
+ * @returns {Token5e[]}
+ */
+export function getSceneTargets() {
+ let targets = canvas.tokens.controlled.filter(t => t.actor);
+ if ( !targets.length && game.user.character ) targets = game.user.character.getActiveTokens();
+ return targets;
+}
+
+/* -------------------------------------------- */
+/* Conversions */
+/* -------------------------------------------- */
+
+/**
+ * Convert the provided weight to another unit.
+ * @param {number} value The weight being converted.
+ * @param {string} from The initial units.
+ * @param {string} to The final units.
+ * @returns {number} Weight in the specified units.
+ */
+export function convertWeight(value, from, to) {
+ if ( from === to ) return value;
+ const message = unit => `Weight unit ${unit} not defined in CONFIG.DND5E.weightUnits`;
+ if ( !CONFIG.DND5E.weightUnits[from] ) throw new Error(message(from));
+ if ( !CONFIG.DND5E.weightUnits[to] ) throw new Error(message(to));
+ return value
+ * CONFIG.DND5E.weightUnits[from].conversion
+ / CONFIG.DND5E.weightUnits[to].conversion;
}
/* -------------------------------------------- */
@@ -398,7 +465,7 @@ export function registerHandlebarsHelpers() {
"dnd5e-concealSection": concealSection,
"dnd5e-dataset": dataset,
"dnd5e-groupedSelectOptions": groupedSelectOptions,
- "dnd5e-linkForUuid": linkForUuid,
+ "dnd5e-linkForUuid": (uuid, options) => linkForUuid(uuid, options.hash),
"dnd5e-itemContext": itemContext,
"dnd5e-numberFormat": (context, options) => formatNumber(context, options.hash),
"dnd5e-textFormat": formatText
@@ -546,7 +613,7 @@ export function getHumanReadableAttributeLabel(attr, { actor }={}) {
// Spell slots.
else if ( attr.startsWith("spells.") ) {
const [, key] = attr.split(".");
- if ( key === "pact" ) label = "DND5E.SpellSlotsPact";
+ if ( !/spell\d+/.test(key) ) label = `DND5E.SpellSlots${key.capitalize()}`;
else {
const plurals = new Intl.PluralRules(game.i18n.lang, {type: "ordinal"});
const level = Number(key.slice(5));
diff --git a/packs/_source/backgrounds/acolyte-equipment/coin-pouch/_container.json b/packs/_source/backgrounds/acolyte-equipment/coin-pouch/_container.json
index f4b957a649..96a596ff8b 100644
--- a/packs/_source/backgrounds/acolyte-equipment/coin-pouch/_container.json
+++ b/packs/_source/backgrounds/acolyte-equipment/coin-pouch/_container.json
@@ -21,7 +21,10 @@
},
"container": null,
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 0,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1709765145012,
- "modifiedTime": 1709765193997,
+ "modifiedTime": 1715374598468,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dQaOdm9dbVN0RZYP"
diff --git a/packs/_source/classfeatures/bard/bard-features/superior-inspiration.json b/packs/_source/classfeatures/bard/bard-features/superior-inspiration.json
index fae108327b..4dfc71eae4 100644
--- a/packs/_source/classfeatures/bard/bard-features/superior-inspiration.json
+++ b/packs/_source/classfeatures/bard/bard-features/superior-inspiration.json
@@ -17,9 +17,9 @@
"license": "CC-BY-4.0"
},
"activation": {
- "type": "",
+ "type": "special",
"cost": null,
- "condition": ""
+ "condition": "When you roll initiative and have no uses of Bardic Inspiration"
},
"duration": {
"value": "",
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.hpLNiGq7y67d2EHA",
+ "amount": -1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234356,
- "modifiedTime": 1704824715825,
+ "modifiedTime": 1712173377397,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!GBYN5rH4nh1ocRlY"
diff --git a/packs/_source/classfeatures/cleric/cleric-features/channel-divinity-turn-undead.json b/packs/_source/classfeatures/cleric/cleric-features/channel-divinity-turn-undead.json
index 5e817d3397..53a8f11077 100644
--- a/packs/_source/classfeatures/cleric/cleric-features/channel-divinity-turn-undead.json
+++ b/packs/_source/classfeatures/cleric/cleric-features/channel-divinity-turn-undead.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.YpiLQEKGalROn7iJ",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234428,
- "modifiedTime": 1704824719088,
+ "modifiedTime": 1712173400630,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!r91UIgwFdHwkXdia"
diff --git a/packs/_source/classfeatures/cleric/life-domain-features/channel-divinity-preserve-life.json b/packs/_source/classfeatures/cleric/life-domain-features/channel-divinity-preserve-life.json
index 712bfea076..4e4f389178 100644
--- a/packs/_source/classfeatures/cleric/life-domain-features/channel-divinity-preserve-life.json
+++ b/packs/_source/classfeatures/cleric/life-domain-features/channel-divinity-preserve-life.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.YpiLQEKGalROn7iJ",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -93,10 +93,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234408,
- "modifiedTime": 1704824718140,
+ "modifiedTime": 1712173414310,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hEymt45rICi4f9eL"
diff --git a/packs/_source/classfeatures/monk/monk-features/deflect-missiles.json b/packs/_source/classfeatures/monk/monk-features/deflect-missiles.json
index 85096ad182..1bde04a2fe 100644
--- a/packs/_source/classfeatures/monk/monk-features/deflect-missiles.json
+++ b/packs/_source/classfeatures/monk/monk-features/deflect-missiles.json
@@ -7,7 +7,7 @@
"type": "feat",
"system": {
"description": {
- "value": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.
If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 @UUID[Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7]{Ki} point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.
Foundry Note
The reduce damage roll is calculated by the Other Formula.
",
+ "value": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by [[/r 1d10 + @abilities.dex.mod + @classes.monk.levels]]{1d10 + your Dexterity modifier + your monk level}.
If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 @UUID[Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7]{Ki} point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.
",
"chat": ""
},
"source": {
@@ -19,7 +19,7 @@
"activation": {
"type": "reaction",
"cost": 1,
- "condition": "Can be thrown back using 1 ki point"
+ "condition": ""
},
"duration": {
"value": "",
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7",
+ "amount": 1,
"scale": false
},
"ability": "dex",
@@ -68,7 +68,7 @@
],
"versatile": ""
},
- "formula": "1d10 + @mod + @classes.monk.levels",
+ "formula": "",
"save": {
"ability": "",
"dc": null,
@@ -76,7 +76,7 @@
},
"type": {
"value": "class",
- "subtype": ""
+ "subtype": "ki"
},
"requirements": "Monk 3",
"recharge": {
@@ -93,10 +93,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234421,
- "modifiedTime": 1704824718710,
+ "modifiedTime": 1712173646267,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mzweVbnsJPQiVkAe"
diff --git a/packs/_source/classfeatures/monk/monk-features/diamond-soul.json b/packs/_source/classfeatures/monk/monk-features/diamond-soul.json
index dccea8709d..eb773dd0a9 100644
--- a/packs/_source/classfeatures/monk/monk-features/diamond-soul.json
+++ b/packs/_source/classfeatures/monk/monk-features/diamond-soul.json
@@ -17,9 +17,9 @@
"license": "CC-BY-4.0"
},
"activation": {
- "type": "",
+ "type": "none",
"cost": null,
- "condition": ""
+ "condition": "Whenever you make a saving throw and fail"
},
"duration": {
"value": "",
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -119,10 +119,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234336,
- "modifiedTime": 1704824714963,
+ "modifiedTime": 1712173494587,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7D2EkLdISwShEDlN"
diff --git a/packs/_source/classfeatures/monk/monk-features/flurry-of-blows.json b/packs/_source/classfeatures/monk/monk-features/flurry-of-blows.json
index 9d67a91659..25b1d671ca 100644
--- a/packs/_source/classfeatures/monk/monk-features/flurry-of-blows.json
+++ b/packs/_source/classfeatures/monk/monk-features/flurry-of-blows.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234331,
- "modifiedTime": 1704824714725,
+ "modifiedTime": 1712173509095,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5MwNlVZK7m6VolOH"
diff --git a/packs/_source/classfeatures/monk/monk-features/patient-defense.json b/packs/_source/classfeatures/monk/monk-features/patient-defense.json
index d00c581281..1285eaee0c 100644
--- a/packs/_source/classfeatures/monk/monk-features/patient-defense.json
+++ b/packs/_source/classfeatures/monk/monk-features/patient-defense.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234380,
- "modifiedTime": 1704824716879,
+ "modifiedTime": 1712173520209,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TDglPcxIVEzvVSgK"
diff --git a/packs/_source/classfeatures/monk/monk-features/step-of-the-wind.json b/packs/_source/classfeatures/monk/monk-features/step-of-the-wind.json
index bd2551ec9c..dbdfc42024 100644
--- a/packs/_source/classfeatures/monk/monk-features/step-of-the-wind.json
+++ b/packs/_source/classfeatures/monk/monk-features/step-of-the-wind.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234443,
- "modifiedTime": 1704824719918,
+ "modifiedTime": 1712173528595,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!yrSFIGTaQOH2PFRI"
diff --git a/packs/_source/classfeatures/monk/monk-features/stunning-strike.json b/packs/_source/classfeatures/monk/monk-features/stunning-strike.json
index 15e8e2de49..cfac6a7b7d 100644
--- a/packs/_source/classfeatures/monk/monk-features/stunning-strike.json
+++ b/packs/_source/classfeatures/monk/monk-features/stunning-strike.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -113,10 +113,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234427,
- "modifiedTime": 1706153505443,
+ "modifiedTime": 1712173537477,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!pvRc6GAu1ok6zihC"
diff --git a/packs/_source/classfeatures/monk/way-of-the-open-hand-features/ki-quivering-palm.json b/packs/_source/classfeatures/monk/way-of-the-open-hand-features/quivering-palm.json
similarity index 92%
rename from packs/_source/classfeatures/monk/way-of-the-open-hand-features/ki-quivering-palm.json
rename to packs/_source/classfeatures/monk/way-of-the-open-hand-features/quivering-palm.json
index a6fd268854..2c9ee52e7f 100644
--- a/packs/_source/classfeatures/monk/way-of-the-open-hand-features/ki-quivering-palm.json
+++ b/packs/_source/classfeatures/monk/way-of-the-open-hand-features/quivering-palm.json
@@ -1,6 +1,6 @@
{
"_id": "h1gM8SH3BNRtFevE",
- "name": "Ki: Quivering Palm",
+ "name": "Quivering Palm",
"ownership": {
"default": 0
},
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7",
+ "amount": 3,
"scale": false
},
"ability": "",
@@ -93,10 +93,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234407,
- "modifiedTime": 1704824718109,
+ "modifiedTime": 1712173665151,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!h1gM8SH3BNRtFevE"
diff --git a/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-sacred-weapon.json b/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-sacred-weapon.json
index 1d93a58109..47a8cac16a 100644
--- a/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-sacred-weapon.json
+++ b/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-sacred-weapon.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.8M7uOPhbTxoxxJSo",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234441,
- "modifiedTime": 1704824719806,
+ "modifiedTime": 1712173711431,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xNN0JMKqlG4hKVYu"
diff --git a/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-turn-the-unholy.json b/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-turn-the-unholy.json
index 0de6c2ac6d..72e3fc3cc9 100644
--- a/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-turn-the-unholy.json
+++ b/packs/_source/classfeatures/paladin/oath-of-devotion-features/channel-divinity-turn-the-unholy.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.8M7uOPhbTxoxxJSo",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234389,
- "modifiedTime": 1704824717378,
+ "modifiedTime": 1712173705464,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZdwGlsJNtc7pGFCd"
diff --git a/packs/_source/classfeatures/ranger/hunter-features/multiattack-volley.json b/packs/_source/classfeatures/ranger/hunter-features/volley.json
similarity index 95%
rename from packs/_source/classfeatures/ranger/hunter-features/multiattack-volley.json
rename to packs/_source/classfeatures/ranger/hunter-features/volley.json
index 427a3c1050..21b94bdd42 100644
--- a/packs/_source/classfeatures/ranger/hunter-features/multiattack-volley.json
+++ b/packs/_source/classfeatures/ranger/hunter-features/volley.json
@@ -1,6 +1,6 @@
{
"_id": "l7W6JB9yWLLLtQKP",
- "name": "Multiattack: Volley",
+ "name": "Volley",
"ownership": {
"default": 0
},
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234416,
- "modifiedTime": 1704824718513,
+ "modifiedTime": 1712173733428,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!l7W6JB9yWLLLtQKP"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/careful-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/careful-spell.json
index b2c379d460..a76f458535 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/careful-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/careful-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234445,
- "modifiedTime": 1704824720000,
+ "modifiedTime": 1712173798792,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zElYrOcCFFMhB6Xl"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/distant-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/distant-spell.json
index da293129ac..76e70ee7ab 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/distant-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/distant-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234349,
- "modifiedTime": 1704824715537,
+ "modifiedTime": 1712173805183,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DZpAa3LzMNBexbmX"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/empowered-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/empowered-spell.json
index 7453e215ff..aaffe006f1 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/empowered-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/empowered-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234358,
- "modifiedTime": 1704824715971,
+ "modifiedTime": 1712173813354,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IWpe0Y9uAStHGiH1"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/extended-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/extended-spell.json
index d6f964fe9c..39df93cb87 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/extended-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/extended-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234434,
- "modifiedTime": 1704824719374,
+ "modifiedTime": 1712173819972,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tQxlKyAx9sgPrbgj"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/heightened-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/heightened-spell.json
index 1973b404dc..42a73e655a 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/heightened-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/heightened-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 3,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234433,
- "modifiedTime": 1704824719353,
+ "modifiedTime": 1712173825806,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tNG2qi9zhmXEkecA"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/quickened-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/quickened-spell.json
index 2dc8a43d2a..a723a9d512 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/quickened-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/quickened-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 2,
"scale": false
},
"ability": null,
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234422,
- "modifiedTime": 1704824718793,
+ "modifiedTime": 1712173832045,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nViGf6bZ6DQAJhkw"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/subtle-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/subtle-spell.json
index 7de42a4980..023bf0d5bb 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/subtle-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/subtle-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234403,
- "modifiedTime": 1704824717922,
+ "modifiedTime": 1712173838167,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fXa0DMhoVLtbBu9l"
diff --git a/packs/_source/classfeatures/sorcerer/metamagic/twinned-spell.json b/packs/_source/classfeatures/sorcerer/metamagic/twinned-spell.json
index 395dd36519..7074151b3c 100644
--- a/packs/_source/classfeatures/sorcerer/metamagic/twinned-spell.json
+++ b/packs/_source/classfeatures/sorcerer/metamagic/twinned-spell.json
@@ -46,9 +46,9 @@
"prompt": true
},
"consume": {
- "type": "",
- "target": null,
- "amount": null,
+ "type": "charges",
+ "target": "Compendium.dnd5e.classfeatures.Item.LBKChJY5n02Afhnq",
+ "amount": 1,
"scale": false
},
"ability": "",
@@ -88,10 +88,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234375,
- "modifiedTime": 1704824716687,
+ "modifiedTime": 1712173849087,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Qb391hakCfmH4w8p"
diff --git a/packs/_source/classfeatures/sorcerer/sorcerer-features/metamagic.json b/packs/_source/classfeatures/sorcerer/sorcerer-features/metamagic.json
index df0ec419b8..1892a4f608 100644
--- a/packs/_source/classfeatures/sorcerer/sorcerer-features/metamagic.json
+++ b/packs/_source/classfeatures/sorcerer/sorcerer-features/metamagic.json
@@ -7,7 +7,7 @@
"type": "feat",
"system": {
"description": {
- "value": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level. You can use only one Metamagic option on a spell when you cast it, unless otherwise noted.
\n@UUID[Compendium.dnd5e.classfeatures.Item.zElYrOcCFFMhB6Xl]{Careful Spell}
\n@UUID[Compendium.dnd5e.classfeatures.Item.DZpAa3LzMNBexbmX]{Distant Spell}
\n@UUID[Compendium.dnd5e.classfeatures.Item.IWpe0Y9uAStHGiH1]{Empowered Spell}
\n@UUID[Compendium.dnd5e.classfeatures.Item.tQxlKyAx9sgPrbgj]{Extended Spell}
\n@UUID[Compendium.dnd5e.classfeatures.Item.tNG2qi9zhmXEkecA]{Heightened Spell}
\n@UUID[Compendium.dnd5e.classfeatures.Item.nViGf6bZ6DQAJhkw]{Quickened Spell}
\n@UUID[Compendium.dnd5e.classfeatures.Item.fXa0DMhoVLtbBu9l]{Subtle Spell}
\n@UUID[Compendium.dnd5e.classfeatures.Item.Qb391hakCfmH4w8p]{Twinned Spell}
\n\nFoundry Note
\nYou can drag your choices from the above onto your character sheet and it will automatically update.
\n",
+ "value": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level. You can use only one Metamagic option on a spell when you cast it, unless otherwise noted.
@UUID[Compendium.dnd5e.classfeatures.Item.zElYrOcCFFMhB6Xl]{Careful Spell}
@UUID[Compendium.dnd5e.classfeatures.Item.DZpAa3LzMNBexbmX]{Distant Spell}
@UUID[Compendium.dnd5e.classfeatures.Item.IWpe0Y9uAStHGiH1]{Empowered Spell}
@UUID[Compendium.dnd5e.classfeatures.Item.tQxlKyAx9sgPrbgj]{Extended Spell}
@UUID[Compendium.dnd5e.classfeatures.Item.tNG2qi9zhmXEkecA]{Heightened Spell}
@UUID[Compendium.dnd5e.classfeatures.Item.nViGf6bZ6DQAJhkw]{Quickened Spell}
@UUID[Compendium.dnd5e.classfeatures.Item.fXa0DMhoVLtbBu9l]{Subtle Spell}
@UUID[Compendium.dnd5e.classfeatures.Item.Qb391hakCfmH4w8p]{Twinned Spell}
",
"chat": ""
},
"source": {
@@ -88,10 +88,10 @@
"effects": [],
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234343,
- "modifiedTime": 1704824715301,
+ "modifiedTime": 1712173778106,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9Uh7uTDNZ04oTJsL"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/ascendant-step.json b/packs/_source/classfeatures/warlock/eldritch-invocations/ascendant-step.json
index 20284822b2..b99542ed1b 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/ascendant-step.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/ascendant-step.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 9
+ }
},
"flags": {},
"img": "icons/magic/light/explosion-beam-impact-silhouette.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234375,
- "modifiedTime": 1704824716663,
+ "modifiedTime": 1712073563047,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QEuH5TeBN4PPYT2g"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/bewitching-whispers.json b/packs/_source/classfeatures/warlock/eldritch-invocations/bewitching-whispers.json
index 6adb1675e1..a64b048e12 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/bewitching-whispers.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/bewitching-whispers.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 7
+ }
},
"flags": {},
"img": "icons/magic/air/wind-vortex-swirl-purple.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234362,
- "modifiedTime": 1704824716140,
+ "modifiedTime": 1712073571495,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KygHql3cTj4IRrvZ"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/chains-of-carceri.json b/packs/_source/classfeatures/warlock/eldritch-invocations/chains-of-carceri.json
index 9b221380b6..a29556bd31 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/chains-of-carceri.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/chains-of-carceri.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 15
+ }
},
"flags": {},
"img": "icons/skills/melee/strike-flail-spiked-pink.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234371,
- "modifiedTime": 1704824716555,
+ "modifiedTime": 1712073576288,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Phy02H5x0TKHd7T3"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/dreadful-word.json b/packs/_source/classfeatures/warlock/eldritch-invocations/dreadful-word.json
index 190cc875fd..164457896d 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/dreadful-word.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/dreadful-word.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 7
+ }
},
"flags": {},
"img": "icons/magic/air/wind-vortex-swirl-blue.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234374,
- "modifiedTime": 1704824716643,
+ "modifiedTime": 1712073581480,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QBk1RsuTIEF4GEBC"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/lifedrinker.json b/packs/_source/classfeatures/warlock/eldritch-invocations/lifedrinker.json
index 823c88b895..980f88bd41 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/lifedrinker.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/lifedrinker.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 12
+ }
},
"flags": {},
"img": "icons/skills/melee/strike-sword-blood-red.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234446,
- "modifiedTime": 1704824720039,
+ "modifiedTime": 1712073589086,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zUIAzBnyt0NDvVXb"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/master-of-myriad-forms.json b/packs/_source/classfeatures/warlock/eldritch-invocations/master-of-myriad-forms.json
index 32211cae4a..edf6a8ff83 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/master-of-myriad-forms.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/master-of-myriad-forms.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 15
+ }
},
"flags": {},
"img": "icons/creatures/abilities/cougar-pounce-stalk-black.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234419,
- "modifiedTime": 1704824718627,
+ "modifiedTime": 1712073592737,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lxfdjLer3uKjyZqU"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/minions-of-chaos.json b/packs/_source/classfeatures/warlock/eldritch-invocations/minions-of-chaos.json
index bc5708076d..0673abdfe7 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/minions-of-chaos.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/minions-of-chaos.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 9
+ }
},
"flags": {},
"img": "icons/creatures/magical/humanoid-giant-forest-blue.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234376,
- "modifiedTime": 1704824716713,
+ "modifiedTime": 1712073596508,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QnRKYXb2bXpnNd2k"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/mire-the-mind.json b/packs/_source/classfeatures/warlock/eldritch-invocations/mire-the-mind.json
index 99643a9683..9582640a8a 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/mire-the-mind.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/mire-the-mind.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 5
+ }
},
"flags": {},
"img": "icons/magic/time/clock-stopwatch-white-blue.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234350,
- "modifiedTime": 1704824715582,
+ "modifiedTime": 1712073600359,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DjXi0IkCTbJx1gsp"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/one-with-shadows.json b/packs/_source/classfeatures/warlock/eldritch-invocations/one-with-shadows.json
index 3f294ca9e6..99dc6abedc 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/one-with-shadows.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/one-with-shadows.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 5
+ }
},
"flags": {},
"img": "icons/magic/unholy/silhouette-robe-evil-power.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234361,
- "modifiedTime": 1704824716087,
+ "modifiedTime": 1712073604595,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KfnUyjUWAk0bAAus"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/otherworldly-leap.json b/packs/_source/classfeatures/warlock/eldritch-invocations/otherworldly-leap.json
index e23871a8e7..0271844347 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/otherworldly-leap.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/otherworldly-leap.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 9
+ }
},
"flags": {},
"img": "icons/magic/light/beam-strike-orange-gold.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234342,
- "modifiedTime": 1704824715249,
+ "modifiedTime": 1712073609547,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8zciiglzEOZo7DDN"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/sculptor-of-flesh.json b/packs/_source/classfeatures/warlock/eldritch-invocations/sculptor-of-flesh.json
index d35d5eaaaa..9f41f55b44 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/sculptor-of-flesh.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/sculptor-of-flesh.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 7
+ }
},
"flags": {},
"img": "icons/creatures/mammals/wolf-howl-moon-forest-blue.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234385,
- "modifiedTime": 1704824717121,
+ "modifiedTime": 1712073615140,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Xa2MLUJGCReJ28B7"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/sign-of-ill-omen.json b/packs/_source/classfeatures/warlock/eldritch-invocations/sign-of-ill-omen.json
index 93d9ebb167..954195ac00 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/sign-of-ill-omen.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/sign-of-ill-omen.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 5
+ }
},
"flags": {},
"img": "icons/magic/symbols/rune-sigil-black-pink.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234398,
- "modifiedTime": 1704824717753,
+ "modifiedTime": 1712073617921,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dTSV0xZMpY5CxkRk"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/thirsting-blade.json b/packs/_source/classfeatures/warlock/eldritch-invocations/thirsting-blade.json
index fc5ea94a8e..7560ab077b 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/thirsting-blade.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/thirsting-blade.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 5
+ }
},
"flags": {},
"img": "icons/skills/melee/blade-tip-chipped-blood-red.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234426,
- "modifiedTime": 1704824718932,
+ "modifiedTime": 1712073622874,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!pJADgAxxefgcATWr"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/visions-of-distant-realms.json b/packs/_source/classfeatures/warlock/eldritch-invocations/visions-of-distant-realms.json
index 2c1ce8a6bc..c4bee934c9 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/visions-of-distant-realms.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/visions-of-distant-realms.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 15
+ }
},
"flags": {},
"img": "icons/magic/control/hypnosis-mesmerism-eye.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234446,
- "modifiedTime": 1704824720069,
+ "modifiedTime": 1712073626426,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zYIdNAjqRyhS6qWs"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/whispers-of-the-grave.json b/packs/_source/classfeatures/warlock/eldritch-invocations/whispers-of-the-grave.json
index fa7bb41042..16a6a8e2b5 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/whispers-of-the-grave.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/whispers-of-the-grave.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 9
+ }
},
"flags": {},
"img": "icons/magic/death/undead-ghost-scream-teal.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234405,
- "modifiedTime": 1704824718001,
+ "modifiedTime": 1712073631502,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gFjxo01hAN4c9hDG"
diff --git a/packs/_source/classfeatures/warlock/eldritch-invocations/witch-sight.json b/packs/_source/classfeatures/warlock/eldritch-invocations/witch-sight.json
index 235bf2334b..575a2740ba 100644
--- a/packs/_source/classfeatures/warlock/eldritch-invocations/witch-sight.json
+++ b/packs/_source/classfeatures/warlock/eldritch-invocations/witch-sight.json
@@ -79,7 +79,10 @@
"charged": false
},
"crewed": false,
- "properties": []
+ "properties": [],
+ "prerequisites": {
+ "level": 15
+ }
},
"flags": {},
"img": "icons/magic/perception/eye-tendrils-web-purple.webp",
@@ -88,10 +91,10 @@
"sort": 0,
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234432,
- "modifiedTime": 1704824719294,
+ "modifiedTime": 1712073635047,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!snsjxGfmzWfZR5Nh"
diff --git a/packs/_source/items/ammunition/arrow-1.json b/packs/_source/items/ammunition/arrow-1.json
index 36ce759e00..e6ff382410 100644
--- a/packs/_source/items/ammunition/arrow-1.json
+++ b/packs/_source/items/ammunition/arrow-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.05,
+ "weight": {
+ "value": 0.05,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233906,
- "modifiedTime": 1709677518344,
+ "modifiedTime": 1715374652076,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tEWhsb2lYF4uvF0z"
diff --git a/packs/_source/items/ammunition/arrow-2.json b/packs/_source/items/ammunition/arrow-2.json
index e5017540c9..f0506db5fd 100644
--- a/packs/_source/items/ammunition/arrow-2.json
+++ b/packs/_source/items/ammunition/arrow-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.05,
+ "weight": {
+ "value": 0.05,
+ "units": "lb"
+ },
"price": {
"value": 100,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233803,
- "modifiedTime": 1709677518317,
+ "modifiedTime": 1715374631355,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gLkbbUtGhQgYANM8"
diff --git a/packs/_source/items/ammunition/arrow-3.json b/packs/_source/items/ammunition/arrow-3.json
index 1284ef4e2e..1aeac2200f 100644
--- a/packs/_source/items/ammunition/arrow-3.json
+++ b/packs/_source/items/ammunition/arrow-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.05,
+ "weight": {
+ "value": 0.05,
+ "units": "lb"
+ },
"price": {
"value": 400,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233572,
- "modifiedTime": 1709677518087,
+ "modifiedTime": 1715374596107,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IY5PveXrF7VoFlWg"
diff --git a/packs/_source/items/ammunition/arrow-of-slaying.json b/packs/_source/items/ammunition/arrow-of-slaying.json
index 6e17fbd7ed..e7736ae548 100644
--- a/packs/_source/items/ammunition/arrow-of-slaying.json
+++ b/packs/_source/items/ammunition/arrow-of-slaying.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.05,
+ "weight": {
+ "value": 0.05,
+ "units": "lb"
+ },
"price": {
"value": 600,
"denomination": "gp"
@@ -93,15 +96,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233724,
- "modifiedTime": 1709677518264,
+ "modifiedTime": 1715374621455,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aXsfZvDCdpuv3Yvb"
diff --git a/packs/_source/items/ammunition/arrow.json b/packs/_source/items/ammunition/arrow.json
index a3695f7ca4..84d73a2fa2 100644
--- a/packs/_source/items/ammunition/arrow.json
+++ b/packs/_source/items/ammunition/arrow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.05,
+ "weight": {
+ "value": 0.05,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -96,15 +99,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -115,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233457,
- "modifiedTime": 1709677517995,
+ "modifiedTime": 1715374574418,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3c7JXOzsv55gqJS5"
diff --git a/packs/_source/items/ammunition/blowgun-needle.json b/packs/_source/items/ammunition/blowgun-needle.json
index c056d65fb6..2f377c2368 100644
--- a/packs/_source/items/ammunition/blowgun-needle.json
+++ b/packs/_source/items/ammunition/blowgun-needle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.02,
+ "weight": {
+ "value": 0.02,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -96,15 +99,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -115,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233803,
- "modifiedTime": 1709677518290,
+ "modifiedTime": 1715374631243,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gBQ8xqTA5f8wP5iu"
diff --git a/packs/_source/items/ammunition/bolt-of-slaying.json b/packs/_source/items/ammunition/bolt-of-slaying.json
index f307c2a2c3..fe249f18cd 100644
--- a/packs/_source/items/ammunition/bolt-of-slaying.json
+++ b/packs/_source/items/ammunition/bolt-of-slaying.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 600,
"denomination": "gp"
@@ -93,15 +96,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233478,
- "modifiedTime": 1709677518031,
+ "modifiedTime": 1715374578211,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6OIw31CDF6mAwFnd"
diff --git a/packs/_source/items/ammunition/crossbow-bolt-1.json b/packs/_source/items/ammunition/crossbow-bolt-1.json
index 836ce71768..cc2c7134e5 100644
--- a/packs/_source/items/ammunition/crossbow-bolt-1.json
+++ b/packs/_source/items/ammunition/crossbow-bolt-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233718,
- "modifiedTime": 1709677518237,
+ "modifiedTime": 1715374620136,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZjUOHSyND2VFXQeP"
diff --git a/packs/_source/items/ammunition/crossbow-bolt-2.json b/packs/_source/items/ammunition/crossbow-bolt-2.json
index 00d8279ace..fd96090f15 100644
--- a/packs/_source/items/ammunition/crossbow-bolt-2.json
+++ b/packs/_source/items/ammunition/crossbow-bolt-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 100,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233962,
- "modifiedTime": 1709677518372,
+ "modifiedTime": 1715374657491,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!x1GUgZYjMubaFavx"
diff --git a/packs/_source/items/ammunition/crossbow-bolt-3.json b/packs/_source/items/ammunition/crossbow-bolt-3.json
index c953efcc68..0699f5e149 100644
--- a/packs/_source/items/ammunition/crossbow-bolt-3.json
+++ b/packs/_source/items/ammunition/crossbow-bolt-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 400,
"denomination": "gp"
@@ -94,14 +97,8 @@
"flat": false
},
"magicalBonus": 3,
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233701,
- "modifiedTime": 1709677518205,
+ "modifiedTime": 1715374616724,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XXLznzi3rlanMhTM"
diff --git a/packs/_source/items/ammunition/crossbow-bolt.json b/packs/_source/items/ammunition/crossbow-bolt.json
index b74dad6da7..ac6d26cf5d 100644
--- a/packs/_source/items/ammunition/crossbow-bolt.json
+++ b/packs/_source/items/ammunition/crossbow-bolt.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -96,15 +99,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -115,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233660,
- "modifiedTime": 1709677518179,
+ "modifiedTime": 1715374608727,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SItCnYBqhzqBoaWG"
diff --git a/packs/_source/items/ammunition/sling-bullet-1.json b/packs/_source/items/ammunition/sling-bullet-1.json
index e263808e48..6fe9f96a1e 100644
--- a/packs/_source/items/ammunition/sling-bullet-1.json
+++ b/packs/_source/items/ammunition/sling-bullet-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233632,
- "modifiedTime": 1709677518152,
+ "modifiedTime": 1715374603157,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NYIib9KEYDUFe9GY"
diff --git a/packs/_source/items/ammunition/sling-bullet-2.json b/packs/_source/items/ammunition/sling-bullet-2.json
index d2af666af6..1aa0533610 100644
--- a/packs/_source/items/ammunition/sling-bullet-2.json
+++ b/packs/_source/items/ammunition/sling-bullet-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 100,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233510,
- "modifiedTime": 1709677518058,
+ "modifiedTime": 1715374584476,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BNJmdttKvIwC08Pd"
diff --git a/packs/_source/items/ammunition/sling-bullet-3.json b/packs/_source/items/ammunition/sling-bullet-3.json
index 463efa4939..8364712915 100644
--- a/packs/_source/items/ammunition/sling-bullet-3.json
+++ b/packs/_source/items/ammunition/sling-bullet-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 400,
"denomination": "gp"
@@ -94,14 +97,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233963,
- "modifiedTime": 1709677518399,
+ "modifiedTime": 1715374657712,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!x9I9vdo4kafHDjcO"
diff --git a/packs/_source/items/ammunition/sling-bullet-of-slaying.json b/packs/_source/items/ammunition/sling-bullet-of-slaying.json
index 98ca39a234..64d04c1a25 100644
--- a/packs/_source/items/ammunition/sling-bullet-of-slaying.json
+++ b/packs/_source/items/ammunition/sling-bullet-of-slaying.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 600,
"denomination": "gp"
@@ -93,15 +96,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -112,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233627,
- "modifiedTime": 1709677518113,
+ "modifiedTime": 1715374602096,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Mj8fTo5VZKJJ7uMv"
diff --git a/packs/_source/items/ammunition/sling-bullet.json b/packs/_source/items/ammunition/sling-bullet.json
index 4f788d3e50..237f8de3a6 100644
--- a/packs/_source/items/ammunition/sling-bullet.json
+++ b/packs/_source/items/ammunition/sling-bullet.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.075,
+ "weight": {
+ "value": 0.075,
+ "units": "lb"
+ },
"price": {
"value": 0.2,
"denomination": "cp"
@@ -91,15 +94,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "NdDvXSjfqlghXpQZ",
@@ -110,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233974,
- "modifiedTime": 1709677518429,
+ "modifiedTime": 1715374660296,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!z9SbsMIBZzuhZOqT"
diff --git a/packs/_source/items/armor/adamantine-breastplate.json b/packs/_source/items/armor/adamantine-breastplate.json
index 59cb7a8e4e..0072e1cc77 100644
--- a/packs/_source/items/armor/adamantine-breastplate.json
+++ b/packs/_source/items/armor/adamantine-breastplate.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 900,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233528,
- "modifiedTime": 1709659991450,
+ "modifiedTime": 1715374587829,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DevmObXWP9MfwE2c"
diff --git a/packs/_source/items/armor/adamantine-chain-mail.json b/packs/_source/items/armor/adamantine-chain-mail.json
index 8e39d9725e..1690d28ab3 100644
--- a/packs/_source/items/armor/adamantine-chain-mail.json
+++ b/packs/_source/items/armor/adamantine-chain-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 55,
+ "weight": {
+ "value": 55,
+ "units": "lb"
+ },
"price": {
"value": 575,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233858,
- "modifiedTime": 1709659998858,
+ "modifiedTime": 1715374642333,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!n7fm71CN7qDIBEKk"
diff --git a/packs/_source/items/armor/adamantine-chain-shirt.json b/packs/_source/items/armor/adamantine-chain-shirt.json
index 6397d35d39..24fab4ff98 100644
--- a/packs/_source/items/armor/adamantine-chain-shirt.json
+++ b/packs/_source/items/armor/adamantine-chain-shirt.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 550,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233839,
- "modifiedTime": 1709659998360,
+ "modifiedTime": 1715374638343,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kjTPoUeomTPWJ9h3"
diff --git a/packs/_source/items/armor/adamantine-half-plate-armor.json b/packs/_source/items/armor/adamantine-half-plate-armor.json
index aa7af00290..bd8f4aafe4 100644
--- a/packs/_source/items/armor/adamantine-half-plate-armor.json
+++ b/packs/_source/items/armor/adamantine-half-plate-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 1250,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233438,
- "modifiedTime": 1709659989640,
+ "modifiedTime": 1715374570540,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!159agyOuBHCl2WKd"
diff --git a/packs/_source/items/armor/adamantine-plate-armor.json b/packs/_source/items/armor/adamantine-plate-armor.json
index 4ce91efdb4..fd32593b4e 100644
--- a/packs/_source/items/armor/adamantine-plate-armor.json
+++ b/packs/_source/items/armor/adamantine-plate-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233896,
- "modifiedTime": 1709659999372,
+ "modifiedTime": 1715374650308,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sP8CV5VNEcY1Yh1Q"
diff --git a/packs/_source/items/armor/adamantine-ring-mail.json b/packs/_source/items/armor/adamantine-ring-mail.json
index e85646f151..fd8094f014 100644
--- a/packs/_source/items/armor/adamantine-ring-mail.json
+++ b/packs/_source/items/armor/adamantine-ring-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 530,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233680,
- "modifiedTime": 1709659995242,
+ "modifiedTime": 1715374612517,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UpHAWqwifZpiZzns"
diff --git a/packs/_source/items/armor/adamantine-scale-mail.json b/packs/_source/items/armor/adamantine-scale-mail.json
index 4729e626c9..703c9e1416 100644
--- a/packs/_source/items/armor/adamantine-scale-mail.json
+++ b/packs/_source/items/armor/adamantine-scale-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 550,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233619,
- "modifiedTime": 1709659993633,
+ "modifiedTime": 1715374600229,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LdAj2ES9EzfnWcA1"
diff --git a/packs/_source/items/armor/adamantine-splint-armor.json b/packs/_source/items/armor/adamantine-splint-armor.json
index 63e5769c08..e4bfdb4efb 100644
--- a/packs/_source/items/armor/adamantine-splint-armor.json
+++ b/packs/_source/items/armor/adamantine-splint-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 60,
+ "weight": {
+ "value": 60,
+ "units": "lb"
+ },
"price": {
"value": 700,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233617,
- "modifiedTime": 1709659993528,
+ "modifiedTime": 1715374599717,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LDuqUcosOK8Bf76S"
diff --git a/packs/_source/items/armor/animated-shield.json b/packs/_source/items/armor/animated-shield.json
index 3c91f1f0d1..fdff04c498 100644
--- a/packs/_source/items/armor/animated-shield.json
+++ b/packs/_source/items/armor/animated-shield.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233630,
- "modifiedTime": 1709659994047,
+ "modifiedTime": 1715374602712,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NG8BlE2nwYJxCjWO"
diff --git a/packs/_source/items/armor/armor-of-invulnerability.json b/packs/_source/items/armor/armor-of-invulnerability.json
index 74f569e923..c4ddb7dead 100644
--- a/packs/_source/items/armor/armor-of-invulnerability.json
+++ b/packs/_source/items/armor/armor-of-invulnerability.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 18000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233791,
- "modifiedTime": 1709659997776,
+ "modifiedTime": 1715374629019,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!evSCq83oPhR0ZK4y"
diff --git a/packs/_source/items/armor/armor-of-vulnerability.json b/packs/_source/items/armor/armor-of-vulnerability.json
index 0b1a8b7edf..1411c5006c 100644
--- a/packs/_source/items/armor/armor-of-vulnerability.json
+++ b/packs/_source/items/armor/armor-of-vulnerability.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233711,
- "modifiedTime": 1709659996440,
+ "modifiedTime": 1715374618856,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YwS4pESpfsiq0JZv"
diff --git a/packs/_source/items/armor/arrow-catching-shield.json b/packs/_source/items/armor/arrow-catching-shield.json
index bc9f7c6d64..38ced6a88e 100644
--- a/packs/_source/items/armor/arrow-catching-shield.json
+++ b/packs/_source/items/armor/arrow-catching-shield.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233920,
- "modifiedTime": 1709659999904,
+ "modifiedTime": 1715374654268,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uWUD93jwuO2Jxkti"
diff --git a/packs/_source/items/armor/breastplate-1.json b/packs/_source/items/armor/breastplate-1.json
index fb1b3bffd4..f4a88f9b94 100644
--- a/packs/_source/items/armor/breastplate-1.json
+++ b/packs/_source/items/armor/breastplate-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 1900,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233486,
- "modifiedTime": 1709659990521,
+ "modifiedTime": 1715374580032,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!84z9mVy1mCipUWEY"
diff --git a/packs/_source/items/armor/breastplate-2.json b/packs/_source/items/armor/breastplate-2.json
index cc807a77ac..2e5a57305b 100644
--- a/packs/_source/items/armor/breastplate-2.json
+++ b/packs/_source/items/armor/breastplate-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 6400,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233535,
- "modifiedTime": 1709659991652,
+ "modifiedTime": 1715374589233,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ET8Oo5vaTZqyb7rN"
diff --git a/packs/_source/items/armor/breastplate-3.json b/packs/_source/items/armor/breastplate-3.json
index eb8914284a..7a3fdb7ae4 100644
--- a/packs/_source/items/armor/breastplate-3.json
+++ b/packs/_source/items/armor/breastplate-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 24400,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233577,
- "modifiedTime": 1709659993223,
+ "modifiedTime": 1715374597056,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JDTO996oInbiZGHW"
diff --git a/packs/_source/items/armor/breastplate-armor-of-resistance.json b/packs/_source/items/armor/breastplate-armor-of-resistance.json
index f4d47752fd..99665da112 100644
--- a/packs/_source/items/armor/breastplate-armor-of-resistance.json
+++ b/packs/_source/items/armor/breastplate-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 6400,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233848,
- "modifiedTime": 1709659998662,
+ "modifiedTime": 1715374640108,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lccm5AjIk91aIHbi"
diff --git a/packs/_source/items/armor/breastplate.json b/packs/_source/items/armor/breastplate.json
index c9d6051836..5a0005e764 100644
--- a/packs/_source/items/armor/breastplate.json
+++ b/packs/_source/items/armor/breastplate.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 400,
"denomination": "gp"
@@ -107,14 +110,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -125,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233661,
- "modifiedTime": 1709659994695,
+ "modifiedTime": 1715374608834,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SK2HATQ4abKUlV8i"
diff --git a/packs/_source/items/armor/chain-mail-1.json b/packs/_source/items/armor/chain-mail-1.json
index e37dcfd359..d83942c17e 100644
--- a/packs/_source/items/armor/chain-mail-1.json
+++ b/packs/_source/items/armor/chain-mail-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 55,
+ "weight": {
+ "value": 55,
+ "units": "lb"
+ },
"price": {
"value": 1575,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233658,
- "modifiedTime": 1709659994588,
+ "modifiedTime": 1715374608295,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Rn9gt6JGULtx9Zvz"
diff --git a/packs/_source/items/armor/chain-mail-2.json b/packs/_source/items/armor/chain-mail-2.json
index ccabe0df4b..94fed22148 100644
--- a/packs/_source/items/armor/chain-mail-2.json
+++ b/packs/_source/items/armor/chain-mail-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 55,
+ "weight": {
+ "value": 55,
+ "units": "lb"
+ },
"price": {
"value": 6075,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233725,
- "modifiedTime": 1709659996747,
+ "modifiedTime": 1715374621751,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!akjpaK4TYkUZbGrN"
diff --git a/packs/_source/items/armor/chain-mail-3.json b/packs/_source/items/armor/chain-mail-3.json
index a010e979ee..61962bfc60 100644
--- a/packs/_source/items/armor/chain-mail-3.json
+++ b/packs/_source/items/armor/chain-mail-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 55,
+ "weight": {
+ "value": 55,
+ "units": "lb"
+ },
"price": {
"value": 24075,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233780,
- "modifiedTime": 1709659997571,
+ "modifiedTime": 1715374627039,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eHGbr3rqRRxdBPLq"
diff --git a/packs/_source/items/armor/chain-mail-armor-of-resistance.json b/packs/_source/items/armor/chain-mail-armor-of-resistance.json
index 259fa10eeb..44725906fc 100644
--- a/packs/_source/items/armor/chain-mail-armor-of-resistance.json
+++ b/packs/_source/items/armor/chain-mail-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 55,
+ "weight": {
+ "value": 55,
+ "units": "lb"
+ },
"price": {
"value": 6075,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233510,
- "modifiedTime": 1709659990900,
+ "modifiedTime": 1715374584566,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BQw5lyopqLmf8B6u"
diff --git a/packs/_source/items/armor/chain-mail.json b/packs/_source/items/armor/chain-mail.json
index 3533b50505..02547d884d 100644
--- a/packs/_source/items/armor/chain-mail.json
+++ b/packs/_source/items/armor/chain-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 55,
+ "weight": {
+ "value": 55,
+ "units": "lb"
+ },
"price": {
"value": 75,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233889,
- "modifiedTime": 1709659999270,
+ "modifiedTime": 1715374648798,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rLMflzmxpe8JGTOA"
diff --git a/packs/_source/items/armor/chain-shirt-1.json b/packs/_source/items/armor/chain-shirt-1.json
index 3a9521d0bd..8bd4439674 100644
--- a/packs/_source/items/armor/chain-shirt-1.json
+++ b/packs/_source/items/armor/chain-shirt-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 1550,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233626,
- "modifiedTime": 1709659993944,
+ "modifiedTime": 1715374601860,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!MSO3JxK8578xSh6x"
diff --git a/packs/_source/items/armor/chain-shirt-2.json b/packs/_source/items/armor/chain-shirt-2.json
index 444b6ff457..a71fed7fef 100644
--- a/packs/_source/items/armor/chain-shirt-2.json
+++ b/packs/_source/items/armor/chain-shirt-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 6050,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233546,
- "modifiedTime": 1709659991841,
+ "modifiedTime": 1715374591016,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FLoBS3UnFnZTSsSx"
diff --git a/packs/_source/items/armor/chain-shirt-3.json b/packs/_source/items/armor/chain-shirt-3.json
index ec9d44a9b6..40bece912b 100644
--- a/packs/_source/items/armor/chain-shirt-3.json
+++ b/packs/_source/items/armor/chain-shirt-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 24050,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233736,
- "modifiedTime": 1709659996962,
+ "modifiedTime": 1715374623965,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!cI0UhWUux8gIzSHn"
diff --git a/packs/_source/items/armor/chain-shirt-armor-of-resistance.json b/packs/_source/items/armor/chain-shirt-armor-of-resistance.json
index 7c4d2a0e77..b3b1325468 100644
--- a/packs/_source/items/armor/chain-shirt-armor-of-resistance.json
+++ b/packs/_source/items/armor/chain-shirt-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 6050,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233560,
- "modifiedTime": 1709659992804,
+ "modifiedTime": 1715374593708,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HF32aZSVw4P0MR4K"
diff --git a/packs/_source/items/armor/chain-shirt.json b/packs/_source/items/armor/chain-shirt.json
index 8c48266ece..f1b618c136 100644
--- a/packs/_source/items/armor/chain-shirt.json
+++ b/packs/_source/items/armor/chain-shirt.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -107,14 +110,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -125,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233873,
- "modifiedTime": 1709659999059,
+ "modifiedTime": 1715374645769,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!p2zChy24ZJdVqMSH"
diff --git a/packs/_source/items/armor/demon-armor.json b/packs/_source/items/armor/demon-armor.json
index 70b8d2ada4..4f8f466bf4 100644
--- a/packs/_source/items/armor/demon-armor.json
+++ b/packs/_source/items/armor/demon-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -115,14 +118,8 @@
"bonus": "1",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -133,10 +130,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233789,
- "modifiedTime": 1709659997670,
+ "modifiedTime": 1715374628801,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ejEt6hLQxOux04lS"
diff --git a/packs/_source/items/armor/dragon-scale-mail.json b/packs/_source/items/armor/dragon-scale-mail.json
index 2b19f6732c..e162ac51d3 100644
--- a/packs/_source/items/armor/dragon-scale-mail.json
+++ b/packs/_source/items/armor/dragon-scale-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233910,
- "modifiedTime": 1709659999588,
+ "modifiedTime": 1715374652493,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tIwoSAGJlcuyiwaQ"
diff --git a/packs/_source/items/armor/dwarven-plate.json b/packs/_source/items/armor/dwarven-plate.json
index 17b873f287..47af3e8aa6 100644
--- a/packs/_source/items/armor/dwarven-plate.json
+++ b/packs/_source/items/armor/dwarven-plate.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 9000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233641,
- "modifiedTime": 1709659994486,
+ "modifiedTime": 1715374604856,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!OwqRt1pVLhdMQa0d"
diff --git a/packs/_source/items/armor/elven-chain.json b/packs/_source/items/armor/elven-chain.json
index d5f9c857e6..ffd52c7af9 100644
--- a/packs/_source/items/armor/elven-chain.json
+++ b/packs/_source/items/armor/elven-chain.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233472,
- "modifiedTime": 1709659990164,
+ "modifiedTime": 1715374577148,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6067acDZGv7KNOkP"
diff --git a/packs/_source/items/armor/glamoured-studded-leather.json b/packs/_source/items/armor/glamoured-studded-leather.json
index 6cea807739..5d9373a862 100644
--- a/packs/_source/items/armor/glamoured-studded-leather.json
+++ b/packs/_source/items/armor/glamoured-studded-leather.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 13,
+ "weight": {
+ "value": 13,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233668,
- "modifiedTime": 1709659994937,
+ "modifiedTime": 1715374609895,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SypSoinJkES0o5FB"
diff --git a/packs/_source/items/armor/half-plate-armor-1.json b/packs/_source/items/armor/half-plate-armor-1.json
index c456908610..7cfc7c1be2 100644
--- a/packs/_source/items/armor/half-plate-armor-1.json
+++ b/packs/_source/items/armor/half-plate-armor-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 2250,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233743,
- "modifiedTime": 1709659997269,
+ "modifiedTime": 1715374625266,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dOZkW5MwvsMhnd08"
diff --git a/packs/_source/items/armor/half-plate-armor-2.json b/packs/_source/items/armor/half-plate-armor-2.json
index 3ef9173cae..58744bd73b 100644
--- a/packs/_source/items/armor/half-plate-armor-2.json
+++ b/packs/_source/items/armor/half-plate-armor-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 6750,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233705,
- "modifiedTime": 1709659996247,
+ "modifiedTime": 1715374617707,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YFarUKR3OrM5raf5"
diff --git a/packs/_source/items/armor/half-plate-armor-3.json b/packs/_source/items/armor/half-plate-armor-3.json
index 16b377faee..ee170e19fd 100644
--- a/packs/_source/items/armor/half-plate-armor-3.json
+++ b/packs/_source/items/armor/half-plate-armor-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 24750,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233966,
- "modifiedTime": 1709660000106,
+ "modifiedTime": 1715374658334,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xbVpKtrQ6tJsPhXX"
diff --git a/packs/_source/items/armor/half-plate-armor-of-resistance.json b/packs/_source/items/armor/half-plate-armor-of-resistance.json
index e5aa42f53e..d8d81cef77 100644
--- a/packs/_source/items/armor/half-plate-armor-of-resistance.json
+++ b/packs/_source/items/armor/half-plate-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 6750,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233845,
- "modifiedTime": 1709659998566,
+ "modifiedTime": 1715374639620,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lN1VbnGFo3HNZXNb"
diff --git a/packs/_source/items/armor/half-plate-armor.json b/packs/_source/items/armor/half-plate-armor.json
index 0e927c7649..fa49a36c87 100644
--- a/packs/_source/items/armor/half-plate-armor.json
+++ b/packs/_source/items/armor/half-plate-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 750,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233954,
- "modifiedTime": 1709659999995,
+ "modifiedTime": 1715374655724,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!vsgmACFYINloIdPm"
diff --git a/packs/_source/items/armor/hide-armor-1.json b/packs/_source/items/armor/hide-armor-1.json
index 8dee7d62ed..e38a080686 100644
--- a/packs/_source/items/armor/hide-armor-1.json
+++ b/packs/_source/items/armor/hide-armor-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 12,
+ "weight": {
+ "value": 12,
+ "units": "lb"
+ },
"price": {
"value": 1510,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233834,
- "modifiedTime": 1709659998265,
+ "modifiedTime": 1715374637163,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!k2B9P3gm2NGjJ1m0"
diff --git a/packs/_source/items/armor/hide-armor-2.json b/packs/_source/items/armor/hide-armor-2.json
index a665f8e6aa..eef6aecb1a 100644
--- a/packs/_source/items/armor/hide-armor-2.json
+++ b/packs/_source/items/armor/hide-armor-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 12,
+ "weight": {
+ "value": 12,
+ "units": "lb"
+ },
"price": {
"value": 6010,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233699,
- "modifiedTime": 1709659995945,
+ "modifiedTime": 1715374616408,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XJFqU9COdk4ycFa2"
diff --git a/packs/_source/items/armor/hide-armor-3.json b/packs/_source/items/armor/hide-armor-3.json
index 927d35d187..2e8f04395b 100644
--- a/packs/_source/items/armor/hide-armor-3.json
+++ b/packs/_source/items/armor/hide-armor-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 12,
+ "weight": {
+ "value": 12,
+ "units": "lb"
+ },
"price": {
"value": 24010,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233573,
- "modifiedTime": 1709659993129,
+ "modifiedTime": 1715374596211,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IeM5Ha2cg0RA99q3"
diff --git a/packs/_source/items/armor/hide-armor-of-resistance.json b/packs/_source/items/armor/hide-armor-of-resistance.json
index a93b9efbc9..953ea87045 100644
--- a/packs/_source/items/armor/hide-armor-of-resistance.json
+++ b/packs/_source/items/armor/hide-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 12,
+ "weight": {
+ "value": 12,
+ "units": "lb"
+ },
"price": {
"value": 6010,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233685,
- "modifiedTime": 1709659995337,
+ "modifiedTime": 1715374613550,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VRT5GEusTFstOZdF"
diff --git a/packs/_source/items/armor/hide-armor.json b/packs/_source/items/armor/hide-armor.json
index e3102a1553..9067890588 100644
--- a/packs/_source/items/armor/hide-armor.json
+++ b/packs/_source/items/armor/hide-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 12,
+ "weight": {
+ "value": 12,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -107,14 +110,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -125,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233857,
- "modifiedTime": 1709659998759,
+ "modifiedTime": 1715374642227,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!n1V07puo0RQxPGuF"
diff --git a/packs/_source/items/armor/leather-armor-1.json b/packs/_source/items/armor/leather-armor-1.json
index c098ad28b6..a47580e76a 100644
--- a/packs/_source/items/armor/leather-armor-1.json
+++ b/packs/_source/items/armor/leather-armor-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 1510,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233745,
- "modifiedTime": 1709659997475,
+ "modifiedTime": 1715374625817,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dXtZxlh2VKLCo1nA"
diff --git a/packs/_source/items/armor/leather-armor-2.json b/packs/_source/items/armor/leather-armor-2.json
index 2040784051..a6fda4a02c 100644
--- a/packs/_source/items/armor/leather-armor-2.json
+++ b/packs/_source/items/armor/leather-armor-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 6010,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233678,
- "modifiedTime": 1709659995148,
+ "modifiedTime": 1715374612084,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UT8zCwmdXVQlBiyl"
diff --git a/packs/_source/items/armor/leather-armor-3.json b/packs/_source/items/armor/leather-armor-3.json
index 325537d9a8..a2412850d0 100644
--- a/packs/_source/items/armor/leather-armor-3.json
+++ b/packs/_source/items/armor/leather-armor-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 24010,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233719,
- "modifiedTime": 1709659996532,
+ "modifiedTime": 1715374620369,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZwFCZDgQljlidzns"
diff --git a/packs/_source/items/armor/leather-armor-of-resistance.json b/packs/_source/items/armor/leather-armor-of-resistance.json
index f54cc75986..0ee3ad784e 100644
--- a/packs/_source/items/armor/leather-armor-of-resistance.json
+++ b/packs/_source/items/armor/leather-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 6010,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233744,
- "modifiedTime": 1709659997370,
+ "modifiedTime": 1715374625590,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dRtb9Tg34NKX9mGF"
diff --git a/packs/_source/items/armor/leather-armor.json b/packs/_source/items/armor/leather-armor.json
index 23c442cce5..6ad6701b51 100644
--- a/packs/_source/items/armor/leather-armor.json
+++ b/packs/_source/items/armor/leather-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -107,14 +110,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -125,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233695,
- "modifiedTime": 1709659995834,
+ "modifiedTime": 1715374615576,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WwdpHLXGX5r8uZu5"
diff --git a/packs/_source/items/armor/mithral-breastplate.json b/packs/_source/items/armor/mithral-breastplate.json
index 03a0ae7a1c..d5dfafeddf 100644
--- a/packs/_source/items/armor/mithral-breastplate.json
+++ b/packs/_source/items/armor/mithral-breastplate.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 1200,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233519,
- "modifiedTime": 1709659991262,
+ "modifiedTime": 1715374586246,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CcTGZzQHejxEVLK1"
diff --git a/packs/_source/items/armor/mithral-chain-mail.json b/packs/_source/items/armor/mithral-chain-mail.json
index bd31411933..9e779420b1 100644
--- a/packs/_source/items/armor/mithral-chain-mail.json
+++ b/packs/_source/items/armor/mithral-chain-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 55,
+ "weight": {
+ "value": 55,
+ "units": "lb"
+ },
"price": {
"value": 875,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233706,
- "modifiedTime": 1709659996342,
+ "modifiedTime": 1715374618231,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YS9CRHg2yQlOVi3j"
diff --git a/packs/_source/items/armor/mithral-chain-shirt.json b/packs/_source/items/armor/mithral-chain-shirt.json
index c8f067dd93..0ecd0f4310 100644
--- a/packs/_source/items/armor/mithral-chain-shirt.json
+++ b/packs/_source/items/armor/mithral-chain-shirt.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 850,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233459,
- "modifiedTime": 1709659989817,
+ "modifiedTime": 1715374574746,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3h3ZU6qmQs18FfkA"
diff --git a/packs/_source/items/armor/mithral-half-plate-armor.json b/packs/_source/items/armor/mithral-half-plate-armor.json
index 9edf3387a8..53a55f657c 100644
--- a/packs/_source/items/armor/mithral-half-plate-armor.json
+++ b/packs/_source/items/armor/mithral-half-plate-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 1550,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233882,
- "modifiedTime": 1709659999164,
+ "modifiedTime": 1715374647423,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qRMQH8lRE42JkugE"
diff --git a/packs/_source/items/armor/mithral-plate-armor.json b/packs/_source/items/armor/mithral-plate-armor.json
index 20b57b2925..94b43e6ab5 100644
--- a/packs/_source/items/armor/mithral-plate-armor.json
+++ b/packs/_source/items/armor/mithral-plate-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 2300,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233562,
- "modifiedTime": 1709659992924,
+ "modifiedTime": 1715374594116,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HVpXIU0zZw0a4Fb7"
diff --git a/packs/_source/items/armor/mithral-ring-mail.json b/packs/_source/items/armor/mithral-ring-mail.json
index 686e37c7df..a4efc79f76 100644
--- a/packs/_source/items/armor/mithral-ring-mail.json
+++ b/packs/_source/items/armor/mithral-ring-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 830,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233911,
- "modifiedTime": 1709659999707,
+ "modifiedTime": 1715374652609,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tJQXAJx92wL6GM1v"
diff --git a/packs/_source/items/armor/mithral-scale-mail.json b/packs/_source/items/armor/mithral-scale-mail.json
index d89408434f..4a853b1dee 100644
--- a/packs/_source/items/armor/mithral-scale-mail.json
+++ b/packs/_source/items/armor/mithral-scale-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 850,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233822,
- "modifiedTime": 1709659998162,
+ "modifiedTime": 1715374635048,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!iRDmig2qZ7LdP0ug"
diff --git a/packs/_source/items/armor/mithral-splint-armor.json b/packs/_source/items/armor/mithral-splint-armor.json
index a311cfb178..3542088a8e 100644
--- a/packs/_source/items/armor/mithral-splint-armor.json
+++ b/packs/_source/items/armor/mithral-splint-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 60,
+ "weight": {
+ "value": 60,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233555,
- "modifiedTime": 1709659992432,
+ "modifiedTime": 1715374592859,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!GKQSxYvS3m9qKVac"
diff --git a/packs/_source/items/armor/padded-armor-1.json b/packs/_source/items/armor/padded-armor-1.json
index 7480fd6a62..9277b900f3 100644
--- a/packs/_source/items/armor/padded-armor-1.json
+++ b/packs/_source/items/armor/padded-armor-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 1505,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233915,
- "modifiedTime": 1709659999805,
+ "modifiedTime": 1715374653423,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!twRJhPtDQe1HceFt"
diff --git a/packs/_source/items/armor/padded-armor-2.json b/packs/_source/items/armor/padded-armor-2.json
index ec50d37d53..8448abeefa 100644
--- a/packs/_source/items/armor/padded-armor-2.json
+++ b/packs/_source/items/armor/padded-armor-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 6005,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233554,
- "modifiedTime": 1709659992246,
+ "modifiedTime": 1715374592649,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!G9XQPNLlDXkpVxn1"
diff --git a/packs/_source/items/armor/padded-armor-3.json b/packs/_source/items/armor/padded-armor-3.json
index 1f0b69491a..bb70b8f6d9 100644
--- a/packs/_source/items/armor/padded-armor-3.json
+++ b/packs/_source/items/armor/padded-armor-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 24005,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233700,
- "modifiedTime": 1709659996039,
+ "modifiedTime": 1715374616516,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XKnDE8DTrJxIkVCF"
diff --git a/packs/_source/items/armor/padded-armor-of-resistance.json b/packs/_source/items/armor/padded-armor-of-resistance.json
index 270be90a4d..c389fb6231 100644
--- a/packs/_source/items/armor/padded-armor-of-resistance.json
+++ b/packs/_source/items/armor/padded-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 6005,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233475,
- "modifiedTime": 1709659990341,
+ "modifiedTime": 1715374577574,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!698gLyJ4JKVVMF53"
diff --git a/packs/_source/items/armor/padded-armor.json b/packs/_source/items/armor/padded-armor.json
index 0a9d1572ac..fb48517b6a 100644
--- a/packs/_source/items/armor/padded-armor.json
+++ b/packs/_source/items/armor/padded-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233558,
- "modifiedTime": 1709659992617,
+ "modifiedTime": 1715374593383,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!GtKV1b5uqFQqpEni"
diff --git a/packs/_source/items/armor/plate-armor-1.json b/packs/_source/items/armor/plate-armor-1.json
index 937f6c6b9c..483e318b7b 100644
--- a/packs/_source/items/armor/plate-armor-1.json
+++ b/packs/_source/items/armor/plate-armor-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233797,
- "modifiedTime": 1709659998067,
+ "modifiedTime": 1715374630165,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fStHPOhuJvwEjzQh"
diff --git a/packs/_source/items/armor/plate-armor-2.json b/packs/_source/items/armor/plate-armor-2.json
index bafa382761..c9eef41c12 100644
--- a/packs/_source/items/armor/plate-armor-2.json
+++ b/packs/_source/items/armor/plate-armor-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 7500,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233686,
- "modifiedTime": 1709659995436,
+ "modifiedTime": 1715374613656,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VTc5McIjCm40KPIz"
diff --git a/packs/_source/items/armor/plate-armor-3.json b/packs/_source/items/armor/plate-armor-3.json
index 420c3ad5c8..646c26ffa3 100644
--- a/packs/_source/items/armor/plate-armor-3.json
+++ b/packs/_source/items/armor/plate-armor-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 25500,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233462,
- "modifiedTime": 1709659989990,
+ "modifiedTime": 1715374575481,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!466j8hy4AiENMHVQ"
diff --git a/packs/_source/items/armor/plate-armor-of-etherealness.json b/packs/_source/items/armor/plate-armor-of-etherealness.json
index 0889d1bb5d..3caa3f528b 100644
--- a/packs/_source/items/armor/plate-armor-of-etherealness.json
+++ b/packs/_source/items/armor/plate-armor-of-etherealness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 48000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233742,
- "modifiedTime": 1709659997173,
+ "modifiedTime": 1715374625156,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dJjdWdaZU30r1zx4"
diff --git a/packs/_source/items/armor/plate-armor-of-resistance.json b/packs/_source/items/armor/plate-armor-of-resistance.json
index 1643d29700..209f321524 100644
--- a/packs/_source/items/armor/plate-armor-of-resistance.json
+++ b/packs/_source/items/armor/plate-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 7500,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233727,
- "modifiedTime": 1709659996855,
+ "modifiedTime": 1715374622156,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!azxwKFHrNmG3HpVy"
diff --git a/packs/_source/items/armor/plate-armor.json b/packs/_source/items/armor/plate-armor.json
index 04a8f26e7d..177f3709a9 100644
--- a/packs/_source/items/armor/plate-armor.json
+++ b/packs/_source/items/armor/plate-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 65,
+ "weight": {
+ "value": 65,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233639,
- "modifiedTime": 1709659994381,
+ "modifiedTime": 1715374604525,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!OjkIqlW2UpgFcjZa"
diff --git a/packs/_source/items/armor/ring-mail-1.json b/packs/_source/items/armor/ring-mail-1.json
index 96a2f53ee9..c384d6e24c 100644
--- a/packs/_source/items/armor/ring-mail-1.json
+++ b/packs/_source/items/armor/ring-mail-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 1530,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233631,
- "modifiedTime": 1709659994159,
+ "modifiedTime": 1715374602933,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NM1dPyKwHw2DyUWA"
diff --git a/packs/_source/items/armor/ring-mail-2.json b/packs/_source/items/armor/ring-mail-2.json
index e00ca0d680..75242c3b25 100644
--- a/packs/_source/items/armor/ring-mail-2.json
+++ b/packs/_source/items/armor/ring-mail-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 6030,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233621,
- "modifiedTime": 1709659993731,
+ "modifiedTime": 1715374600689,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!M28HYDCueaK7J8u8"
diff --git a/packs/_source/items/armor/ring-mail-3.json b/packs/_source/items/armor/ring-mail-3.json
index 4bd484a51b..da7ec16cd6 100644
--- a/packs/_source/items/armor/ring-mail-3.json
+++ b/packs/_source/items/armor/ring-mail-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 24030,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233612,
- "modifiedTime": 1709659993438,
+ "modifiedTime": 1715374598679,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KhRhwADrTpol3yTx"
diff --git a/packs/_source/items/armor/ring-mail-armor-of-resistance.json b/packs/_source/items/armor/ring-mail-armor-of-resistance.json
index 5f6d4399a0..6a9b81410e 100644
--- a/packs/_source/items/armor/ring-mail-armor-of-resistance.json
+++ b/packs/_source/items/armor/ring-mail-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 6030,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233694,
- "modifiedTime": 1709659995734,
+ "modifiedTime": 1715374615367,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Wo2Dkh191C4VmLmg"
diff --git a/packs/_source/items/armor/ring-mail.json b/packs/_source/items/armor/ring-mail.json
index e1351125e5..ab7f40069d 100644
--- a/packs/_source/items/armor/ring-mail.json
+++ b/packs/_source/items/armor/ring-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 30,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233865,
- "modifiedTime": 1709659998955,
+ "modifiedTime": 1715374643845,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nsXZejlmgalj4he9"
diff --git a/packs/_source/items/armor/scale-mail-1.json b/packs/_source/items/armor/scale-mail-1.json
index 1c9c7eee4a..92891c0966 100644
--- a/packs/_source/items/armor/scale-mail-1.json
+++ b/packs/_source/items/armor/scale-mail-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 1550,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233721,
- "modifiedTime": 1709659996640,
+ "modifiedTime": 1715374620907,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aDEAwKwttl35dWaB"
diff --git a/packs/_source/items/armor/scale-mail-2.json b/packs/_source/items/armor/scale-mail-2.json
index a096ec7822..239d9f6ada 100644
--- a/packs/_source/items/armor/scale-mail-2.json
+++ b/packs/_source/items/armor/scale-mail-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 6050,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233797,
- "modifiedTime": 1709659997961,
+ "modifiedTime": 1715374630050,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fO1PuSOtZWLzEHqu"
diff --git a/packs/_source/items/armor/scale-mail-3.json b/packs/_source/items/armor/scale-mail-3.json
index c5b0a92e8a..67aab16a42 100644
--- a/packs/_source/items/armor/scale-mail-3.json
+++ b/packs/_source/items/armor/scale-mail-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 24050,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233504,
- "modifiedTime": 1709659990705,
+ "modifiedTime": 1715374583497,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9uT9SXy1Gb1jiiZX"
diff --git a/packs/_source/items/armor/scale-mail-armor-of-resistance.json b/packs/_source/items/armor/scale-mail-armor-of-resistance.json
index 78f47a11e3..2bb78bb1f9 100644
--- a/packs/_source/items/armor/scale-mail-armor-of-resistance.json
+++ b/packs/_source/items/armor/scale-mail-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 6050,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233792,
- "modifiedTime": 1709659997867,
+ "modifiedTime": 1715374629242,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!f0I81P9k29Q1lV4S"
diff --git a/packs/_source/items/armor/scale-mail.json b/packs/_source/items/armor/scale-mail.json
index 2daf7bc66b..50aa09748b 100644
--- a/packs/_source/items/armor/scale-mail.json
+++ b/packs/_source/items/armor/scale-mail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 45,
+ "weight": {
+ "value": 45,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233703,
- "modifiedTime": 1709659996153,
+ "modifiedTime": 1715374617299,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XmnlF5fgIO3tg6TG"
diff --git a/packs/_source/items/armor/shield-1.json b/packs/_source/items/armor/shield-1.json
index 738689610d..873e543f48 100644
--- a/packs/_source/items/armor/shield-1.json
+++ b/packs/_source/items/armor/shield-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233633,
- "modifiedTime": 1709659994265,
+ "modifiedTime": 1715374603372,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NgwrqNa6kkgoPW2Q"
diff --git a/packs/_source/items/armor/shield-2.json b/packs/_source/items/armor/shield-2.json
index 28fa2b99e1..84ef41ecd4 100644
--- a/packs/_source/items/armor/shield-2.json
+++ b/packs/_source/items/armor/shield-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233970,
- "modifiedTime": 1709660000196,
+ "modifiedTime": 1715374659192,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xzZQIIxXjNJwNqnp"
diff --git a/packs/_source/items/armor/shield-3.json b/packs/_source/items/armor/shield-3.json
index af263812f8..d83bcf3d2e 100644
--- a/packs/_source/items/armor/shield-3.json
+++ b/packs/_source/items/armor/shield-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233692,
- "modifiedTime": 1709659995635,
+ "modifiedTime": 1715374614932,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WfqBg3yBNoJQtVEB"
diff --git a/packs/_source/items/armor/shield-of-missile-attraction.json b/packs/_source/items/armor/shield-of-missile-attraction.json
index f39c1cdef0..78f5dd8232 100644
--- a/packs/_source/items/armor/shield-of-missile-attraction.json
+++ b/packs/_source/items/armor/shield-of-missile-attraction.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233622,
- "modifiedTime": 1709659993841,
+ "modifiedTime": 1715374600804,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!M5APnDW8bKQb7fHI"
diff --git a/packs/_source/items/armor/shield.json b/packs/_source/items/armor/shield.json
index c3f9873ac6..6ad9436af8 100644
--- a/packs/_source/items/armor/shield.json
+++ b/packs/_source/items/armor/shield.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -107,14 +110,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -125,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233897,
- "modifiedTime": 1709659999482,
+ "modifiedTime": 1715374650424,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sSs3hSzkKBMNBgTs"
diff --git a/packs/_source/items/armor/spellguard-shield.json b/packs/_source/items/armor/spellguard-shield.json
index eb29e93f10..2c8d3e9d52 100644
--- a/packs/_source/items/armor/spellguard-shield.json
+++ b/packs/_source/items/armor/spellguard-shield.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 50000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233840,
- "modifiedTime": 1709659998466,
+ "modifiedTime": 1715374638463,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kpDbCYgUivh7NApp"
diff --git a/packs/_source/items/armor/splint-armor-1.json b/packs/_source/items/armor/splint-armor-1.json
index f14e7f1115..d5edbb4064 100644
--- a/packs/_source/items/armor/splint-armor-1.json
+++ b/packs/_source/items/armor/splint-armor-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 60,
+ "weight": {
+ "value": 60,
+ "units": "lb"
+ },
"price": {
"value": 1700,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233568,
- "modifiedTime": 1709659993028,
+ "modifiedTime": 1715374595199,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HpEEfZg9PRkXnMi4"
diff --git a/packs/_source/items/armor/splint-armor-2.json b/packs/_source/items/armor/splint-armor-2.json
index 844184d9af..106ad173d5 100644
--- a/packs/_source/items/armor/splint-armor-2.json
+++ b/packs/_source/items/armor/splint-armor-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 60,
+ "weight": {
+ "value": 60,
+ "units": "lb"
+ },
"price": {
"value": 6200,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233977,
- "modifiedTime": 1709660000300,
+ "modifiedTime": 1715374660719,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zIpNJyuOxp2raizE"
diff --git a/packs/_source/items/armor/splint-armor-3.json b/packs/_source/items/armor/splint-armor-3.json
index d78013e034..a977722b82 100644
--- a/packs/_source/items/armor/splint-armor-3.json
+++ b/packs/_source/items/armor/splint-armor-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 60,
+ "weight": {
+ "value": 60,
+ "units": "lb"
+ },
"price": {
"value": 24200,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233514,
- "modifiedTime": 1709659991082,
+ "modifiedTime": 1715374585373,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BwC8hZaNjO7IQc6K"
diff --git a/packs/_source/items/armor/splint-armor-of-resistance.json b/packs/_source/items/armor/splint-armor-of-resistance.json
index 3cb3e16002..d23d4f46a6 100644
--- a/packs/_source/items/armor/splint-armor-of-resistance.json
+++ b/packs/_source/items/armor/splint-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 60,
+ "weight": {
+ "value": 60,
+ "units": "lb"
+ },
"price": {
"value": 6200,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233578,
- "modifiedTime": 1709659993330,
+ "modifiedTime": 1715374597277,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JNkjtTxYmEC7W34O"
diff --git a/packs/_source/items/armor/splint-armor.json b/packs/_source/items/armor/splint-armor.json
index ea7466fa61..4dde534c99 100644
--- a/packs/_source/items/armor/splint-armor.json
+++ b/packs/_source/items/armor/splint-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 60,
+ "weight": {
+ "value": 60,
+ "units": "lb"
+ },
"price": {
"value": 200,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233736,
- "modifiedTime": 1709659997068,
+ "modifiedTime": 1715374624059,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!cKpJmsJmU8YaiuqG"
diff --git a/packs/_source/items/armor/studded-leather-armor-1.json b/packs/_source/items/armor/studded-leather-armor-1.json
index 8c83c177eb..9f41825dd0 100644
--- a/packs/_source/items/armor/studded-leather-armor-1.json
+++ b/packs/_source/items/armor/studded-leather-armor-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 13,
+ "weight": {
+ "value": 13,
+ "units": "lb"
+ },
"price": {
"value": 1545,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233662,
- "modifiedTime": 1709659994824,
+ "modifiedTime": 1715374608932,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!STxsp9Ao3pS2T4gt"
diff --git a/packs/_source/items/armor/studded-leather-armor-2.json b/packs/_source/items/armor/studded-leather-armor-2.json
index f77ba79090..d1b1225bc4 100644
--- a/packs/_source/items/armor/studded-leather-armor-2.json
+++ b/packs/_source/items/armor/studded-leather-armor-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 13,
+ "weight": {
+ "value": 13,
+ "units": "lb"
+ },
"price": {
"value": 6045,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233547,
- "modifiedTime": 1709659992038,
+ "modifiedTime": 1715374591119,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FZixEM5voQkH84xP"
diff --git a/packs/_source/items/armor/studded-leather-armor-3.json b/packs/_source/items/armor/studded-leather-armor-3.json
index c29eedab53..34cf6eb185 100644
--- a/packs/_source/items/armor/studded-leather-armor-3.json
+++ b/packs/_source/items/armor/studded-leather-armor-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 13,
+ "weight": {
+ "value": 13,
+ "units": "lb"
+ },
"price": {
"value": 24045,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233431,
- "modifiedTime": 1709659989461,
+ "modifiedTime": 1715374569287,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!00BggOkChWztQx6R"
diff --git a/packs/_source/items/armor/studded-leather-armor-of-resistance.json b/packs/_source/items/armor/studded-leather-armor-of-resistance.json
index f7510cb265..1ed4e50de0 100644
--- a/packs/_source/items/armor/studded-leather-armor-of-resistance.json
+++ b/packs/_source/items/armor/studded-leather-armor-of-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 13,
+ "weight": {
+ "value": 13,
+ "units": "lb"
+ },
"price": {
"value": 6045,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233688,
- "modifiedTime": 1709659995542,
+ "modifiedTime": 1715374614073,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!W1kDsFekjroIywuz"
diff --git a/packs/_source/items/armor/studded-leather-armor.json b/packs/_source/items/armor/studded-leather-armor.json
index dce186b71f..3f581011bf 100644
--- a/packs/_source/items/armor/studded-leather-armor.json
+++ b/packs/_source/items/armor/studded-leather-armor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 13,
+ "weight": {
+ "value": 13,
+ "units": "lb"
+ },
"price": {
"value": 45,
"denomination": "gp"
@@ -107,14 +110,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "JqTP017wj3uxDJ8g",
@@ -125,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233668,
- "modifiedTime": 1709659995045,
+ "modifiedTime": 1715374610093,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TIV3B1vbrVHIhQAm"
diff --git a/packs/_source/items/container/alms-box/_container.json b/packs/_source/items/container/alms-box/_container.json
index f48d604dd8..ec06f5788d 100644
--- a/packs/_source/items/container/alms-box/_container.json
+++ b/packs/_source/items/container/alms-box/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233802,
- "modifiedTime": 1704823158264,
+ "modifiedTime": 1715374631144,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!g8fQZ1WyTz2bTtvA"
diff --git a/packs/_source/items/container/backpack/_container.json b/packs/_source/items/container/backpack/_container.json
index 9a43475619..cfd327acaa 100644
--- a/packs/_source/items/container/backpack/_container.json
+++ b/packs/_source/items/container/backpack/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1704823147521,
+ "modifiedTime": 1715374593611,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!H8YCd689ezlD26aT"
diff --git a/packs/_source/items/container/bag-of-devouring/_container.json b/packs/_source/items/container/bag-of-devouring/_container.json
index 28b18f8d7b..e1ba43350a 100644
--- a/packs/_source/items/container/bag-of-devouring/_container.json
+++ b/packs/_source/items/container/bag-of-devouring/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 15,
+ "weight": {
+ "value": 15,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -53,10 +56,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233705,
- "modifiedTime": 1707244343227,
+ "modifiedTime": 1715374617823,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YG9QW0flem4SLL6A"
diff --git a/packs/_source/items/container/bag-of-holding/_container.json b/packs/_source/items/container/bag-of-holding/_container.json
index b77123c2c3..d75e5ed6d8 100644
--- a/packs/_source/items/container/bag-of-holding/_container.json
+++ b/packs/_source/items/container/bag-of-holding/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 15,
+ "weight": {
+ "value": 15,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -53,10 +56,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233722,
- "modifiedTime": 1707055844473,
+ "modifiedTime": 1715374621027,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aDHRuUs29SrumWfq"
diff --git a/packs/_source/items/container/barrel/_container.json b/packs/_source/items/container/barrel/_container.json
index 3f89c85002..ed5b10e1f1 100644
--- a/packs/_source/items/container/barrel/_container.json
+++ b/packs/_source/items/container/barrel/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 70,
+ "weight": {
+ "value": 70,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233482,
- "modifiedTime": 1704823143272,
+ "modifiedTime": 1715374579356,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7Yqbqg5EtVW16wfT"
diff --git a/packs/_source/items/container/basket/_container.json b/packs/_source/items/container/basket/_container.json
index b118dab3a0..7712ef1972 100644
--- a/packs/_source/items/container/basket/_container.json
+++ b/packs/_source/items/container/basket/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4,
"denomination": "sp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233694,
- "modifiedTime": 1704823153794,
+ "modifiedTime": 1715374615487,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Wv7HzD6dv1P0q78N"
diff --git a/packs/_source/items/container/bucket/_container.json b/packs/_source/items/container/bucket/_container.json
index b6aafc2951..9a7d380f77 100644
--- a/packs/_source/items/container/bucket/_container.json
+++ b/packs/_source/items/container/bucket/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233853,
- "modifiedTime": 1704823161242,
+ "modifiedTime": 1715374641487,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mQVYcHmMSoCUnBnM"
diff --git a/packs/_source/items/container/chest/_container.json b/packs/_source/items/container/chest/_container.json
index 4bdefe50da..b9c8ee0cf7 100644
--- a/packs/_source/items/container/chest/_container.json
+++ b/packs/_source/items/container/chest/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 25,
+ "weight": {
+ "value": 25,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233447,
- "modifiedTime": 1704823141147,
+ "modifiedTime": 1715374572558,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2YbuclKfhDL0bU4u"
diff --git a/packs/_source/items/container/component-pouch/_container.json b/packs/_source/items/container/component-pouch/_container.json
index 1dba483502..ce205e4844 100644
--- a/packs/_source/items/container/component-pouch/_container.json
+++ b/packs/_source/items/container/component-pouch/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233786,
- "modifiedTime": 1704823157423,
+ "modifiedTime": 1715374628308,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eZGmdOhaTWMicXPW"
diff --git a/packs/_source/items/container/crossbow-bolt-case/_container.json b/packs/_source/items/container/crossbow-bolt-case/_container.json
index 1165f3613b..3e14cf2e30 100644
--- a/packs/_source/items/container/crossbow-bolt-case/_container.json
+++ b/packs/_source/items/container/crossbow-bolt-case/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233781,
- "modifiedTime": 1704823157155,
+ "modifiedTime": 1715374627360,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eJtPBiZtr2pp6ynt"
diff --git a/packs/_source/items/container/efficient-quiver/_container.json b/packs/_source/items/container/efficient-quiver/_container.json
index 305f123ab7..811760b288 100644
--- a/packs/_source/items/container/efficient-quiver/_container.json
+++ b/packs/_source/items/container/efficient-quiver/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -53,10 +56,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233625,
- "modifiedTime": 1707055842357,
+ "modifiedTime": 1715374601583,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!MLNzQUsVUi0PEV3i"
diff --git a/packs/_source/items/container/flask/_container.json b/packs/_source/items/container/flask/_container.json
index 72fdb95d69..5a419bde95 100644
--- a/packs/_source/items/container/flask/_container.json
+++ b/packs/_source/items/container/flask/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -52,10 +55,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233844,
- "modifiedTime": 1704823160657,
+ "modifiedTime": 1715374639416,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lHS63sC6bypENNlR"
diff --git a/packs/_source/items/container/glass-bottle/_container.json b/packs/_source/items/container/glass-bottle/_container.json
index 72cca0f9dc..c5b8ad8b7d 100644
--- a/packs/_source/items/container/glass-bottle/_container.json
+++ b/packs/_source/items/container/glass-bottle/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233563,
- "modifiedTime": 1704823147741,
+ "modifiedTime": 1715374594355,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HZp69hhyNZUUCipF"
diff --git a/packs/_source/items/container/handy-haversack/_container.json b/packs/_source/items/container/handy-haversack/_container.json
index 3e21985c52..fbb9bf80af 100644
--- a/packs/_source/items/container/handy-haversack/_container.json
+++ b/packs/_source/items/container/handy-haversack/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -53,10 +56,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233485,
- "modifiedTime": 1707055839724,
+ "modifiedTime": 1715374579737,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7vqs5AqI4VCmuszx"
diff --git a/packs/_source/items/container/iron-pot/_container.json b/packs/_source/items/container/iron-pot/_container.json
index 8a074fbafc..0ed744adf7 100644
--- a/packs/_source/items/container/iron-pot/_container.json
+++ b/packs/_source/items/container/iron-pot/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233623,
- "modifiedTime": 1704823149722,
+ "modifiedTime": 1715374601054,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!M8xM8BLK4tpUayEE"
diff --git a/packs/_source/items/container/jug/_container.json b/packs/_source/items/container/jug/_container.json
index 3855240796..2840e1aab9 100644
--- a/packs/_source/items/container/jug/_container.json
+++ b/packs/_source/items/container/jug/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233435,
- "modifiedTime": 1704823140333,
+ "modifiedTime": 1715374570037,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!0ZBWwjFz3nIAXMLW"
diff --git a/packs/_source/items/container/map-or-scroll-case/_container.json b/packs/_source/items/container/map-or-scroll-case/_container.json
index af68e56a63..268e48c0bb 100644
--- a/packs/_source/items/container/map-or-scroll-case/_container.json
+++ b/packs/_source/items/container/map-or-scroll-case/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233472,
- "modifiedTime": 1704823142548,
+ "modifiedTime": 1715374577046,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5mIeX824uMklU3xq"
diff --git a/packs/_source/items/container/pitcher/_container.json b/packs/_source/items/container/pitcher/_container.json
index b0d533c1d1..dbb5d78462 100644
--- a/packs/_source/items/container/pitcher/_container.json
+++ b/packs/_source/items/container/pitcher/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233861,
- "modifiedTime": 1704823161674,
+ "modifiedTime": 1715374642999,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nXWdGtzi8DXDLLsL"
diff --git a/packs/_source/items/container/pouch/_container.json b/packs/_source/items/container/pouch/_container.json
index 49cb72fd1b..d5e7770be5 100644
--- a/packs/_source/items/container/pouch/_container.json
+++ b/packs/_source/items/container/pouch/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233499,
- "modifiedTime": 1704823144246,
+ "modifiedTime": 1715374582594,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9bWTRRDym06PzSAf"
diff --git a/packs/_source/items/container/quiver/_container.json b/packs/_source/items/container/quiver/_container.json
index 07f408883e..86e8bc20d8 100644
--- a/packs/_source/items/container/quiver/_container.json
+++ b/packs/_source/items/container/quiver/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233465,
- "modifiedTime": 1704823142206,
+ "modifiedTime": 1715374575893,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!4MtQKPn9qMWCFjDA"
diff --git a/packs/_source/items/container/sack/_container.json b/packs/_source/items/container/sack/_container.json
index 02f6dc0bd5..90ecf5e235 100644
--- a/packs/_source/items/container/sack/_container.json
+++ b/packs/_source/items/container/sack/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233516,
- "modifiedTime": 1704823145304,
+ "modifiedTime": 1715374586056,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CNdDj8dsXVpRVpXt"
diff --git a/packs/_source/items/container/saddlebags/_container.json b/packs/_source/items/container/saddlebags/_container.json
index 7829431879..86bc070846 100644
--- a/packs/_source/items/container/saddlebags/_container.json
+++ b/packs/_source/items/container/saddlebags/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 4,
"denomination": "gp"
@@ -50,10 +53,10 @@
"_id": "TmfaFUSZJAotndn9",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233672,
- "modifiedTime": 1704823152466,
+ "modifiedTime": 1715374610783,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TmfaFUSZJAotndn9"
diff --git a/packs/_source/items/container/tankard/_container.json b/packs/_source/items/container/tankard/_container.json
index 22c31c884b..9eadda0a7d 100644
--- a/packs/_source/items/container/tankard/_container.json
+++ b/packs/_source/items/container/tankard/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233922,
- "modifiedTime": 1704823165092,
+ "modifiedTime": 1715374655018,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uw6fINSmZ2j2o57A"
diff --git a/packs/_source/items/container/vial/_container.json b/packs/_source/items/container/vial/_container.json
index 7a545adacb..761d654fe7 100644
--- a/packs/_source/items/container/vial/_container.json
+++ b/packs/_source/items/container/vial/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233854,
- "modifiedTime": 1704823161313,
+ "modifiedTime": 1715374641721,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!meJEfX3gZgtMX4x2"
diff --git a/packs/_source/items/equipment-packs/burglars-pack/_container.json b/packs/_source/items/equipment-packs/burglars-pack/_container.json
index e98f1ffe14..998dcfde06 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/_container.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 16,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1704823166098,
+ "modifiedTime": 1715374658656,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "xsB7Y2WI476kvOt4",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/ball-bearings.json b/packs/_source/items/equipment-packs/burglars-pack/ball-bearings.json
index 4b36fea991..d84ac3d7d5 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/ball-bearings.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/ball-bearings.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1000,
- "weight": 0.002,
+ "weight": {
+ "value": 0.002,
+ "units": "lb"
+ },
"price": {
"value": 0.1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233456,
- "modifiedTime": 1704823143168,
+ "modifiedTime": 1715374579049,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "79zrBwqEp2MCJ1Bl",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/bell.json b/packs/_source/items/equipment-packs/burglars-pack/bell.json
index 0d8d09571d..041c95ff70 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/bell.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/bell.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233541,
- "modifiedTime": 1704823149115,
+ "modifiedTime": 1715374598982,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "KyW8s4pCgPAkgTXI",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/candle.json b/packs/_source/items/equipment-packs/burglars-pack/candle.json
index f6b76c0ccd..2f3d09593c 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/candle.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/candle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 5,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233435,
- "modifiedTime": 1704823145266,
+ "modifiedTime": 1715374585942,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "CNVsvqfTbtcoHiEo",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/crowbar.json b/packs/_source/items/equipment-packs/burglars-pack/crowbar.json
index cba2e63a6e..95e7b650b9 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/crowbar.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/crowbar.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233682,
- "modifiedTime": 1704823166273,
+ "modifiedTime": 1715374659286,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "yUGNrsXMfsUKwsUg",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/hammer.json b/packs/_source/items/equipment-packs/burglars-pack/hammer.json
index 3c5b19c354..924bfe992d 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/hammer.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/hammer.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233437,
- "modifiedTime": 1704823161848,
+ "modifiedTime": 1715374643634,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "nmuGH3OKdoMOwJqj",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/hempen-rope-50-ft.json b/packs/_source/items/equipment-packs/burglars-pack/hempen-rope-50-ft.json
index 1064bc753c..f68d11b4fa 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/hempen-rope-50-ft.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/hempen-rope-50-ft.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233651,
- "modifiedTime": 1704823162102,
+ "modifiedTime": 1715374644484,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "oRrNK2H2vcN4Kp74",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/hooded-lantern.json b/packs/_source/items/equipment-packs/burglars-pack/hooded-lantern.json
index 7c9dba8b8a..7773250715 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/hooded-lantern.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/hooded-lantern.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233914,
- "modifiedTime": 1704823165577,
+ "modifiedTime": 1715374656775,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "wjHtGnd05SPdURqE",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/oil-flask.json b/packs/_source/items/equipment-packs/burglars-pack/oil-flask.json
index b38b148d8c..53fcf95f4c 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/oil-flask.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/oil-flask.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 2,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "dex",
"actionType": "rwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -91,17 +93,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233876,
- "modifiedTime": 1704823159750,
+ "modifiedTime": 1715374636209,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "jDTM1RjtZMu9YYL9",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/piton.json b/packs/_source/items/equipment-packs/burglars-pack/piton.json
index 7a88b82fdc..b36c1b355d 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/piton.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/piton.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 10,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233674,
- "modifiedTime": 1704823150781,
+ "modifiedTime": 1715374604963,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "P31t6tGgt9aLAdYt",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/rations.json b/packs/_source/items/equipment-packs/burglars-pack/rations.json
index a8183b88b0..a8703ca359 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/rations.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/rations.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 5,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233793,
- "modifiedTime": 1704823148798,
+ "modifiedTime": 1715374597930,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "JwJf6M6HCSSMgKx3",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/string-10-ft.json b/packs/_source/items/equipment-packs/burglars-pack/string-10-ft.json
index 0e91cb7daa..4865967237 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/string-10-ft.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/string-10-ft.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 0,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1701195737521,
- "modifiedTime": 1704823148314,
+ "modifiedTime": 1715374596310,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "Ij6x7481ch3Z0rff",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/tinderbox.json b/packs/_source/items/equipment-packs/burglars-pack/tinderbox.json
index 0548d1d40f..d0795521ab 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/tinderbox.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/tinderbox.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233523,
- "modifiedTime": 1704823145200,
+ "modifiedTime": 1715374585748,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "CG0LhGQtc3KOAeE1",
diff --git a/packs/_source/items/equipment-packs/burglars-pack/waterskin.json b/packs/_source/items/equipment-packs/burglars-pack/waterskin.json
index 3d512c7aa3..d24784ed61 100644
--- a/packs/_source/items/equipment-packs/burglars-pack/waterskin.json
+++ b/packs/_source/items/equipment-packs/burglars-pack/waterskin.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233681,
- "modifiedTime": 1704823162737,
+ "modifiedTime": 1715374646628,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "q4RcCLeKviqgckqt",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/_container.json b/packs/_source/items/equipment-packs/diplomats-pack/_container.json
index dec4ba5597..1573954eea 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/_container.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 25,
+ "weight": {
+ "value": 25,
+ "units": "lb"
+ },
"price": {
"value": 39,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233447,
- "modifiedTime": 1704823151487,
+ "modifiedTime": 1715374607427,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "Qy2aRjl4iQ8EmaT5",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/fine-clothes.json b/packs/_source/items/equipment-packs/diplomats-pack/fine-clothes.json
index 054848c6f8..3ca5d27c5b 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/fine-clothes.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/fine-clothes.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 15,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,17 +104,23 @@
"unidentified": {
"description": ""
},
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233453,
- "modifiedTime": 1704823147112,
+ "modifiedTime": 1715374591951,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "FqFmdzIBUSxFKKfi",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/ink-bottle.json b/packs/_source/items/equipment-packs/diplomats-pack/ink-bottle.json
index 3e32f230e9..cc12d8ccef 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/ink-bottle.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/ink-bottle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.06,
+ "weight": {
+ "value": 0.06,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233743,
- "modifiedTime": 1704823152703,
+ "modifiedTime": 1715374611639,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "UICmOXUKBmHp9o4y",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/ink-pen.json b/packs/_source/items/equipment-packs/diplomats-pack/ink-pen.json
index fd7d783451..adbea10098 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/ink-pen.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/ink-pen.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233919,
- "modifiedTime": 1704823143576,
+ "modifiedTime": 1715374580343,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "8Fe9YSSe4ymQq8UM",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/lamp.json b/packs/_source/items/equipment-packs/diplomats-pack/lamp.json
index 45b3ad49f9..16313db4c0 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/lamp.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/lamp.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233881,
- "modifiedTime": 1704823165234,
+ "modifiedTime": 1715374655509,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "vmymwrmE730l3pKh",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/map-case/_container.json b/packs/_source/items/equipment-packs/diplomats-pack/map-case/_container.json
index 41259da97d..793b987490 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/map-case/_container.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/map-case/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233472,
- "modifiedTime": 1704823164691,
+ "modifiedTime": 1715374653635,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "u5GmRCvAsCYoacLj",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/oil-flask.json b/packs/_source/items/equipment-packs/diplomats-pack/oil-flask.json
index 126a6b22a9..efa9c090c8 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/oil-flask.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/oil-flask.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 2,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "dex",
"actionType": "rwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -91,17 +93,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233876,
- "modifiedTime": 1704823159685,
+ "modifiedTime": 1715374636013,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "j01YDOu2AolsRvdN",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/paper.json b/packs/_source/items/equipment-packs/diplomats-pack/paper.json
index 0dd97ccf1d..f968b0b384 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/paper.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/paper.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 5,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233796,
- "modifiedTime": 1704823140400,
+ "modifiedTime": 1715374570231,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "0huCWvOncUsme84v",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/perfume.json b/packs/_source/items/equipment-packs/diplomats-pack/perfume.json
index b0642de013..28a3eee62c 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/perfume.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/perfume.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233922,
- "modifiedTime": 1704823149400,
+ "modifiedTime": 1715374599927,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "LECtCKWa0mt0Vy1U",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/scroll-case/_container.json b/packs/_source/items/equipment-packs/diplomats-pack/scroll-case/_container.json
index 5fc5b245ec..a0ec28cd7b 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/scroll-case/_container.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/scroll-case/_container.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -50,10 +53,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233472,
- "modifiedTime": 1704823143011,
+ "modifiedTime": 1715374578528,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6eMHIQ2CGKpjTtWC"
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/sealing-wax.json b/packs/_source/items/equipment-packs/diplomats-pack/sealing-wax.json
index 91fe4d088f..6c7861bc07 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/sealing-wax.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/sealing-wax.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233460,
- "modifiedTime": 1704823148007,
+ "modifiedTime": 1715374595296,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "HqM7xtEgwV1l3HTZ",
diff --git a/packs/_source/items/equipment-packs/diplomats-pack/soap.json b/packs/_source/items/equipment-packs/diplomats-pack/soap.json
index 56fb448f1c..d38b98205c 100644
--- a/packs/_source/items/equipment-packs/diplomats-pack/soap.json
+++ b/packs/_source/items/equipment-packs/diplomats-pack/soap.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233655,
- "modifiedTime": 1704823163719,
+ "modifiedTime": 1715374650219,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "sJ9gfQnz2jdT6GAB",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/_container.json b/packs/_source/items/equipment-packs/dungeoneers-pack/_container.json
index 52c35283dd..16913592ba 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/_container.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 12,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1704823154229,
+ "modifiedTime": 1715374616852,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "XY8b594Dn7plACLL",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/crowbar.json b/packs/_source/items/equipment-packs/dungeoneers-pack/crowbar.json
index 589386eb61..c67f64d9cc 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/crowbar.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/crowbar.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233682,
- "modifiedTime": 1704823144727,
+ "modifiedTime": 1715374584189,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "AkyQyonZMVcvOrXU",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/hammer.json b/packs/_source/items/equipment-packs/dungeoneers-pack/hammer.json
index 4b5996dc0a..3996bfcf75 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/hammer.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/hammer.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233437,
- "modifiedTime": 1704823165969,
+ "modifiedTime": 1715374658225,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "xWQopgOHbS6LjsZm",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/hempen-rope-50-ft.json b/packs/_source/items/equipment-packs/dungeoneers-pack/hempen-rope-50-ft.json
index 2ed9e184f4..75557adc13 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/hempen-rope-50-ft.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/hempen-rope-50-ft.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233651,
- "modifiedTime": 1704823152618,
+ "modifiedTime": 1715374611313,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "U5fRz04JWgNS1WvK",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/piton.json b/packs/_source/items/equipment-packs/dungeoneers-pack/piton.json
index 67ca796255..15a714c84d 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/piton.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/piton.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 10,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233674,
- "modifiedTime": 1704823165604,
+ "modifiedTime": 1715374656874,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "wmedRPNenLVSUaT5",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/rations.json b/packs/_source/items/equipment-packs/dungeoneers-pack/rations.json
index 261bd14849..ba0822a92d 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/rations.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/rations.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 10,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233793,
- "modifiedTime": 1704823143913,
+ "modifiedTime": 1715374581451,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "8d95YV1jHcxPygJ9",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/tinderbox.json b/packs/_source/items/equipment-packs/dungeoneers-pack/tinderbox.json
index 8436f9e965..a6a998d098 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/tinderbox.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/tinderbox.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233523,
- "modifiedTime": 1704823161115,
+ "modifiedTime": 1715374641052,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "m7I2KkwIWttQSElS",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/torch.json b/packs/_source/items/equipment-packs/dungeoneers-pack/torch.json
index 831017c943..aa33d3192e 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/torch.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/torch.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 10,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "str",
"actionType": "mwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -91,17 +93,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233513,
- "modifiedTime": 1704823160970,
+ "modifiedTime": 1715374640508,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "ltbDV5OitV0yrDFU",
diff --git a/packs/_source/items/equipment-packs/dungeoneers-pack/waterskin.json b/packs/_source/items/equipment-packs/dungeoneers-pack/waterskin.json
index 1d4f1a7af5..8acd328178 100644
--- a/packs/_source/items/equipment-packs/dungeoneers-pack/waterskin.json
+++ b/packs/_source/items/equipment-packs/dungeoneers-pack/waterskin.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233681,
- "modifiedTime": 1704823141236,
+ "modifiedTime": 1715374572744,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "2cKJTN5Ki77oCrQn",
diff --git a/packs/_source/items/equipment-packs/entertainers-pack/_container.json b/packs/_source/items/equipment-packs/entertainers-pack/_container.json
index 0753a0adcf..7991c079c5 100644
--- a/packs/_source/items/equipment-packs/entertainers-pack/_container.json
+++ b/packs/_source/items/equipment-packs/entertainers-pack/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 40,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1704823142944,
+ "modifiedTime": 1715374578325,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "6OYR11aJX2dEVtOj",
diff --git a/packs/_source/items/equipment-packs/entertainers-pack/bedroll.json b/packs/_source/items/equipment-packs/entertainers-pack/bedroll.json
index d05d067c6d..a4e771a03f 100644
--- a/packs/_source/items/equipment-packs/entertainers-pack/bedroll.json
+++ b/packs/_source/items/equipment-packs/entertainers-pack/bedroll.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233526,
- "modifiedTime": 1704823146078,
+ "modifiedTime": 1715374588406,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "DxfCBU7uBoRNAnDm",
diff --git a/packs/_source/items/equipment-packs/entertainers-pack/candle.json b/packs/_source/items/equipment-packs/entertainers-pack/candle.json
index 21696057bc..af9c788db4 100644
--- a/packs/_source/items/equipment-packs/entertainers-pack/candle.json
+++ b/packs/_source/items/equipment-packs/entertainers-pack/candle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 5,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233435,
- "modifiedTime": 1704823147861,
+ "modifiedTime": 1715374594762,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "HgFNy16VK0iJgpFx",
diff --git a/packs/_source/items/equipment-packs/entertainers-pack/costume-clothes.json b/packs/_source/items/equipment-packs/entertainers-pack/costume-clothes.json
index 713f5eeab6..a01a5e466a 100644
--- a/packs/_source/items/equipment-packs/entertainers-pack/costume-clothes.json
+++ b/packs/_source/items/equipment-packs/entertainers-pack/costume-clothes.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 2,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,17 +104,23 @@
"unidentified": {
"description": ""
},
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233532,
- "modifiedTime": 1704823164963,
+ "modifiedTime": 1715374654583,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "ug9bTGmTTEN7JwmP",
diff --git a/packs/_source/items/equipment-packs/entertainers-pack/disguise-kit.json b/packs/_source/items/equipment-packs/entertainers-pack/disguise-kit.json
index d540e8a9bc..fe457b9bf1 100644
--- a/packs/_source/items/equipment-packs/entertainers-pack/disguise-kit.json
+++ b/packs/_source/items/equipment-packs/entertainers-pack/disguise-kit.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -35,17 +38,53 @@
"unidentified": {
"description": ""
},
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233571,
- "modifiedTime": 1704823160313,
+ "modifiedTime": 1715374638247,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "kj5DNiBKasYWyuj6",
diff --git a/packs/_source/items/equipment-packs/entertainers-pack/rations.json b/packs/_source/items/equipment-packs/entertainers-pack/rations.json
index 5b649555de..7f0f7b558e 100644
--- a/packs/_source/items/equipment-packs/entertainers-pack/rations.json
+++ b/packs/_source/items/equipment-packs/entertainers-pack/rations.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 5,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233793,
- "modifiedTime": 1704823154576,
+ "modifiedTime": 1715374618017,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "YM4QueTsF3DL77mH",
diff --git a/packs/_source/items/equipment-packs/entertainers-pack/waterskin.json b/packs/_source/items/equipment-packs/entertainers-pack/waterskin.json
index f115ce133a..4557b6f858 100644
--- a/packs/_source/items/equipment-packs/entertainers-pack/waterskin.json
+++ b/packs/_source/items/equipment-packs/entertainers-pack/waterskin.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233681,
- "modifiedTime": 1704823140652,
+ "modifiedTime": 1715374571048,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "1L5wkmbw0fmNAr38",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/_container.json b/packs/_source/items/equipment-packs/explorers-pack/_container.json
index 5ef02938e8..d28a38e0b4 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/_container.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1704823143643,
+ "modifiedTime": 1715374580565,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "8KWz5DJbWUpNWniP",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/bedroll.json b/packs/_source/items/equipment-packs/explorers-pack/bedroll.json
index b9fb1f58f9..16b9c6d6e0 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/bedroll.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/bedroll.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233526,
- "modifiedTime": 1704823148153,
+ "modifiedTime": 1715374595810,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "IGg1yAvcOyhIqzBi",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/hempen-rope-50-ft.json b/packs/_source/items/equipment-packs/explorers-pack/hempen-rope-50-ft.json
index 5d446d8da1..003ba31176 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/hempen-rope-50-ft.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/hempen-rope-50-ft.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233651,
- "modifiedTime": 1704823155836,
+ "modifiedTime": 1715374622599,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "bDZFQqLQE73cFB8c",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/mess-kit.json b/packs/_source/items/equipment-packs/explorers-pack/mess-kit.json
index c648b001d8..b092f3c784 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/mess-kit.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/mess-kit.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233682,
- "modifiedTime": 1704823160614,
+ "modifiedTime": 1715374639316,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "lBg9CPRdpRhn4DO4",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/rations.json b/packs/_source/items/equipment-packs/explorers-pack/rations.json
index a45136aa52..77fa0c4f0d 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/rations.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/rations.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 10,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233793,
- "modifiedTime": 1704823150810,
+ "modifiedTime": 1715374605069,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "P5UuhUBZL59wZiCY",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/tinderbox.json b/packs/_source/items/equipment-packs/explorers-pack/tinderbox.json
index ab4f25bceb..f72c3f569c 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/tinderbox.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/tinderbox.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233523,
- "modifiedTime": 1704823140560,
+ "modifiedTime": 1715374570742,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "1FSubnBpSTDmVaYV",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/torch.json b/packs/_source/items/equipment-packs/explorers-pack/torch.json
index eaaee75fb3..c54d0cb3d6 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/torch.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/torch.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 10,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "str",
"actionType": "mwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -91,17 +93,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233513,
- "modifiedTime": 1704823140934,
+ "modifiedTime": 1715374571928,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "29ZLE8PERtFVD3QU",
diff --git a/packs/_source/items/equipment-packs/explorers-pack/waterskin.json b/packs/_source/items/equipment-packs/explorers-pack/waterskin.json
index bfff474bb2..3f25f00f05 100644
--- a/packs/_source/items/equipment-packs/explorers-pack/waterskin.json
+++ b/packs/_source/items/equipment-packs/explorers-pack/waterskin.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233681,
- "modifiedTime": 1704823160435,
+ "modifiedTime": 1715374638677,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "kx8DGQizmR5UI21R",
diff --git a/packs/_source/items/equipment-packs/priests-pack/_container.json b/packs/_source/items/equipment-packs/priests-pack/_container.json
index 6a9ee8af5b..c998386928 100644
--- a/packs/_source/items/equipment-packs/priests-pack/_container.json
+++ b/packs/_source/items/equipment-packs/priests-pack/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 19,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1704823142777,
+ "modifiedTime": 1715374577783,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "6BybWxK5GcEzqcOV",
diff --git a/packs/_source/items/equipment-packs/priests-pack/alms-box/_container.json b/packs/_source/items/equipment-packs/priests-pack/alms-box/_container.json
index 0783e4bf1d..296b9e9262 100644
--- a/packs/_source/items/equipment-packs/priests-pack/alms-box/_container.json
+++ b/packs/_source/items/equipment-packs/priests-pack/alms-box/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233802,
- "modifiedTime": 1704823155571,
+ "modifiedTime": 1715374621660,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "ac8IamT5vDrH1ZT8",
diff --git a/packs/_source/items/equipment-packs/priests-pack/blanket.json b/packs/_source/items/equipment-packs/priests-pack/blanket.json
index 6f3e561c6e..62436010dc 100644
--- a/packs/_source/items/equipment-packs/priests-pack/blanket.json
+++ b/packs/_source/items/equipment-packs/priests-pack/blanket.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233461,
- "modifiedTime": 1704823164936,
+ "modifiedTime": 1715374654492,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "uYniEJCeAuwUC4JY",
diff --git a/packs/_source/items/equipment-packs/priests-pack/block-of-incense.json b/packs/_source/items/equipment-packs/priests-pack/block-of-incense.json
index 225fcc4cb9..d5127f18c5 100644
--- a/packs/_source/items/equipment-packs/priests-pack/block-of-incense.json
+++ b/packs/_source/items/equipment-packs/priests-pack/block-of-incense.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 2,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233781,
- "modifiedTime": 1704823166212,
+ "modifiedTime": 1715374659092,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "xxRC1qTIGzGEvmkg",
diff --git a/packs/_source/items/equipment-packs/priests-pack/candle.json b/packs/_source/items/equipment-packs/priests-pack/candle.json
index d1ab725317..9aeaea51b9 100644
--- a/packs/_source/items/equipment-packs/priests-pack/candle.json
+++ b/packs/_source/items/equipment-packs/priests-pack/candle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233435,
- "modifiedTime": 1704823162418,
+ "modifiedTime": 1715374645458,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "oylFuuS3t1nqNKsM",
diff --git a/packs/_source/items/equipment-packs/priests-pack/censer.json b/packs/_source/items/equipment-packs/priests-pack/censer.json
index e19ce3f2bf..3bd20f47aa 100644
--- a/packs/_source/items/equipment-packs/priests-pack/censer.json
+++ b/packs/_source/items/equipment-packs/priests-pack/censer.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233486,
- "modifiedTime": 1704823160914,
+ "modifiedTime": 1715374640321,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "lg6oohwQndZT4Z0m",
diff --git a/packs/_source/items/equipment-packs/priests-pack/rations.json b/packs/_source/items/equipment-packs/priests-pack/rations.json
index ceac26dda8..3b8df315be 100644
--- a/packs/_source/items/equipment-packs/priests-pack/rations.json
+++ b/packs/_source/items/equipment-packs/priests-pack/rations.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 2,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233793,
- "modifiedTime": 1704823146197,
+ "modifiedTime": 1715374588832,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "EC6ugXsfJZmjMNAj",
diff --git a/packs/_source/items/equipment-packs/priests-pack/tinderbox.json b/packs/_source/items/equipment-packs/priests-pack/tinderbox.json
index d5c0413b6c..95825f16b9 100644
--- a/packs/_source/items/equipment-packs/priests-pack/tinderbox.json
+++ b/packs/_source/items/equipment-packs/priests-pack/tinderbox.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233523,
- "modifiedTime": 1704823145710,
+ "modifiedTime": 1715374587220,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "DSWvkerPQsusbqzJ",
diff --git a/packs/_source/items/equipment-packs/priests-pack/vestments.json b/packs/_source/items/equipment-packs/priests-pack/vestments.json
index f08d9cfd37..8cc3f617ca 100644
--- a/packs/_source/items/equipment-packs/priests-pack/vestments.json
+++ b/packs/_source/items/equipment-packs/priests-pack/vestments.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,17 +104,23 @@
"unidentified": {
"description": ""
},
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233826,
- "modifiedTime": 1704823161170,
+ "modifiedTime": 1715374641262,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "mE6rsbIJXAd4tr4e",
diff --git a/packs/_source/items/equipment-packs/priests-pack/waterskin.json b/packs/_source/items/equipment-packs/priests-pack/waterskin.json
index 828dc0c144..fc61274886 100644
--- a/packs/_source/items/equipment-packs/priests-pack/waterskin.json
+++ b/packs/_source/items/equipment-packs/priests-pack/waterskin.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,17 +88,24 @@
},
"unidentified": {
"description": ""
- }
+ },
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233681,
- "modifiedTime": 1704823155291,
+ "modifiedTime": 1715374620688,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "a8fe9d81BRW86cvP",
diff --git a/packs/_source/items/equipment-packs/scholars-pack/_container.json b/packs/_source/items/equipment-packs/scholars-pack/_container.json
index 69db6fd131..fec08ebec6 100644
--- a/packs/_source/items/equipment-packs/scholars-pack/_container.json
+++ b/packs/_source/items/equipment-packs/scholars-pack/_container.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 40,
"denomination": "gp"
@@ -45,10 +48,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1704823152772,
+ "modifiedTime": 1715374611884,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "UOE8RGOpgv2oWIvM",
diff --git a/packs/_source/items/equipment-packs/scholars-pack/bag-of-sand.json b/packs/_source/items/equipment-packs/scholars-pack/bag-of-sand.json
index 77ef794fd1..0d2a0d6a7d 100644
--- a/packs/_source/items/equipment-packs/scholars-pack/bag-of-sand.json
+++ b/packs/_source/items/equipment-packs/scholars-pack/bag-of-sand.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233822,
- "modifiedTime": 1704823157703,
+ "modifiedTime": 1715374629334,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "f3eF8EYq1rkqFwDP",
diff --git a/packs/_source/items/equipment-packs/scholars-pack/book-of-lore.json b/packs/_source/items/equipment-packs/scholars-pack/book-of-lore.json
index 1744e5fc5a..172840dd77 100644
--- a/packs/_source/items/equipment-packs/scholars-pack/book-of-lore.json
+++ b/packs/_source/items/equipment-packs/scholars-pack/book-of-lore.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233842,
- "modifiedTime": 1704823145054,
+ "modifiedTime": 1715374585251,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "Bt7nIb37nU7Wxevx",
diff --git a/packs/_source/items/equipment-packs/scholars-pack/ink-bottle.json b/packs/_source/items/equipment-packs/scholars-pack/ink-bottle.json
index b1c65b9904..cfa0801cf4 100644
--- a/packs/_source/items/equipment-packs/scholars-pack/ink-bottle.json
+++ b/packs/_source/items/equipment-packs/scholars-pack/ink-bottle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.06,
+ "weight": {
+ "value": 0.06,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233743,
- "modifiedTime": 1704823162876,
+ "modifiedTime": 1715374647119,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "qGfu1070HAllkO4W",
diff --git a/packs/_source/items/equipment-packs/scholars-pack/ink-pen.json b/packs/_source/items/equipment-packs/scholars-pack/ink-pen.json
index faa7e2f4ff..9c61f01cef 100644
--- a/packs/_source/items/equipment-packs/scholars-pack/ink-pen.json
+++ b/packs/_source/items/equipment-packs/scholars-pack/ink-pen.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233919,
- "modifiedTime": 1704823166300,
+ "modifiedTime": 1715374659386,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "ybeLtyIloDvKhDz8",
diff --git a/packs/_source/items/equipment-packs/scholars-pack/parchment.json b/packs/_source/items/equipment-packs/scholars-pack/parchment.json
index b3bb599c76..06bcf96370 100644
--- a/packs/_source/items/equipment-packs/scholars-pack/parchment.json
+++ b/packs/_source/items/equipment-packs/scholars-pack/parchment.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 10,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233688,
- "modifiedTime": 1704823144274,
+ "modifiedTime": 1715374582682,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "9c0CHs90xqPw81iP",
diff --git a/packs/_source/items/equipment-packs/scholars-pack/small-knife.json b/packs/_source/items/equipment-packs/scholars-pack/small-knife.json
index 5fba83ba1b..7c302bd46f 100644
--- a/packs/_source/items/equipment-packs/scholars-pack/small-knife.json
+++ b/packs/_source/items/equipment-packs/scholars-pack/small-knife.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,10 +39,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233459,
- "modifiedTime": 1704823145109,
+ "modifiedTime": 1715374585463,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "C05ytVXByOG8uBAc",
diff --git a/packs/_source/items/equipment/amulet-of-health.json b/packs/_source/items/equipment/amulet-of-health.json
index f555c709a9..34cdcd40a4 100644
--- a/packs/_source/items/equipment/amulet-of-health.json
+++ b/packs/_source/items/equipment/amulet-of-health.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233824,
- "modifiedTime": 1707055846017,
+ "modifiedTime": 1715374635369,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!iiQxTvDOhPGW5spF"
diff --git a/packs/_source/items/equipment/amulet-of-proof-against-detection-and-location.json b/packs/_source/items/equipment/amulet-of-proof-against-detection-and-location.json
index 39fbd219dc..b4683bee09 100644
--- a/packs/_source/items/equipment/amulet-of-proof-against-detection-and-location.json
+++ b/packs/_source/items/equipment/amulet-of-proof-against-detection-and-location.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 20000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233468,
- "modifiedTime": 1707055839240,
+ "modifiedTime": 1715374576203,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!50N8zf58FR4JWR05"
diff --git a/packs/_source/items/equipment/amulet-of-the-planes.json b/packs/_source/items/equipment/amulet-of-the-planes.json
index 6897fbe70c..bda77a8db8 100644
--- a/packs/_source/items/equipment/amulet-of-the-planes.json
+++ b/packs/_source/items/equipment/amulet-of-the-planes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 160000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233487,
- "modifiedTime": 1707055839778,
+ "modifiedTime": 1715374580148,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8ABk0XV76Hzq8Qul"
diff --git a/packs/_source/items/equipment/amulet.json b/packs/_source/items/equipment/amulet.json
index 2e576d410a..e9122498af 100644
--- a/packs/_source/items/equipment/amulet.json
+++ b/packs/_source/items/equipment/amulet.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233876,
- "modifiedTime": 1704823162612,
+ "modifiedTime": 1715374646198,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!paqlMjggWkBIAeCe"
diff --git a/packs/_source/items/equipment/belt-of-cloud-giant-strength.json b/packs/_source/items/equipment/belt-of-cloud-giant-strength.json
index 0cd3724589..def6877c04 100644
--- a/packs/_source/items/equipment/belt-of-cloud-giant-strength.json
+++ b/packs/_source/items/equipment/belt-of-cloud-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 18000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233631,
- "modifiedTime": 1707055842542,
+ "modifiedTime": 1715374603056,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NRj0lC3SM03s1YB3"
diff --git a/packs/_source/items/equipment/belt-of-dwarvenkind.json b/packs/_source/items/equipment/belt-of-dwarvenkind.json
index 06694e4840..e844ad2926 100644
--- a/packs/_source/items/equipment/belt-of-dwarvenkind.json
+++ b/packs/_source/items/equipment/belt-of-dwarvenkind.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233829,
- "modifiedTime": 1707055846043,
+ "modifiedTime": 1715374636112,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!j2ZGEwx8MhHZXds4"
diff --git a/packs/_source/items/equipment/belt-of-fire-giant-strength.json b/packs/_source/items/equipment/belt-of-fire-giant-strength.json
index b860eaa990..13f7bab132 100644
--- a/packs/_source/items/equipment/belt-of-fire-giant-strength.json
+++ b/packs/_source/items/equipment/belt-of-fire-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233733,
- "modifiedTime": 1707055844709,
+ "modifiedTime": 1715374623444,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bq9YKwEHLQ7p7ric"
diff --git a/packs/_source/items/equipment/belt-of-frost-giant-strength.json b/packs/_source/items/equipment/belt-of-frost-giant-strength.json
index 8c43ca25cd..dbbbe73ea4 100644
--- a/packs/_source/items/equipment/belt-of-frost-giant-strength.json
+++ b/packs/_source/items/equipment/belt-of-frost-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233637,
- "modifiedTime": 1707055842701,
+ "modifiedTime": 1715374604221,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ORKf6RRcalrdD6Qp"
diff --git a/packs/_source/items/equipment/belt-of-hill-giant-strength.json b/packs/_source/items/equipment/belt-of-hill-giant-strength.json
index 3fc781874a..53dfe02d58 100644
--- a/packs/_source/items/equipment/belt-of-hill-giant-strength.json
+++ b/packs/_source/items/equipment/belt-of-hill-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233535,
- "modifiedTime": 1707055841004,
+ "modifiedTime": 1715374589125,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ER75WHewYN04Zp11"
diff --git a/packs/_source/items/equipment/belt-of-stone-giant-strength.json b/packs/_source/items/equipment/belt-of-stone-giant-strength.json
index b70019fe30..9308aa57f7 100644
--- a/packs/_source/items/equipment/belt-of-stone-giant-strength.json
+++ b/packs/_source/items/equipment/belt-of-stone-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233795,
- "modifiedTime": 1707055845392,
+ "modifiedTime": 1715374629862,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fCUZ7h8YYrs16UhX"
diff --git a/packs/_source/items/equipment/belt-of-storm-giant-strength.json b/packs/_source/items/equipment/belt-of-storm-giant-strength.json
index b3f7418fa5..03cdf7d12c 100644
--- a/packs/_source/items/equipment/belt-of-storm-giant-strength.json
+++ b/packs/_source/items/equipment/belt-of-storm-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233955,
- "modifiedTime": 1707055847769,
+ "modifiedTime": 1715374656040,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wBYmPQG3nZfD88aP"
diff --git a/packs/_source/items/equipment/bit-and-bridle.json b/packs/_source/items/equipment/bit-and-bridle.json
index 77496ef536..cb7e479136 100644
--- a/packs/_source/items/equipment/bit-and-bridle.json
+++ b/packs/_source/items/equipment/bit-and-bridle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -60,7 +63,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -78,7 +80,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,7 +104,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"_id": "8l7M3zeqrU2vkA5h",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233494,
- "modifiedTime": 1704823143970,
+ "modifiedTime": 1715374581652,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8l7M3zeqrU2vkA5h"
diff --git a/packs/_source/items/equipment/boots-of-elvenkind.json b/packs/_source/items/equipment/boots-of-elvenkind.json
index d51ef1360f..1609911e2a 100644
--- a/packs/_source/items/equipment/boots-of-elvenkind.json
+++ b/packs/_source/items/equipment/boots-of-elvenkind.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233612,
- "modifiedTime": 1707055841954,
+ "modifiedTime": 1715374598567,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KKWBLKQIWHtcpymp"
diff --git a/packs/_source/items/equipment/boots-of-levitation.json b/packs/_source/items/equipment/boots-of-levitation.json
index 59530bb8a4..4fa66da71e 100644
--- a/packs/_source/items/equipment/boots-of-levitation.json
+++ b/packs/_source/items/equipment/boots-of-levitation.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233561,
- "modifiedTime": 1707055841413,
+ "modifiedTime": 1715374593917,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HLhFCDGfI8EK7uV9"
diff --git a/packs/_source/items/equipment/boots-of-speed.json b/packs/_source/items/equipment/boots-of-speed.json
index 3d8b5ccd3e..a2cbc81eef 100644
--- a/packs/_source/items/equipment/boots-of-speed.json
+++ b/packs/_source/items/equipment/boots-of-speed.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233624,
- "modifiedTime": 1707055842331,
+ "modifiedTime": 1715374601298,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!MCMSZrhcD40oMJ9v"
diff --git a/packs/_source/items/equipment/boots-of-striding-and-springing.json b/packs/_source/items/equipment/boots-of-striding-and-springing.json
index 617f39a937..20b898fb01 100644
--- a/packs/_source/items/equipment/boots-of-striding-and-springing.json
+++ b/packs/_source/items/equipment/boots-of-striding-and-springing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233814,
- "modifiedTime": 1707055845705,
+ "modifiedTime": 1715374633378,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hSY1b8yi8JWw2blf"
diff --git a/packs/_source/items/equipment/boots-of-the-winterlands.json b/packs/_source/items/equipment/boots-of-the-winterlands.json
index 946843bf3a..dbcffecb7b 100644
--- a/packs/_source/items/equipment/boots-of-the-winterlands.json
+++ b/packs/_source/items/equipment/boots-of-the-winterlands.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233655,
- "modifiedTime": 1707055842971,
+ "modifiedTime": 1715374607545,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!RDPFmUR9exTEXFc8"
diff --git a/packs/_source/items/equipment/bracers-of-archery.json b/packs/_source/items/equipment/bracers-of-archery.json
index 040b593b32..90ddaa1854 100644
--- a/packs/_source/items/equipment/bracers-of-archery.json
+++ b/packs/_source/items/equipment/bracers-of-archery.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -152,10 +161,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233715,
- "modifiedTime": 1707055844176,
+ "modifiedTime": 1715374619605,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZYEqOSY9BLZs2GPx"
diff --git a/packs/_source/items/equipment/bracers-of-defense.json b/packs/_source/items/equipment/bracers-of-defense.json
index 0a7cff4650..076f7b2dc8 100644
--- a/packs/_source/items/equipment/bracers-of-defense.json
+++ b/packs/_source/items/equipment/bracers-of-defense.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233523,
- "modifiedTime": 1707055840707,
+ "modifiedTime": 1715374587129,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DSHi7yT6OUyDoCcu"
diff --git a/packs/_source/items/equipment/brooch-of-shielding.json b/packs/_source/items/equipment/brooch-of-shielding.json
index 07539b43d9..00ba7d59b3 100644
--- a/packs/_source/items/equipment/brooch-of-shielding.json
+++ b/packs/_source/items/equipment/brooch-of-shielding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 7500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233716,
- "modifiedTime": 1707055844205,
+ "modifiedTime": 1715374619802,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZdcEtbtU3VkuxIFE"
diff --git a/packs/_source/items/equipment/cape-of-the-mountebank.json b/packs/_source/items/equipment/cape-of-the-mountebank.json
index b792beba16..51c1c4f85d 100644
--- a/packs/_source/items/equipment/cape-of-the-mountebank.json
+++ b/packs/_source/items/equipment/cape-of-the-mountebank.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233808,
- "modifiedTime": 1707055845575,
+ "modifiedTime": 1715374632178,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gpHgWLsD8k2yzbfR"
diff --git a/packs/_source/items/equipment/circlet-of-blasting.json b/packs/_source/items/equipment/circlet-of-blasting.json
index 251447ebf2..c16540e15b 100644
--- a/packs/_source/items/equipment/circlet-of-blasting.json
+++ b/packs/_source/items/equipment/circlet-of-blasting.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "rsak",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233498,
- "modifiedTime": 1707055839973,
+ "modifiedTime": 1715374582468,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9UvWQTY5yIgkJmmb"
diff --git a/packs/_source/items/equipment/cloak-of-arachnida.json b/packs/_source/items/equipment/cloak-of-arachnida.json
index 3155370ace..d3eed38433 100644
--- a/packs/_source/items/equipment/cloak-of-arachnida.json
+++ b/packs/_source/items/equipment/cloak-of-arachnida.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233687,
- "modifiedTime": 1707055843529,
+ "modifiedTime": 1715374613959,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VwJjuNbBf2KHMPrY"
diff --git a/packs/_source/items/equipment/cloak-of-displacement.json b/packs/_source/items/equipment/cloak-of-displacement.json
index d27db751ac..2209115c23 100644
--- a/packs/_source/items/equipment/cloak-of-displacement.json
+++ b/packs/_source/items/equipment/cloak-of-displacement.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 60000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233620,
- "modifiedTime": 1707055842197,
+ "modifiedTime": 1715374600451,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LpD064ilKEeFzVI8"
diff --git a/packs/_source/items/equipment/cloak-of-elvenkind.json b/packs/_source/items/equipment/cloak-of-elvenkind.json
index b82647f198..d76fe08d22 100644
--- a/packs/_source/items/equipment/cloak-of-elvenkind.json
+++ b/packs/_source/items/equipment/cloak-of-elvenkind.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233580,
- "modifiedTime": 1707055841898,
+ "modifiedTime": 1715374597725,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Jvf1NWFxcjfHnMQ5"
diff --git a/packs/_source/items/equipment/cloak-of-protection.json b/packs/_source/items/equipment/cloak-of-protection.json
index 0c32a77d51..9017cd5b8e 100644
--- a/packs/_source/items/equipment/cloak-of-protection.json
+++ b/packs/_source/items/equipment/cloak-of-protection.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 3500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -152,10 +161,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233851,
- "modifiedTime": 1707055846461,
+ "modifiedTime": 1715374640826,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lvaMqEhfidfHDGf5"
diff --git a/packs/_source/items/equipment/cloak-of-the-bat.json b/packs/_source/items/equipment/cloak-of-the-bat.json
index e34a827721..3a273a906c 100644
--- a/packs/_source/items/equipment/cloak-of-the-bat.json
+++ b/packs/_source/items/equipment/cloak-of-the-bat.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233508,
- "modifiedTime": 1707055840239,
+ "modifiedTime": 1715374584282,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Aq1rhgcgFnwu2T4I"
diff --git a/packs/_source/items/equipment/cloak-of-the-manta-ray.json b/packs/_source/items/equipment/cloak-of-the-manta-ray.json
index cd118a3364..197923f9ae 100644
--- a/packs/_source/items/equipment/cloak-of-the-manta-ray.json
+++ b/packs/_source/items/equipment/cloak-of-the-manta-ray.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233811,
- "modifiedTime": 1707055845679,
+ "modifiedTime": 1715374632891,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hGrxC676XmlnS9y0"
diff --git a/packs/_source/items/equipment/common-clothes.json b/packs/_source/items/equipment/common-clothes.json
index 242fa8eec3..284c7c5ff6 100644
--- a/packs/_source/items/equipment/common-clothes.json
+++ b/packs/_source/items/equipment/common-clothes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233492,
- "modifiedTime": 1704823143851,
+ "modifiedTime": 1715374581246,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8RXjiddJ6VGyE7vB"
diff --git a/packs/_source/items/equipment/costume-clothes.json b/packs/_source/items/equipment/costume-clothes.json
index 54372d608d..cc8a1c7d65 100644
--- a/packs/_source/items/equipment/costume-clothes.json
+++ b/packs/_source/items/equipment/costume-clothes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233532,
- "modifiedTime": 1704823146104,
+ "modifiedTime": 1715374588512,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!E2h6sEe6FU2tnU96"
diff --git a/packs/_source/items/equipment/emblem.json b/packs/_source/items/equipment/emblem.json
index e3f76a9ea2..5f870a4c96 100644
--- a/packs/_source/items/equipment/emblem.json
+++ b/packs/_source/items/equipment/emblem.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233847,
- "modifiedTime": 1704823160827,
+ "modifiedTime": 1715374640005,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!laVqttkGMW4B9654"
diff --git a/packs/_source/items/equipment/exotic-saddle.json b/packs/_source/items/equipment/exotic-saddle.json
index 0122903a7a..89422da2ba 100644
--- a/packs/_source/items/equipment/exotic-saddle.json
+++ b/packs/_source/items/equipment/exotic-saddle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 40,
+ "weight": {
+ "value": 40,
+ "units": "lb"
+ },
"price": {
"value": 60,
"denomination": "gp"
@@ -60,7 +63,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -78,7 +80,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,7 +104,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"_id": "4932CLHvjZYxOm4g",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233463,
- "modifiedTime": 1704823142137,
+ "modifiedTime": 1715374575672,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!4932CLHvjZYxOm4g"
diff --git a/packs/_source/items/equipment/eyes-of-charming.json b/packs/_source/items/equipment/eyes-of-charming.json
index 47e37c5d76..0e50df856e 100644
--- a/packs/_source/items/equipment/eyes-of-charming.json
+++ b/packs/_source/items/equipment/eyes-of-charming.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233493,
- "modifiedTime": 1707055839889,
+ "modifiedTime": 1715374581561,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8dfhaa1g3VDjhtm3"
diff --git a/packs/_source/items/equipment/eyes-of-minute-seeing.json b/packs/_source/items/equipment/eyes-of-minute-seeing.json
index ea2ccf79af..7df9606d7f 100644
--- a/packs/_source/items/equipment/eyes-of-minute-seeing.json
+++ b/packs/_source/items/equipment/eyes-of-minute-seeing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 2500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233514,
- "modifiedTime": 1707055840378,
+ "modifiedTime": 1715374585162,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BsyPV6eTNghT3Fho"
diff --git a/packs/_source/items/equipment/eyes-of-the-eagle.json b/packs/_source/items/equipment/eyes-of-the-eagle.json
index 9148b75d44..cc6f262ccd 100644
--- a/packs/_source/items/equipment/eyes-of-the-eagle.json
+++ b/packs/_source/items/equipment/eyes-of-the-eagle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 2500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233675,
- "modifiedTime": 1707055843269,
+ "modifiedTime": 1715374611207,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!U4PI6l96QJUk6TGb"
diff --git a/packs/_source/items/equipment/fine-clothes.json b/packs/_source/items/equipment/fine-clothes.json
index a8c13b8ce0..caa57d7a91 100644
--- a/packs/_source/items/equipment/fine-clothes.json
+++ b/packs/_source/items/equipment/fine-clothes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 15,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233453,
- "modifiedTime": 1704823141546,
+ "modifiedTime": 1715374573681,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3OXueEpvDDCVfGFA"
diff --git a/packs/_source/items/equipment/gauntlets-of-ogre-power.json b/packs/_source/items/equipment/gauntlets-of-ogre-power.json
index 1a0bea3563..71f321b14e 100644
--- a/packs/_source/items/equipment/gauntlets-of-ogre-power.json
+++ b/packs/_source/items/equipment/gauntlets-of-ogre-power.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -103,7 +106,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -143,10 +152,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233454,
- "modifiedTime": 1707055838986,
+ "modifiedTime": 1715374573896,
"lastModifiedBy": "dnd5ebuilder0000"
},
"folder": "aJgMxnZED9XdoN2W",
diff --git a/packs/_source/items/equipment/gloves-of-missile-snaring.json b/packs/_source/items/equipment/gloves-of-missile-snaring.json
index cafada24d9..9a771f05e0 100644
--- a/packs/_source/items/equipment/gloves-of-missile-snaring.json
+++ b/packs/_source/items/equipment/gloves-of-missile-snaring.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "dex",
"actionType": "other",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233871,
- "modifiedTime": 1707055846861,
+ "modifiedTime": 1715374645231,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!otYAEwhsANKHZAmk"
diff --git a/packs/_source/items/equipment/gloves-of-swimming-and-climbing.json b/packs/_source/items/equipment/gloves-of-swimming-and-climbing.json
index f567317721..2b37a4efbe 100644
--- a/packs/_source/items/equipment/gloves-of-swimming-and-climbing.json
+++ b/packs/_source/items/equipment/gloves-of-swimming-and-climbing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233645,
- "modifiedTime": 1707055842811,
+ "modifiedTime": 1715374605817,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PRhtLbRLb9LjHZG7"
diff --git a/packs/_source/items/equipment/goggles-of-night.json b/packs/_source/items/equipment/goggles-of-night.json
index ba0862aaee..925cbbb265 100644
--- a/packs/_source/items/equipment/goggles-of-night.json
+++ b/packs/_source/items/equipment/goggles-of-night.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.3,
+ "weight": {
+ "value": 0.3,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233698,
- "modifiedTime": 1707055843772,
+ "modifiedTime": 1715374616098,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XGAWqtmhK6SYBL6A"
diff --git a/packs/_source/items/equipment/hat-of-disguise.json b/packs/_source/items/equipment/hat-of-disguise.json
index a20f2f0039..33a044a499 100644
--- a/packs/_source/items/equipment/hat-of-disguise.json
+++ b/packs/_source/items/equipment/hat-of-disguise.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233744,
- "modifiedTime": 1707055844975,
+ "modifiedTime": 1715374625486,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dQxqcjDm0IxYusCV"
diff --git a/packs/_source/items/equipment/headband-of-intellect.json b/packs/_source/items/equipment/headband-of-intellect.json
index 26538c0310..20656bbfb0 100644
--- a/packs/_source/items/equipment/headband-of-intellect.json
+++ b/packs/_source/items/equipment/headband-of-intellect.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233720,
- "modifiedTime": 1707055844363,
+ "modifiedTime": 1715374620473,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!a26LjC4QxP1oorXC"
diff --git a/packs/_source/items/equipment/helm-of-brilliance.json b/packs/_source/items/equipment/helm-of-brilliance.json
index 23d62ef5d7..3f4196fc7c 100644
--- a/packs/_source/items/equipment/helm-of-brilliance.json
+++ b/packs/_source/items/equipment/helm-of-brilliance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233893,
- "modifiedTime": 1707055847178,
+ "modifiedTime": 1715374649686,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rhGulc3gEJhnuP31"
diff --git a/packs/_source/items/equipment/helm-of-comprehending-languages.json b/packs/_source/items/equipment/helm-of-comprehending-languages.json
index 8cc3fcb91c..4655d6c08b 100644
--- a/packs/_source/items/equipment/helm-of-comprehending-languages.json
+++ b/packs/_source/items/equipment/helm-of-comprehending-languages.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233892,
- "modifiedTime": 1707055847151,
+ "modifiedTime": 1715374649463,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rY9sRFQp5CFSfsat"
diff --git a/packs/_source/items/equipment/helm-of-telepathy.json b/packs/_source/items/equipment/helm-of-telepathy.json
index 0c526c2a76..42dd8f7d7b 100644
--- a/packs/_source/items/equipment/helm-of-telepathy.json
+++ b/packs/_source/items/equipment/helm-of-telepathy.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233534,
- "modifiedTime": 1707055840978,
+ "modifiedTime": 1715374589033,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!EJVaAvNfCq6gn6VG"
diff --git a/packs/_source/items/equipment/helm-of-teleportation.json b/packs/_source/items/equipment/helm-of-teleportation.json
index b3a1e1fd4a..c95d830a6a 100644
--- a/packs/_source/items/equipment/helm-of-teleportation.json
+++ b/packs/_source/items/equipment/helm-of-teleportation.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 64000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233521,
- "modifiedTime": 1707055840654,
+ "modifiedTime": 1715374586735,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DEQkJiQdGyfmSNkV"
diff --git a/packs/_source/items/equipment/ioun-stone-of-absorption.json b/packs/_source/items/equipment/ioun-stone-of-absorption.json
index 8d89fc99a5..5b103f257a 100644
--- a/packs/_source/items/equipment/ioun-stone-of-absorption.json
+++ b/packs/_source/items/equipment/ioun-stone-of-absorption.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2400,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233630,
- "modifiedTime": 1707055842490,
+ "modifiedTime": 1715374602823,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NGVEouqK0I6J6jV5"
diff --git a/packs/_source/items/equipment/ioun-stone-of-agility.json b/packs/_source/items/equipment/ioun-stone-of-agility.json
index 00dee6d04b..cf79f2b7fa 100644
--- a/packs/_source/items/equipment/ioun-stone-of-agility.json
+++ b/packs/_source/items/equipment/ioun-stone-of-agility.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233647,
- "modifiedTime": 1707055842836,
+ "modifiedTime": 1715374606209,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Q4Iy6hqREsbk9yG7"
diff --git a/packs/_source/items/equipment/ioun-stone-of-awareness.json b/packs/_source/items/equipment/ioun-stone-of-awareness.json
index 3810981b38..080ec51bf7 100644
--- a/packs/_source/items/equipment/ioun-stone-of-awareness.json
+++ b/packs/_source/items/equipment/ioun-stone-of-awareness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233810,
- "modifiedTime": 1707055845599,
+ "modifiedTime": 1715374632586,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!h8rS84jKsMHl9J1i"
diff --git a/packs/_source/items/equipment/ioun-stone-of-fortitude.json b/packs/_source/items/equipment/ioun-stone-of-fortitude.json
index e9369d15bc..9b861425fd 100644
--- a/packs/_source/items/equipment/ioun-stone-of-fortitude.json
+++ b/packs/_source/items/equipment/ioun-stone-of-fortitude.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233824,
- "modifiedTime": 1707055845992,
+ "modifiedTime": 1715374635264,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ig5DOQtQYJPXJId4"
diff --git a/packs/_source/items/equipment/ioun-stone-of-greater-absorption.json b/packs/_source/items/equipment/ioun-stone-of-greater-absorption.json
index c4a5cb1c96..cc280fa508 100644
--- a/packs/_source/items/equipment/ioun-stone-of-greater-absorption.json
+++ b/packs/_source/items/equipment/ioun-stone-of-greater-absorption.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 31000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233481,
- "modifiedTime": 1707055839638,
+ "modifiedTime": 1715374579144,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7FEcfqz1piPHN1tV"
diff --git a/packs/_source/items/equipment/ioun-stone-of-insight.json b/packs/_source/items/equipment/ioun-stone-of-insight.json
index 9bf054f4e1..174a4ba3bb 100644
--- a/packs/_source/items/equipment/ioun-stone-of-insight.json
+++ b/packs/_source/items/equipment/ioun-stone-of-insight.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233501,
- "modifiedTime": 1707055840050,
+ "modifiedTime": 1715374582987,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9jMQEm99q1ttAV1Q"
diff --git a/packs/_source/items/equipment/ioun-stone-of-intellect.json b/packs/_source/items/equipment/ioun-stone-of-intellect.json
index c12e9745dc..5b59e4a500 100644
--- a/packs/_source/items/equipment/ioun-stone-of-intellect.json
+++ b/packs/_source/items/equipment/ioun-stone-of-intellect.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233707,
- "modifiedTime": 1707055844092,
+ "modifiedTime": 1715374618334,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YeLz5OxRNxmvHJId"
diff --git a/packs/_source/items/equipment/ioun-stone-of-leadership.json b/packs/_source/items/equipment/ioun-stone-of-leadership.json
index a6ec76f7b4..e827fa3b89 100644
--- a/packs/_source/items/equipment/ioun-stone-of-leadership.json
+++ b/packs/_source/items/equipment/ioun-stone-of-leadership.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233810,
- "modifiedTime": 1707055845626,
+ "modifiedTime": 1715374632691,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hDF4RSCzMO8iI14x"
diff --git a/packs/_source/items/equipment/ioun-stone-of-mastery.json b/packs/_source/items/equipment/ioun-stone-of-mastery.json
index 287f4f9cea..1111b7674e 100644
--- a/packs/_source/items/equipment/ioun-stone-of-mastery.json
+++ b/packs/_source/items/equipment/ioun-stone-of-mastery.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 15000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233863,
- "modifiedTime": 1707055846699,
+ "modifiedTime": 1715374643419,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nk2MH16KcZmKp7FQ"
diff --git a/packs/_source/items/equipment/ioun-stone-of-protection.json b/packs/_source/items/equipment/ioun-stone-of-protection.json
index ca1cfef1cd..7584355daf 100644
--- a/packs/_source/items/equipment/ioun-stone-of-protection.json
+++ b/packs/_source/items/equipment/ioun-stone-of-protection.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233950,
- "modifiedTime": 1707055847692,
+ "modifiedTime": 1715374655106,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!v4uNbmiz4ECTI89n"
diff --git a/packs/_source/items/equipment/ioun-stone-of-regeneration.json b/packs/_source/items/equipment/ioun-stone-of-regeneration.json
index dfe1334cef..a2ba99245c 100644
--- a/packs/_source/items/equipment/ioun-stone-of-regeneration.json
+++ b/packs/_source/items/equipment/ioun-stone-of-regeneration.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233903,
- "modifiedTime": 1707055847384,
+ "modifiedTime": 1715374651569,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!szNhDWpks5BhEXhT"
diff --git a/packs/_source/items/equipment/ioun-stone-of-reserve.json b/packs/_source/items/equipment/ioun-stone-of-reserve.json
index 0bc1a68c46..15c7954abf 100644
--- a/packs/_source/items/equipment/ioun-stone-of-reserve.json
+++ b/packs/_source/items/equipment/ioun-stone-of-reserve.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233833,
- "modifiedTime": 1707055846094,
+ "modifiedTime": 1715374637051,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jvKmgJYL33E8gev5"
diff --git a/packs/_source/items/equipment/ioun-stone-of-strength.json b/packs/_source/items/equipment/ioun-stone-of-strength.json
index 90f7ed3a75..d309362713 100644
--- a/packs/_source/items/equipment/ioun-stone-of-strength.json
+++ b/packs/_source/items/equipment/ioun-stone-of-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -85,7 +87,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -151,10 +160,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233434,
- "modifiedTime": 1707055838478,
+ "modifiedTime": 1715374569726,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!0G5LSgbb5NTV4XC7"
diff --git a/packs/_source/items/equipment/ioun-stone-of-sustenance.json b/packs/_source/items/equipment/ioun-stone-of-sustenance.json
index 0fed9cf1ed..4142f3cacd 100644
--- a/packs/_source/items/equipment/ioun-stone-of-sustenance.json
+++ b/packs/_source/items/equipment/ioun-stone-of-sustenance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233477,
- "modifiedTime": 1707055839521,
+ "modifiedTime": 1715374578106,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6MDTnMG4Hcw7qZsy"
diff --git a/packs/_source/items/equipment/mantle-of-spell-resistance.json b/packs/_source/items/equipment/mantle-of-spell-resistance.json
index c5fbe86147..4dbf55f2a4 100644
--- a/packs/_source/items/equipment/mantle-of-spell-resistance.json
+++ b/packs/_source/items/equipment/mantle-of-spell-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 30000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233872,
- "modifiedTime": 1707055846888,
+ "modifiedTime": 1715374645345,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!oxzUb5j1TMsccGW4"
diff --git a/packs/_source/items/equipment/medallion-of-thoughts.json b/packs/_source/items/equipment/medallion-of-thoughts.json
index cb92089549..41e3da6edc 100644
--- a/packs/_source/items/equipment/medallion-of-thoughts.json
+++ b/packs/_source/items/equipment/medallion-of-thoughts.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233901,
- "modifiedTime": 1707055847331,
+ "modifiedTime": 1715374651043,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!skoUe223EvRYGPL6"
diff --git a/packs/_source/items/equipment/military-saddle.json b/packs/_source/items/equipment/military-saddle.json
index d6ab5ee5cd..431fc78159 100644
--- a/packs/_source/items/equipment/military-saddle.json
+++ b/packs/_source/items/equipment/military-saddle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 30,
+ "weight": {
+ "value": 30,
+ "units": "lb"
+ },
"price": {
"value": 20,
"denomination": "gp"
@@ -60,7 +63,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -78,7 +80,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,7 +104,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"_id": "PLkzJ310FzBnRrI5",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233644,
- "modifiedTime": 1704823150993,
+ "modifiedTime": 1715374605707,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PLkzJ310FzBnRrI5"
diff --git a/packs/_source/items/equipment/necklace-of-adaptation.json b/packs/_source/items/equipment/necklace-of-adaptation.json
index 52bf7f8335..651a9d4157 100644
--- a/packs/_source/items/equipment/necklace-of-adaptation.json
+++ b/packs/_source/items/equipment/necklace-of-adaptation.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233961,
- "modifiedTime": 1707055847905,
+ "modifiedTime": 1715374657287,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wwNpAz2KMukovewN"
diff --git a/packs/_source/items/equipment/necklace-of-prayer-beads.json b/packs/_source/items/equipment/necklace-of-prayer-beads.json
index 9701c8215c..42d1ba3d07 100644
--- a/packs/_source/items/equipment/necklace-of-prayer-beads.json
+++ b/packs/_source/items/equipment/necklace-of-prayer-beads.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 0,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233960,
- "modifiedTime": 1707055847878,
+ "modifiedTime": 1715374657076,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wqVSRfkcTjuhvDyx"
diff --git a/packs/_source/items/equipment/orb-of-dragonkind.json b/packs/_source/items/equipment/orb-of-dragonkind.json
index 01fa1e5b32..0ef76a7f21 100644
--- a/packs/_source/items/equipment/orb-of-dragonkind.json
+++ b/packs/_source/items/equipment/orb-of-dragonkind.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 500000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233441,
- "modifiedTime": 1707055838632,
+ "modifiedTime": 1715374571370,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!1RwJWOAeyoideLKe"
diff --git a/packs/_source/items/equipment/pack-saddle.json b/packs/_source/items/equipment/pack-saddle.json
index a5d069d468..ccba47e5d0 100644
--- a/packs/_source/items/equipment/pack-saddle.json
+++ b/packs/_source/items/equipment/pack-saddle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 15,
+ "weight": {
+ "value": 15,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -60,7 +63,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -78,7 +80,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,7 +104,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"_id": "ecz2fVDyAg8YgJGe",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233787,
- "modifiedTime": 1704823157476,
+ "modifiedTime": 1715374628490,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ecz2fVDyAg8YgJGe"
diff --git a/packs/_source/items/equipment/periapt-of-health.json b/packs/_source/items/equipment/periapt-of-health.json
index b7f6fd1a68..45b5e98289 100644
--- a/packs/_source/items/equipment/periapt-of-health.json
+++ b/packs/_source/items/equipment/periapt-of-health.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233504,
- "modifiedTime": 1707055840184,
+ "modifiedTime": 1715374583588,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9v0TPDXNa9S7aNB4"
diff --git a/packs/_source/items/equipment/periapt-of-proof-against-poison.json b/packs/_source/items/equipment/periapt-of-proof-against-poison.json
index a1317371cb..0d9710708b 100644
--- a/packs/_source/items/equipment/periapt-of-proof-against-poison.json
+++ b/packs/_source/items/equipment/periapt-of-proof-against-poison.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233869,
- "modifiedTime": 1707055846834,
+ "modifiedTime": 1715374644807,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!oYZNXHth1UYxPwVi"
diff --git a/packs/_source/items/equipment/periapt-of-wound-closure.json b/packs/_source/items/equipment/periapt-of-wound-closure.json
index cb7016384d..c030466fc9 100644
--- a/packs/_source/items/equipment/periapt-of-wound-closure.json
+++ b/packs/_source/items/equipment/periapt-of-wound-closure.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233527,
- "modifiedTime": 1707055840735,
+ "modifiedTime": 1715374587627,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DWwBkOFuYf5VN3M2"
diff --git a/packs/_source/items/equipment/reliquary.json b/packs/_source/items/equipment/reliquary.json
index 675effc3dd..ea52be115d 100644
--- a/packs/_source/items/equipment/reliquary.json
+++ b/packs/_source/items/equipment/reliquary.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233804,
- "modifiedTime": 1704823158356,
+ "modifiedTime": 1715374631456,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gP1URGq3kVIIFHJ7"
diff --git a/packs/_source/items/equipment/riding-saddle.json b/packs/_source/items/equipment/riding-saddle.json
index 64c938ae40..20ae144cd9 100644
--- a/packs/_source/items/equipment/riding-saddle.json
+++ b/packs/_source/items/equipment/riding-saddle.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 25,
+ "weight": {
+ "value": 25,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -60,7 +63,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -78,7 +80,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -101,7 +104,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"_id": "N0in6FE8DQdZrHei",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233629,
- "modifiedTime": 1704823150069,
+ "modifiedTime": 1715374602492,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!N0in6FE8DQdZrHei"
diff --git a/packs/_source/items/equipment/ring-of-acid-resistance.json b/packs/_source/items/equipment/ring-of-acid-resistance.json
index ebebc034d4..873ad2b4ff 100644
--- a/packs/_source/items/equipment/ring-of-acid-resistance.json
+++ b/packs/_source/items/equipment/ring-of-acid-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233690,
- "modifiedTime": 1707055843585,
+ "modifiedTime": 1715374614599,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WO8DLfz3G2QZ5njs"
diff --git a/packs/_source/items/equipment/ring-of-air-elemental-command.json b/packs/_source/items/equipment/ring-of-air-elemental-command.json
index f991d7f908..46d9e26bd5 100644
--- a/packs/_source/items/equipment/ring-of-air-elemental-command.json
+++ b/packs/_source/items/equipment/ring-of-air-elemental-command.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 35000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233701,
- "modifiedTime": 1707055843908,
+ "modifiedTime": 1715374616971,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XZWHQ20ynJBK6xmU"
diff --git a/packs/_source/items/equipment/ring-of-animal-influence.json b/packs/_source/items/equipment/ring-of-animal-influence.json
index 79c1dbf401..bf4392a16d 100644
--- a/packs/_source/items/equipment/ring-of-animal-influence.json
+++ b/packs/_source/items/equipment/ring-of-animal-influence.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233537,
- "modifiedTime": 1707055841061,
+ "modifiedTime": 1715374589664,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ElLfmohtIFMagr5f"
diff --git a/packs/_source/items/equipment/ring-of-cold-resistance.json b/packs/_source/items/equipment/ring-of-cold-resistance.json
index 1bae81b47d..61b4981022 100644
--- a/packs/_source/items/equipment/ring-of-cold-resistance.json
+++ b/packs/_source/items/equipment/ring-of-cold-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233801,
- "modifiedTime": 1707055845499,
+ "modifiedTime": 1715374630808,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fvezXwRJ5PqUf5NN"
diff --git a/packs/_source/items/equipment/ring-of-djinni-summoning.json b/packs/_source/items/equipment/ring-of-djinni-summoning.json
index 88a8d6c2fe..6ff72aa8a7 100644
--- a/packs/_source/items/equipment/ring-of-djinni-summoning.json
+++ b/packs/_source/items/equipment/ring-of-djinni-summoning.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 45000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233815,
- "modifiedTime": 1707055845759,
+ "modifiedTime": 1715374633702,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hdlBOEbEjiwUjTW5"
diff --git a/packs/_source/items/equipment/ring-of-earth-elemental-command.json b/packs/_source/items/equipment/ring-of-earth-elemental-command.json
index d6abb5c229..e22ff5c897 100644
--- a/packs/_source/items/equipment/ring-of-earth-elemental-command.json
+++ b/packs/_source/items/equipment/ring-of-earth-elemental-command.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 31000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233717,
- "modifiedTime": 1707055844230,
+ "modifiedTime": 1715374619923,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Zf7kBZa5f4WBepn1"
diff --git a/packs/_source/items/equipment/ring-of-evasion.json b/packs/_source/items/equipment/ring-of-evasion.json
index d1c71e401f..89111269a4 100644
--- a/packs/_source/items/equipment/ring-of-evasion.json
+++ b/packs/_source/items/equipment/ring-of-evasion.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233451,
- "modifiedTime": 1707055838897,
+ "modifiedTime": 1715374573243,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2wxqnjpnPmkpPCC5"
diff --git a/packs/_source/items/equipment/ring-of-feather-falling.json b/packs/_source/items/equipment/ring-of-feather-falling.json
index 2acbe4b625..f44c44e80e 100644
--- a/packs/_source/items/equipment/ring-of-feather-falling.json
+++ b/packs/_source/items/equipment/ring-of-feather-falling.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233582,
- "modifiedTime": 1707055841925,
+ "modifiedTime": 1715374598025,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JyYwliYiWEw2g0yJ"
diff --git a/packs/_source/items/equipment/ring-of-fire-elemental-command.json b/packs/_source/items/equipment/ring-of-fire-elemental-command.json
index 8704f88571..efe249ce1c 100644
--- a/packs/_source/items/equipment/ring-of-fire-elemental-command.json
+++ b/packs/_source/items/equipment/ring-of-fire-elemental-command.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 17000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233615,
- "modifiedTime": 1707055842033,
+ "modifiedTime": 1715374599295,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!L9KBLub5vfb3mTDz"
diff --git a/packs/_source/items/equipment/ring-of-fire-resistance.json b/packs/_source/items/equipment/ring-of-fire-resistance.json
index 94c028c4f4..e4941a383f 100644
--- a/packs/_source/items/equipment/ring-of-fire-resistance.json
+++ b/packs/_source/items/equipment/ring-of-fire-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233454,
- "modifiedTime": 1707055839015,
+ "modifiedTime": 1715374574002,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3X7vdOjnCSpi40yn"
diff --git a/packs/_source/items/equipment/ring-of-force-resistance.json b/packs/_source/items/equipment/ring-of-force-resistance.json
index 79afb6537f..85bef8ccc7 100644
--- a/packs/_source/items/equipment/ring-of-force-resistance.json
+++ b/packs/_source/items/equipment/ring-of-force-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233664,
- "modifiedTime": 1707055843052,
+ "modifiedTime": 1715374609154,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ScxK8YNU5dWELhlQ"
diff --git a/packs/_source/items/equipment/ring-of-free-action.json b/packs/_source/items/equipment/ring-of-free-action.json
index c22a89a67e..fe2ee78211 100644
--- a/packs/_source/items/equipment/ring-of-free-action.json
+++ b/packs/_source/items/equipment/ring-of-free-action.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 20000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233818,
- "modifiedTime": 1707055845862,
+ "modifiedTime": 1715374634105,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!i2puCDRaTxkuFfB4"
diff --git a/packs/_source/items/equipment/ring-of-invisibility.json b/packs/_source/items/equipment/ring-of-invisibility.json
index 17b67f93cc..1f1f114967 100644
--- a/packs/_source/items/equipment/ring-of-invisibility.json
+++ b/packs/_source/items/equipment/ring-of-invisibility.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 10000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233439,
- "modifiedTime": 1707055838573,
+ "modifiedTime": 1715374570850,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!1J0dsxyKRhVXYQf5"
diff --git a/packs/_source/items/equipment/ring-of-jumping.json b/packs/_source/items/equipment/ring-of-jumping.json
index c432ba0257..ee91229c0b 100644
--- a/packs/_source/items/equipment/ring-of-jumping.json
+++ b/packs/_source/items/equipment/ring-of-jumping.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233962,
- "modifiedTime": 1707055847955,
+ "modifiedTime": 1715374657594,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!x7LfMrLafLKfemGH"
diff --git a/packs/_source/items/equipment/ring-of-lightning-resistance.json b/packs/_source/items/equipment/ring-of-lightning-resistance.json
index 93d160147c..f116f20ecf 100644
--- a/packs/_source/items/equipment/ring-of-lightning-resistance.json
+++ b/packs/_source/items/equipment/ring-of-lightning-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233699,
- "modifiedTime": 1707055843799,
+ "modifiedTime": 1715374616315,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XJ8CG4UvLELCmOi2"
diff --git a/packs/_source/items/equipment/ring-of-mind-shielding.json b/packs/_source/items/equipment/ring-of-mind-shielding.json
index d0a783695e..7cc9540772 100644
--- a/packs/_source/items/equipment/ring-of-mind-shielding.json
+++ b/packs/_source/items/equipment/ring-of-mind-shielding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233742,
- "modifiedTime": 1707055844890,
+ "modifiedTime": 1715374625048,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dGnkwePemh7ovuDv"
diff --git a/packs/_source/items/equipment/ring-of-necrotic-resistance.json b/packs/_source/items/equipment/ring-of-necrotic-resistance.json
index 73314d0afc..76ce9c77b8 100644
--- a/packs/_source/items/equipment/ring-of-necrotic-resistance.json
+++ b/packs/_source/items/equipment/ring-of-necrotic-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233881,
- "modifiedTime": 1707055846942,
+ "modifiedTime": 1715374647218,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qMGkmzfLHfXd7DiJ"
diff --git a/packs/_source/items/equipment/ring-of-poison-resistance.json b/packs/_source/items/equipment/ring-of-poison-resistance.json
index db5f1deec2..1c4e1a0b9f 100644
--- a/packs/_source/items/equipment/ring-of-poison-resistance.json
+++ b/packs/_source/items/equipment/ring-of-poison-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233470,
- "modifiedTime": 1707055839332,
+ "modifiedTime": 1715374576737,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5SorTMl8NKDO9Yge"
diff --git a/packs/_source/items/equipment/ring-of-protection.json b/packs/_source/items/equipment/ring-of-protection.json
index 203735ea14..c6a80a917b 100644
--- a/packs/_source/items/equipment/ring-of-protection.json
+++ b/packs/_source/items/equipment/ring-of-protection.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -152,10 +161,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233653,
- "modifiedTime": 1707055842942,
+ "modifiedTime": 1715374607299,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QtmVEreNIWEVOoLR"
diff --git a/packs/_source/items/equipment/ring-of-psychic-resistance.json b/packs/_source/items/equipment/ring-of-psychic-resistance.json
index 126a571f04..1567887e3b 100644
--- a/packs/_source/items/equipment/ring-of-psychic-resistance.json
+++ b/packs/_source/items/equipment/ring-of-psychic-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233648,
- "modifiedTime": 1707055842888,
+ "modifiedTime": 1715374606422,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Q7E6MgPzVkwBeZ6l"
diff --git a/packs/_source/items/equipment/ring-of-radiant-resistance.json b/packs/_source/items/equipment/ring-of-radiant-resistance.json
index 60da3a8056..e32cca78ef 100644
--- a/packs/_source/items/equipment/ring-of-radiant-resistance.json
+++ b/packs/_source/items/equipment/ring-of-radiant-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233575,
- "modifiedTime": 1707055841657,
+ "modifiedTime": 1715374596608,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IrC5LPbWNxlAQoK7"
diff --git a/packs/_source/items/equipment/ring-of-regeneration.json b/packs/_source/items/equipment/ring-of-regeneration.json
index a6678f41af..4b858767f7 100644
--- a/packs/_source/items/equipment/ring-of-regeneration.json
+++ b/packs/_source/items/equipment/ring-of-regeneration.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "heal",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233509,
- "modifiedTime": 1707055840269,
+ "modifiedTime": 1715374584388,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!AweD4kpKGM7Ilu3n"
diff --git a/packs/_source/items/equipment/ring-of-shooting-stars.json b/packs/_source/items/equipment/ring-of-shooting-stars.json
index 982bb37405..a54eadf382 100644
--- a/packs/_source/items/equipment/ring-of-shooting-stars.json
+++ b/packs/_source/items/equipment/ring-of-shooting-stars.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 14000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233789,
- "modifiedTime": 1707055845259,
+ "modifiedTime": 1715374628918,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!etA2SBgWwduCLgLT"
diff --git a/packs/_source/items/equipment/ring-of-spell-storing.json b/packs/_source/items/equipment/ring-of-spell-storing.json
index b2a5e63595..50daf75dce 100644
--- a/packs/_source/items/equipment/ring-of-spell-storing.json
+++ b/packs/_source/items/equipment/ring-of-spell-storing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233499,
- "modifiedTime": 1707055839997,
+ "modifiedTime": 1715374582781,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9cIlRtKDtDXQtElf"
diff --git a/packs/_source/items/equipment/ring-of-spell-turning.json b/packs/_source/items/equipment/ring-of-spell-turning.json
index cb3283577b..c309ddb2f1 100644
--- a/packs/_source/items/equipment/ring-of-spell-turning.json
+++ b/packs/_source/items/equipment/ring-of-spell-turning.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 30000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233492,
- "modifiedTime": 1707055839861,
+ "modifiedTime": 1715374581151,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8PI1EL8xHLq4tXKr"
diff --git a/packs/_source/items/equipment/ring-of-swimming.json b/packs/_source/items/equipment/ring-of-swimming.json
index 785b27129c..2a5c2d3258 100644
--- a/packs/_source/items/equipment/ring-of-swimming.json
+++ b/packs/_source/items/equipment/ring-of-swimming.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233721,
- "modifiedTime": 1707055844390,
+ "modifiedTime": 1715374620796,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aA7MbjnpHYoYvmuW"
diff --git a/packs/_source/items/equipment/ring-of-telekinesis.json b/packs/_source/items/equipment/ring-of-telekinesis.json
index a788a669bc..05d1ce36e1 100644
--- a/packs/_source/items/equipment/ring-of-telekinesis.json
+++ b/packs/_source/items/equipment/ring-of-telekinesis.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 80000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233817,
- "modifiedTime": 1707055845835,
+ "modifiedTime": 1715374634001,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hxfOtvFrY1PXHQN1"
diff --git a/packs/_source/items/equipment/ring-of-the-ram.json b/packs/_source/items/equipment/ring-of-the-ram.json
index 73876282da..6eb62c4950 100644
--- a/packs/_source/items/equipment/ring-of-the-ram.json
+++ b/packs/_source/items/equipment/ring-of-the-ram.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "rsak",
- "attackBonus": "7",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -84,7 +86,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -109,7 +112,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "7",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -120,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233887,
- "modifiedTime": 1707055847047,
+ "modifiedTime": 1715374648356,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qw05Om9XWqTMoio2"
diff --git a/packs/_source/items/equipment/ring-of-three-wishes.json b/packs/_source/items/equipment/ring-of-three-wishes.json
index bf71e55795..20a10ce692 100644
--- a/packs/_source/items/equipment/ring-of-three-wishes.json
+++ b/packs/_source/items/equipment/ring-of-three-wishes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 50000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233791,
- "modifiedTime": 1707055845313,
+ "modifiedTime": 1715374629118,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ewXgnWiYQhS8KArS"
diff --git a/packs/_source/items/equipment/ring-of-thunder-resistance.json b/packs/_source/items/equipment/ring-of-thunder-resistance.json
index 33c7ed4074..b4d8f6bd41 100644
--- a/packs/_source/items/equipment/ring-of-thunder-resistance.json
+++ b/packs/_source/items/equipment/ring-of-thunder-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233574,
- "modifiedTime": 1707055841631,
+ "modifiedTime": 1715374596500,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IpBBqr0r7JanyVn0"
diff --git a/packs/_source/items/equipment/ring-of-warmth.json b/packs/_source/items/equipment/ring-of-warmth.json
index 92608f45e1..d071f103b9 100644
--- a/packs/_source/items/equipment/ring-of-warmth.json
+++ b/packs/_source/items/equipment/ring-of-warmth.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233450,
- "modifiedTime": 1707055838870,
+ "modifiedTime": 1715374573037,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2veAOEyfbDJuxR8Y"
diff --git a/packs/_source/items/equipment/ring-of-water-elemental-command.json b/packs/_source/items/equipment/ring-of-water-elemental-command.json
index b507572584..9a09ca9168 100644
--- a/packs/_source/items/equipment/ring-of-water-elemental-command.json
+++ b/packs/_source/items/equipment/ring-of-water-elemental-command.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 25000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233565,
- "modifiedTime": 1707055841496,
+ "modifiedTime": 1715374594863,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HnIERWmmra74hSCw"
diff --git a/packs/_source/items/equipment/ring-of-water-walking.json b/packs/_source/items/equipment/ring-of-water-walking.json
index e44d0ae0ed..9c8e57fa60 100644
--- a/packs/_source/items/equipment/ring-of-water-walking.json
+++ b/packs/_source/items/equipment/ring-of-water-walking.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233616,
- "modifiedTime": 1707055842089,
+ "modifiedTime": 1715374599624,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LC5LsQOPwoHQW9Mi"
diff --git a/packs/_source/items/equipment/ring-of-x-ray-vision.json b/packs/_source/items/equipment/ring-of-x-ray-vision.json
index 34af428853..4ab2ca5b32 100644
--- a/packs/_source/items/equipment/ring-of-x-ray-vision.json
+++ b/packs/_source/items/equipment/ring-of-x-ray-vision.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233818,
- "modifiedTime": 1707055845888,
+ "modifiedTime": 1715374634207,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!i3njMqHc689GvHDn"
diff --git a/packs/_source/items/equipment/robe-of-eyes.json b/packs/_source/items/equipment/robe-of-eyes.json
index c0ec09d3c4..697418e45a 100644
--- a/packs/_source/items/equipment/robe-of-eyes.json
+++ b/packs/_source/items/equipment/robe-of-eyes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 30000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233675,
- "modifiedTime": 1707055843295,
+ "modifiedTime": 1715374611425,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!U74TPNQLJZbHJyCk"
diff --git a/packs/_source/items/equipment/robe-of-scintillating-colors.json b/packs/_source/items/equipment/robe-of-scintillating-colors.json
index aad6c7920d..929add93da 100644
--- a/packs/_source/items/equipment/robe-of-scintillating-colors.json
+++ b/packs/_source/items/equipment/robe-of-scintillating-colors.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233579,
- "modifiedTime": 1707055841844,
+ "modifiedTime": 1715374597374,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JRJpKZyamkpa7awv"
diff --git a/packs/_source/items/equipment/robe-of-stars.json b/packs/_source/items/equipment/robe-of-stars.json
index 98e9c08449..633b184e31 100644
--- a/packs/_source/items/equipment/robe-of-stars.json
+++ b/packs/_source/items/equipment/robe-of-stars.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 60000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -88,7 +90,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -113,7 +116,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -124,10 +133,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233474,
- "modifiedTime": 1707055839453,
+ "modifiedTime": 1715374577456,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!66UkbfH0PVwo4HgA"
diff --git a/packs/_source/items/equipment/robe-of-the-archmagi.json b/packs/_source/items/equipment/robe-of-the-archmagi.json
index 52277e3407..faa81dfad3 100644
--- a/packs/_source/items/equipment/robe-of-the-archmagi.json
+++ b/packs/_source/items/equipment/robe-of-the-archmagi.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 34000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -146,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233856,
- "modifiedTime": 1707055846541,
+ "modifiedTime": 1715374642022,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mr96Z8YTI490ExhP"
diff --git a/packs/_source/items/equipment/robe-of-useful-items.json b/packs/_source/items/equipment/robe-of-useful-items.json
index f544c926e0..830924bee9 100644
--- a/packs/_source/items/equipment/robe-of-useful-items.json
+++ b/packs/_source/items/equipment/robe-of-useful-items.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 140,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "other",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": 0
+ "dex": 0,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233448,
- "modifiedTime": 1707055838814,
+ "modifiedTime": 1715374572840,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2ksm2KXCY3vBHTAx"
diff --git a/packs/_source/items/equipment/robes.json b/packs/_source/items/equipment/robes.json
index f608db2175..86707c1271 100644
--- a/packs/_source/items/equipment/robes.json
+++ b/packs/_source/items/equipment/robes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233488,
- "modifiedTime": 1704823143604,
+ "modifiedTime": 1715374580444,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8GCEodUsTEEpBlO6"
diff --git a/packs/_source/items/equipment/slippers-of-spider-climbing.json b/packs/_source/items/equipment/slippers-of-spider-climbing.json
index f6b8e84327..df055b5268 100644
--- a/packs/_source/items/equipment/slippers-of-spider-climbing.json
+++ b/packs/_source/items/equipment/slippers-of-spider-climbing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233717,
- "modifiedTime": 1707055844257,
+ "modifiedTime": 1715374620024,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZgXJE9pjvZLMCeHg"
diff --git a/packs/_source/items/equipment/stone-of-good-luck-luckstone.json b/packs/_source/items/equipment/stone-of-good-luck-luckstone.json
index 5b1e897682..46908c3b15 100644
--- a/packs/_source/items/equipment/stone-of-good-luck-luckstone.json
+++ b/packs/_source/items/equipment/stone-of-good-luck-luckstone.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 4200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -80,7 +82,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [
{
@@ -152,10 +161,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233443,
- "modifiedTime": 1707055838695,
+ "modifiedTime": 1715374571817,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!296Zgo9RhltWShE1"
diff --git a/packs/_source/items/equipment/travelers-clothes.json b/packs/_source/items/equipment/travelers-clothes.json
index e24dcf7832..ca0a1b7954 100644
--- a/packs/_source/items/equipment/travelers-clothes.json
+++ b/packs/_source/items/equipment/travelers-clothes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233666,
- "modifiedTime": 1704823152100,
+ "modifiedTime": 1715374609573,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SsAmWV6YBqeOFihT"
diff --git a/packs/_source/items/equipment/vestments.json b/packs/_source/items/equipment/vestments.json
index 2dccdb906d..00ed5c1e44 100644
--- a/packs/_source/items/equipment/vestments.json
+++ b/packs/_source/items/equipment/vestments.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -102,7 +105,13 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -113,10 +122,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233826,
- "modifiedTime": 1704823159601,
+ "modifiedTime": 1715374635677,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!irtqrzaUCeshmTZp"
diff --git a/packs/_source/items/equipment/winged-boots.json b/packs/_source/items/equipment/winged-boots.json
index 592968f0f8..c74180ca57 100644
--- a/packs/_source/items/equipment/winged-boots.json
+++ b/packs/_source/items/equipment/winged-boots.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233710,
- "modifiedTime": 1707055844120,
+ "modifiedTime": 1715374618649,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YjImJ3cVnArHH4ES"
diff --git a/packs/_source/items/equipment/wings-of-flying.json b/packs/_source/items/equipment/wings-of-flying.json
index 8da3dcac87..469b59f141 100644
--- a/packs/_source/items/equipment/wings-of-flying.json
+++ b/packs/_source/items/equipment/wings-of-flying.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": null,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233551,
- "modifiedTime": 1707055841226,
+ "modifiedTime": 1715374591733,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FkDyLSpiynKTQZdi"
diff --git a/packs/_source/items/food/feed.json b/packs/_source/items/food/feed.json
index 820c6fb98a..0cd93e3f67 100644
--- a/packs/_source/items/food/feed.json
+++ b/packs/_source/items/food/feed.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,7 +88,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "eEzlhT4dJAXmc3nz",
@@ -98,10 +107,10 @@
"_id": "KJuLguMZCThrQOEx",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233611,
- "modifiedTime": 1704823148958,
+ "modifiedTime": 1715374598468,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KJuLguMZCThrQOEx"
diff --git a/packs/_source/items/food/rations.json b/packs/_source/items/food/rations.json
index 7ec76fc998..1c7d68850f 100644
--- a/packs/_source/items/food/rations.json
+++ b/packs/_source/items/food/rations.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "eEzlhT4dJAXmc3nz",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233793,
- "modifiedTime": 1704823157729,
+ "modifiedTime": 1715374629426,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!f4w4GxBi0nYXmhX4"
diff --git a/packs/_source/items/food/waterskin.json b/packs/_source/items/food/waterskin.json
index 9da374b10a..9d1612ee98 100644
--- a/packs/_source/items/food/waterskin.json
+++ b/packs/_source/items/food/waterskin.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "eEzlhT4dJAXmc3nz",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233681,
- "modifiedTime": 1704823153011,
+ "modifiedTime": 1715374612732,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Uv0ilmzbWvqmlCVH"
diff --git a/packs/_source/items/loot/abacus.json b/packs/_source/items/loot/abacus.json
index 16d043c621..a4be4998ba 100644
--- a/packs/_source/items/loot/abacus.json
+++ b/packs/_source/items/loot/abacus.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233787,
- "modifiedTime": 1704823157450,
+ "modifiedTime": 1715374628398,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ea4xclqsksEQB1QF"
diff --git a/packs/_source/items/loot/bag-of-sand.json b/packs/_source/items/loot/bag-of-sand.json
index 8ba81d16e5..6155c717a3 100644
--- a/packs/_source/items/loot/bag-of-sand.json
+++ b/packs/_source/items/loot/bag-of-sand.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233822,
- "modifiedTime": 1704823159394,
+ "modifiedTime": 1715374634946,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!iOMRrzfzFCfPGuD6"
diff --git a/packs/_source/items/loot/bedroll.json b/packs/_source/items/loot/bedroll.json
index cac0f54bae..c681fe40c3 100644
--- a/packs/_source/items/loot/bedroll.json
+++ b/packs/_source/items/loot/bedroll.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233526,
- "modifiedTime": 1704823145777,
+ "modifiedTime": 1715374587427,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DVXmyetZuvxbzAwW"
diff --git a/packs/_source/items/loot/bell.json b/packs/_source/items/loot/bell.json
index e992b06a56..45846ff710 100644
--- a/packs/_source/items/loot/bell.json
+++ b/packs/_source/items/loot/bell.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233541,
- "modifiedTime": 1704823146626,
+ "modifiedTime": 1715374590284,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!F6GwSqjErX1u35Re"
diff --git a/packs/_source/items/loot/blanket.json b/packs/_source/items/loot/blanket.json
index aaae02e905..2faf6b6e3f 100644
--- a/packs/_source/items/loot/blanket.json
+++ b/packs/_source/items/loot/blanket.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233461,
- "modifiedTime": 1704823141982,
+ "modifiedTime": 1715374575167,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!419eNv7xp2p7Xlo5"
diff --git a/packs/_source/items/loot/block-of-incense.json b/packs/_source/items/loot/block-of-incense.json
index dbd9425798..45c13713b4 100644
--- a/packs/_source/items/loot/block-of-incense.json
+++ b/packs/_source/items/loot/block-of-incense.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233781,
- "modifiedTime": 1704823157111,
+ "modifiedTime": 1715374627247,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eJY20LOs3pOkRDPl"
diff --git a/packs/_source/items/loot/book-of-lore.json b/packs/_source/items/loot/book-of-lore.json
index 6c5e6bd05d..3fb4bdc55d 100644
--- a/packs/_source/items/loot/book-of-lore.json
+++ b/packs/_source/items/loot/book-of-lore.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233842,
- "modifiedTime": 1704823160521,
+ "modifiedTime": 1715374639008,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!l794iywHk8Wc6Uvi"
diff --git a/packs/_source/items/loot/book-of-shadows.json b/packs/_source/items/loot/book-of-shadows.json
index 6c9e9bde45..fd1f246126 100644
--- a/packs/_source/items/loot/book-of-shadows.json
+++ b/packs/_source/items/loot/book-of-shadows.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 0,
"denomination": "gp"
@@ -43,10 +46,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233521,
- "modifiedTime": 1707055840627,
+ "modifiedTime": 1715374586646,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CwWbeQ6XyqFzbMYw"
diff --git a/packs/_source/items/loot/book.json b/packs/_source/items/loot/book.json
index 8458fae81d..8f15cd6b17 100644
--- a/packs/_source/items/loot/book.json
+++ b/packs/_source/items/loot/book.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233655,
- "modifiedTime": 1704823151590,
+ "modifiedTime": 1715374607740,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!RMi9efrW9ouHVLI2"
diff --git a/packs/_source/items/loot/censer.json b/packs/_source/items/loot/censer.json
index 51b129f793..f5996078a1 100644
--- a/packs/_source/items/loot/censer.json
+++ b/packs/_source/items/loot/censer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233486,
- "modifiedTime": 1704823143459,
+ "modifiedTime": 1715374579926,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7ztvHyYJCcOOAWmR"
diff --git a/packs/_source/items/loot/chalk.json b/packs/_source/items/loot/chalk.json
index 69a7b92dab..551822a303 100644
--- a/packs/_source/items/loot/chalk.json
+++ b/packs/_source/items/loot/chalk.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233471,
- "modifiedTime": 1704823142482,
+ "modifiedTime": 1715374576840,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5fJn3LQ2eQG7luEO"
diff --git a/packs/_source/items/loot/crowbar.json b/packs/_source/items/loot/crowbar.json
index 3694231b62..4626ea5c8c 100644
--- a/packs/_source/items/loot/crowbar.json
+++ b/packs/_source/items/loot/crowbar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233682,
- "modifiedTime": 1704823153102,
+ "modifiedTime": 1715374613042,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!V5UAjT3ed6sDNtgm"
diff --git a/packs/_source/items/loot/fishing-tackle.json b/packs/_source/items/loot/fishing-tackle.json
index 8b086b220b..20085ed9c8 100644
--- a/packs/_source/items/loot/fishing-tackle.json
+++ b/packs/_source/items/loot/fishing-tackle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233813,
- "modifiedTime": 1704823158910,
+ "modifiedTime": 1715374633272,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hOzuSDqmOIOx8z3Z"
diff --git a/packs/_source/items/loot/grappling-hook.json b/packs/_source/items/loot/grappling-hook.json
index f3ef36b178..a5b6dc2c7d 100644
--- a/packs/_source/items/loot/grappling-hook.json
+++ b/packs/_source/items/loot/grappling-hook.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233913,
- "modifiedTime": 1704823164478,
+ "modifiedTime": 1715374652908,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tfDxZIKDpOkz6pbx"
diff --git a/packs/_source/items/loot/hammer.json b/packs/_source/items/loot/hammer.json
index 58e8d15b58..51878fcd0b 100644
--- a/packs/_source/items/loot/hammer.json
+++ b/packs/_source/items/loot/hammer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233437,
- "modifiedTime": 1704823140461,
+ "modifiedTime": 1715374570442,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!14pNRT4sZy9rgvhb"
diff --git a/packs/_source/items/loot/hourglass.json b/packs/_source/items/loot/hourglass.json
index 3dad9d5cfa..ec7bfee08a 100644
--- a/packs/_source/items/loot/hourglass.json
+++ b/packs/_source/items/loot/hourglass.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233553,
- "modifiedTime": 1704823147225,
+ "modifiedTime": 1715374592536,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!G7LqGzKR5ts0WlJ9"
diff --git a/packs/_source/items/loot/ink-bottle.json b/packs/_source/items/loot/ink-bottle.json
index 97d46f7209..f5a77256fc 100644
--- a/packs/_source/items/loot/ink-bottle.json
+++ b/packs/_source/items/loot/ink-bottle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.06,
+ "weight": {
+ "value": 0.06,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233743,
- "modifiedTime": 1704823156619,
+ "modifiedTime": 1715374625389,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dP7jMKyHTTgVb3ii"
diff --git a/packs/_source/items/loot/ink-pen.json b/packs/_source/items/loot/ink-pen.json
index aec3f34dce..e3db95ed3d 100644
--- a/packs/_source/items/loot/ink-pen.json
+++ b/packs/_source/items/loot/ink-pen.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233919,
- "modifiedTime": 1704823164845,
+ "modifiedTime": 1715374654169,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uVm7MiB71QblfnoY"
diff --git a/packs/_source/items/loot/ladder-10-foot.json b/packs/_source/items/loot/ladder-10-foot.json
index 13ec8945be..5825d6f9e7 100644
--- a/packs/_source/items/loot/ladder-10-foot.json
+++ b/packs/_source/items/loot/ladder-10-foot.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 25,
+ "weight": {
+ "value": 25,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233785,
- "modifiedTime": 1704823157330,
+ "modifiedTime": 1715374627995,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eQTKbhnpkrtXUfwN"
diff --git a/packs/_source/items/loot/magnifying-glass.json b/packs/_source/items/loot/magnifying-glass.json
index b0e4e0f369..cfa9935b14 100644
--- a/packs/_source/items/loot/magnifying-glass.json
+++ b/packs/_source/items/loot/magnifying-glass.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 100,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233646,
- "modifiedTime": 1704823151084,
+ "modifiedTime": 1715374606011,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PV0sn2Nlr8CNn4W9"
diff --git a/packs/_source/items/loot/merchants-scale.json b/packs/_source/items/loot/merchants-scale.json
index 6ef987ffb0..d9fa1da3c3 100644
--- a/packs/_source/items/loot/merchants-scale.json
+++ b/packs/_source/items/loot/merchants-scale.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233951,
- "modifiedTime": 1704823165150,
+ "modifiedTime": 1715374655204,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!vJvb6fx3JVPmhG8x"
diff --git a/packs/_source/items/loot/mess-kit.json b/packs/_source/items/loot/mess-kit.json
index 41ae7d7461..6c567d3e64 100644
--- a/packs/_source/items/loot/mess-kit.json
+++ b/packs/_source/items/loot/mess-kit.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233682,
- "modifiedTime": 1704823153077,
+ "modifiedTime": 1715374612941,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!V13fjV5oSmvbRdgP"
diff --git a/packs/_source/items/loot/miners-pick.json b/packs/_source/items/loot/miners-pick.json
index 866480cbe0..edfb1e2f9a 100644
--- a/packs/_source/items/loot/miners-pick.json
+++ b/packs/_source/items/loot/miners-pick.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233696,
- "modifiedTime": 1704823153862,
+ "modifiedTime": 1715374615682,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!X5knPtrQAT8GePJ4"
diff --git a/packs/_source/items/loot/paper.json b/packs/_source/items/loot/paper.json
index d81c266070..5536f762b9 100644
--- a/packs/_source/items/loot/paper.json
+++ b/packs/_source/items/loot/paper.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233796,
- "modifiedTime": 1704823157888,
+ "modifiedTime": 1715374629951,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fNMkFCOvMiW2Rh3t"
diff --git a/packs/_source/items/loot/parchment.json b/packs/_source/items/loot/parchment.json
index 3d5db6e80f..1fac8648cb 100644
--- a/packs/_source/items/loot/parchment.json
+++ b/packs/_source/items/loot/parchment.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233688,
- "modifiedTime": 1704823153464,
+ "modifiedTime": 1715374614283,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WFQS2vT8ddrFjTJg"
diff --git a/packs/_source/items/loot/perfume.json b/packs/_source/items/loot/perfume.json
index 0f787efc5c..b2c2813410 100644
--- a/packs/_source/items/loot/perfume.json
+++ b/packs/_source/items/loot/perfume.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233922,
- "modifiedTime": 1704823165056,
+ "modifiedTime": 1715374654899,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uuh4UH3Jx5CsFjdA"
diff --git a/packs/_source/items/loot/pole.json b/packs/_source/items/loot/pole.json
index b248a87e8c..0162463898 100644
--- a/packs/_source/items/loot/pole.json
+++ b/packs/_source/items/loot/pole.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233915,
- "modifiedTime": 1704823164602,
+ "modifiedTime": 1715374653324,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tut1jbW3UCsrUjCG"
diff --git a/packs/_source/items/loot/prayer-book.json b/packs/_source/items/loot/prayer-book.json
index 58d2ac3c9e..d1a77948f6 100644
--- a/packs/_source/items/loot/prayer-book.json
+++ b/packs/_source/items/loot/prayer-book.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233870,
- "modifiedTime": 1704823162229,
+ "modifiedTime": 1715374644910,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!odV5cq2HSLSCH69k"
diff --git a/packs/_source/items/loot/prayer-wheel.json b/packs/_source/items/loot/prayer-wheel.json
index c658a652cb..2236a3ef89 100644
--- a/packs/_source/items/loot/prayer-wheel.json
+++ b/packs/_source/items/loot/prayer-wheel.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233632,
- "modifiedTime": 1704823150287,
+ "modifiedTime": 1715374603272,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Nd4r4hocpfu6fYDP"
diff --git a/packs/_source/items/loot/sealing-wax.json b/packs/_source/items/loot/sealing-wax.json
index 54030140f7..499a021f01 100644
--- a/packs/_source/items/loot/sealing-wax.json
+++ b/packs/_source/items/loot/sealing-wax.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233460,
- "modifiedTime": 1704823141954,
+ "modifiedTime": 1715374575053,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3uEyuCfnAzGkwAn5"
diff --git a/packs/_source/items/loot/shovel.json b/packs/_source/items/loot/shovel.json
index d234a514af..26822a391c 100644
--- a/packs/_source/items/loot/shovel.json
+++ b/packs/_source/items/loot/shovel.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233884,
- "modifiedTime": 1704823163044,
+ "modifiedTime": 1715374647719,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qWlXDEgqdmdZWoab"
diff --git a/packs/_source/items/loot/signal-whistle.json b/packs/_source/items/loot/signal-whistle.json
index ccc541bbfc..ecea650aca 100644
--- a/packs/_source/items/loot/signal-whistle.json
+++ b/packs/_source/items/loot/signal-whistle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233974,
- "modifiedTime": 1704823166595,
+ "modifiedTime": 1715374660206,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!z67d1DZzqDPmgEwP"
diff --git a/packs/_source/items/loot/signet-ring.json b/packs/_source/items/loot/signet-ring.json
index 7f7a3e15f7..23c2206b54 100644
--- a/packs/_source/items/loot/signet-ring.json
+++ b/packs/_source/items/loot/signet-ring.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233838,
- "modifiedTime": 1704823160257,
+ "modifiedTime": 1715374638027,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kdkpSZMUHGXGM15H"
diff --git a/packs/_source/items/loot/sledgehammer.json b/packs/_source/items/loot/sledgehammer.json
index 824f1ec197..d993a38b7d 100644
--- a/packs/_source/items/loot/sledgehammer.json
+++ b/packs/_source/items/loot/sledgehammer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233496,
- "modifiedTime": 1704823144090,
+ "modifiedTime": 1715374582059,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9G9QGSPgpZDSsm37"
diff --git a/packs/_source/items/loot/small-knife.json b/packs/_source/items/loot/small-knife.json
index 3d09e59714..fca58eb061 100644
--- a/packs/_source/items/loot/small-knife.json
+++ b/packs/_source/items/loot/small-knife.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233459,
- "modifiedTime": 1704823141893,
+ "modifiedTime": 1715374574860,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3nVvaHVfHsgwGlkL"
diff --git a/packs/_source/items/loot/soap.json b/packs/_source/items/loot/soap.json
index 07ab88ea4a..29e4154def 100644
--- a/packs/_source/items/loot/soap.json
+++ b/packs/_source/items/loot/soap.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "cp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233655,
- "modifiedTime": 1704823151562,
+ "modifiedTime": 1715374607644,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!REBWkTKe6lJaIkpn"
diff --git a/packs/_source/items/loot/spellbook.json b/packs/_source/items/loot/spellbook.json
index 63b86a96ce..3877f93451 100644
--- a/packs/_source/items/loot/spellbook.json
+++ b/packs/_source/items/loot/spellbook.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233616,
- "modifiedTime": 1704823149270,
+ "modifiedTime": 1715374599511,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LBajgahniRJbAgDr"
diff --git a/packs/_source/items/loot/spyglass.json b/packs/_source/items/loot/spyglass.json
index 2dee236c08..6e4c14964c 100644
--- a/packs/_source/items/loot/spyglass.json
+++ b/packs/_source/items/loot/spyglass.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233688,
- "modifiedTime": 1704823153438,
+ "modifiedTime": 1715374614179,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WCafDVKITxwnlf2x"
diff --git a/packs/_source/items/loot/steel-mirror.json b/packs/_source/items/loot/steel-mirror.json
index 881d4dfe55..115463c592 100644
--- a/packs/_source/items/loot/steel-mirror.json
+++ b/packs/_source/items/loot/steel-mirror.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233563,
- "modifiedTime": 1704823147768,
+ "modifiedTime": 1715374594453,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HZsvDPmvysQKGzGy"
diff --git a/packs/_source/items/loot/stick-of-incense.json b/packs/_source/items/loot/stick-of-incense.json
index be8c5e2aba..9c13c4969d 100644
--- a/packs/_source/items/loot/stick-of-incense.json
+++ b/packs/_source/items/loot/stick-of-incense.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233456,
- "modifiedTime": 1704823141738,
+ "modifiedTime": 1715374574319,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3b0RvGi0TnTYpIxn"
diff --git a/packs/_source/items/loot/tinderbox.json b/packs/_source/items/loot/tinderbox.json
index 57ec903761..c78bf263b6 100644
--- a/packs/_source/items/loot/tinderbox.json
+++ b/packs/_source/items/loot/tinderbox.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233523,
- "modifiedTime": 1704823145652,
+ "modifiedTime": 1715374587034,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DNOSEAvF4Oh1DlWy"
diff --git a/packs/_source/items/loot/trinket.json b/packs/_source/items/loot/trinket.json
index 7b1b79ccfc..99b867cbc5 100644
--- a/packs/_source/items/loot/trinket.json
+++ b/packs/_source/items/loot/trinket.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 0,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233953,
- "modifiedTime": 1704823165262,
+ "modifiedTime": 1715374655609,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!vpenjFjUyEBLLlUc"
diff --git a/packs/_source/items/loot/two-person-tent.json b/packs/_source/items/loot/two-person-tent.json
index 0bf97e0970..f123c63c4c 100644
--- a/packs/_source/items/loot/two-person-tent.json
+++ b/packs/_source/items/loot/two-person-tent.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 20,
+ "weight": {
+ "value": 20,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233646,
- "modifiedTime": 1704823151112,
+ "modifiedTime": 1715374606097,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PanSr5EbqlfpSvwK"
diff --git a/packs/_source/items/loot/whetstone.json b/packs/_source/items/loot/whetstone.json
index b61d8f7194..fd99476ace 100644
--- a/packs/_source/items/loot/whetstone.json
+++ b/packs/_source/items/loot/whetstone.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -41,10 +44,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233667,
- "modifiedTime": 1704823152130,
+ "modifiedTime": 1715374609675,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SuQmsJfxyJl2hPcM"
diff --git a/packs/_source/items/poison/potion-of-poison.json b/packs/_source/items/poison/potion-of-poison.json
index 05b65efe2c..c682f5192d 100644
--- a/packs/_source/items/poison/potion-of-poison.json
+++ b/packs/_source/items/poison/potion-of-poison.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 100,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "ZzUfnm1OuSL02nLG",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233878,
- "modifiedTime": 1707055846915,
+ "modifiedTime": 1715374646730,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qBSEGJyHxdKIlBfj"
diff --git a/packs/_source/items/poison/truth-serum.json b/packs/_source/items/poison/truth-serum.json
index 69e376252e..359788b5b0 100644
--- a/packs/_source/items/poison/truth-serum.json
+++ b/packs/_source/items/poison/truth-serum.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 150,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -86,7 +88,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"sort": 0,
@@ -98,10 +107,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233720,
- "modifiedTime": 1704823155262,
+ "modifiedTime": 1715374620583,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!a86F565Pjdzym1jH"
diff --git a/packs/_source/items/potion/acid-vial.json b/packs/_source/items/potion/acid-vial.json
index 4d814ae48b..f16b93527d 100644
--- a/packs/_source/items/potion/acid-vial.json
+++ b/packs/_source/items/potion/acid-vial.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "dex",
"actionType": "rwak",
- "attackBonus": "",
"chatFlavor": "improvised weapon",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233667,
- "modifiedTime": 1704823152159,
+ "modifiedTime": 1715374609774,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Sx5E6utixHdAbGNb"
diff --git a/packs/_source/items/potion/alchemists-fire.json b/packs/_source/items/potion/alchemists-fire.json
index 76c96700d8..5a52c493da 100644
--- a/packs/_source/items/potion/alchemists-fire.json
+++ b/packs/_source/items/potion/alchemists-fire.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "dex",
"actionType": "rwak",
- "attackBonus": "",
"chatFlavor": "improvised weapon",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233552,
- "modifiedTime": 1704823147141,
+ "modifiedTime": 1715374592064,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FvNOwWbh5FXyX4xe"
diff --git a/packs/_source/items/potion/antitoxin.json b/packs/_source/items/potion/antitoxin.json
index 291964b362..caca4978f5 100644
--- a/packs/_source/items/potion/antitoxin.json
+++ b/packs/_source/items/potion/antitoxin.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233547,
- "modifiedTime": 1704823146893,
+ "modifiedTime": 1715374591223,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Fc6UfFNOnW80XMzi"
diff --git a/packs/_source/items/potion/basic-poison.json b/packs/_source/items/potion/basic-poison.json
index 1a8fa7fbbe..4c262b6c02 100644
--- a/packs/_source/items/potion/basic-poison.json
+++ b/packs/_source/items/potion/basic-poison.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 100,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233786,
- "modifiedTime": 1704823157386,
+ "modifiedTime": 1715374628190,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eVbPkYjpl29RE2uW"
diff --git a/packs/_source/items/potion/flask-of-holy-water.json b/packs/_source/items/potion/flask-of-holy-water.json
index 5e2c5b073b..e23effcf08 100644
--- a/packs/_source/items/potion/flask-of-holy-water.json
+++ b/packs/_source/items/potion/flask-of-holy-water.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "dex",
"actionType": "rwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233691,
- "modifiedTime": 1704823153581,
+ "modifiedTime": 1715374614710,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WPWszFTGzmdIuDRJ"
diff --git a/packs/_source/items/potion/oil-of-etherealness.json b/packs/_source/items/potion/oil-of-etherealness.json
index 42d9cc2219..1b88e24b90 100644
--- a/packs/_source/items/potion/oil-of-etherealness.json
+++ b/packs/_source/items/potion/oil-of-etherealness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1920,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233702,
- "modifiedTime": 1707055843934,
+ "modifiedTime": 1715374617082,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Xbq8CyXSRV358SfP"
diff --git a/packs/_source/items/potion/oil-of-sharpness.json b/packs/_source/items/potion/oil-of-sharpness.json
index 9b62cc2104..4db9d17347 100644
--- a/packs/_source/items/potion/oil-of-sharpness.json
+++ b/packs/_source/items/potion/oil-of-sharpness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 3200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233515,
- "modifiedTime": 1707055840432,
+ "modifiedTime": 1715374585548,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!C0MNXWA81ufzGlp5"
diff --git a/packs/_source/items/potion/oil-of-slipperiness.json b/packs/_source/items/potion/oil-of-slipperiness.json
index 1e7d73ba3e..8b1c1c9287 100644
--- a/packs/_source/items/potion/oil-of-slipperiness.json
+++ b/packs/_source/items/potion/oil-of-slipperiness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 480,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233544,
- "modifiedTime": 1707055841114,
+ "modifiedTime": 1715374590901,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FIDyR0kZnxGy7bj8"
diff --git a/packs/_source/items/potion/philter-of-love.json b/packs/_source/items/potion/philter-of-love.json
index fc8cd0a69f..84da650298 100644
--- a/packs/_source/items/potion/philter-of-love.json
+++ b/packs/_source/items/potion/philter-of-love.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 90,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233474,
- "modifiedTime": 1707055839419,
+ "modifiedTime": 1715374577349,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!63nb14yQRJMc4bIn"
diff --git a/packs/_source/items/potion/potion-of-acid-resistance.json b/packs/_source/items/potion/potion-of-acid-resistance.json
index a524664dd4..5d03b127e1 100644
--- a/packs/_source/items/potion/potion-of-acid-resistance.json
+++ b/packs/_source/items/potion/potion-of-acid-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233979,
- "modifiedTime": 1707055848325,
+ "modifiedTime": 1715374661130,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zgZkJAyFAfYmyn11"
diff --git a/packs/_source/items/potion/potion-of-animal-friendship.json b/packs/_source/items/potion/potion-of-animal-friendship.json
index c7433d2990..629c08f8e8 100644
--- a/packs/_source/items/potion/potion-of-animal-friendship.json
+++ b/packs/_source/items/potion/potion-of-animal-friendship.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233862,
- "modifiedTime": 1707055846673,
+ "modifiedTime": 1715374643095,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nXWevqtV6p484N59"
diff --git a/packs/_source/items/potion/potion-of-clairvoyance.json b/packs/_source/items/potion/potion-of-clairvoyance.json
index c79d1579dc..8a16144902 100644
--- a/packs/_source/items/potion/potion-of-clairvoyance.json
+++ b/packs/_source/items/potion/potion-of-clairvoyance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 960,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233729,
- "modifiedTime": 1707055844631,
+ "modifiedTime": 1715374622501,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bAyr7j5Peq9wIJTa"
diff --git a/packs/_source/items/potion/potion-of-climbing.json b/packs/_source/items/potion/potion-of-climbing.json
index 0fb2e54f26..59746ffcbd 100644
--- a/packs/_source/items/potion/potion-of-climbing.json
+++ b/packs/_source/items/potion/potion-of-climbing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 180,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233723,
- "modifiedTime": 1707055844499,
+ "modifiedTime": 1715374621231,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aMnWi1WXWpxRHq4r"
diff --git a/packs/_source/items/potion/potion-of-cloud-giant-strength.json b/packs/_source/items/potion/potion-of-cloud-giant-strength.json
index c74c579fa1..7249333600 100644
--- a/packs/_source/items/potion/potion-of-cloud-giant-strength.json
+++ b/packs/_source/items/potion/potion-of-cloud-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1750,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233843,
- "modifiedTime": 1707055846278,
+ "modifiedTime": 1715374639211,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lAcTZgNtpmks2Mo5"
diff --git a/packs/_source/items/potion/potion-of-cold-resistance.json b/packs/_source/items/potion/potion-of-cold-resistance.json
index 56bd6530ad..af95b0ce1d 100644
--- a/packs/_source/items/potion/potion-of-cold-resistance.json
+++ b/packs/_source/items/potion/potion-of-cold-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233451,
- "modifiedTime": 1707055838927,
+ "modifiedTime": 1715374573344,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!34YKlIJVVWLeBv7R"
diff --git a/packs/_source/items/potion/potion-of-diminution.json b/packs/_source/items/potion/potion-of-diminution.json
index 31e3f27d9e..06d961e7c6 100644
--- a/packs/_source/items/potion/potion-of-diminution.json
+++ b/packs/_source/items/potion/potion-of-diminution.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 270,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233562,
- "modifiedTime": 1707055841468,
+ "modifiedTime": 1715374594222,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HY8duCwmvlXOruTG"
diff --git a/packs/_source/items/potion/potion-of-fire-giant-strength.json b/packs/_source/items/potion/potion-of-fire-giant-strength.json
index c7e0aa4f5a..20feceb751 100644
--- a/packs/_source/items/potion/potion-of-fire-giant-strength.json
+++ b/packs/_source/items/potion/potion-of-fire-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233729,
- "modifiedTime": 1707055844655,
+ "modifiedTime": 1715374622691,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bEZOY6uvHRweMM56"
diff --git a/packs/_source/items/potion/potion-of-fire-resistance.json b/packs/_source/items/potion/potion-of-fire-resistance.json
index 4d4a0b1f00..7da6f5313d 100644
--- a/packs/_source/items/potion/potion-of-fire-resistance.json
+++ b/packs/_source/items/potion/potion-of-fire-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233579,
- "modifiedTime": 1707055841871,
+ "modifiedTime": 1715374597496,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Jj4iFQQGvckx8Wsj"
diff --git a/packs/_source/items/potion/potion-of-flying.json b/packs/_source/items/potion/potion-of-flying.json
index 607adef321..6d99364113 100644
--- a/packs/_source/items/potion/potion-of-flying.json
+++ b/packs/_source/items/potion/potion-of-flying.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233785,
- "modifiedTime": 1707055845209,
+ "modifiedTime": 1715374628091,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eTNc8XPtvZNe3yQs"
diff --git a/packs/_source/items/potion/potion-of-force-resistance.json b/packs/_source/items/potion/potion-of-force-resistance.json
index 072e25da3f..9e73f71208 100644
--- a/packs/_source/items/potion/potion-of-force-resistance.json
+++ b/packs/_source/items/potion/potion-of-force-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233836,
- "modifiedTime": 1707055846174,
+ "modifiedTime": 1715374637597,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kKGJjVVlJVoakWgQ"
diff --git a/packs/_source/items/potion/potion-of-frost-giant-strength.json b/packs/_source/items/potion/potion-of-frost-giant-strength.json
index 4cd6db8258..2cb065e220 100644
--- a/packs/_source/items/potion/potion-of-frost-giant-strength.json
+++ b/packs/_source/items/potion/potion-of-frost-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233671,
- "modifiedTime": 1707055843187,
+ "modifiedTime": 1715374610535,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TevMHicE3A70AlmP"
diff --git a/packs/_source/items/potion/potion-of-gaseous-form.json b/packs/_source/items/potion/potion-of-gaseous-form.json
index 73a348ad5e..9d1e14df77 100644
--- a/packs/_source/items/potion/potion-of-gaseous-form.json
+++ b/packs/_source/items/potion/potion-of-gaseous-form.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233734,
- "modifiedTime": 1707055844737,
+ "modifiedTime": 1715374623557,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bqZ6NTLDCUB98YjV"
diff --git a/packs/_source/items/potion/potion-of-greater-healing.json b/packs/_source/items/potion/potion-of-greater-healing.json
index 37b1abdd96..2dfc17adcf 100644
--- a/packs/_source/items/potion/potion-of-greater-healing.json
+++ b/packs/_source/items/potion/potion-of-greater-healing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 150,
"denomination": "gp"
@@ -63,7 +66,6 @@
},
"ability": "",
"actionType": "heal",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233614,
- "modifiedTime": 1707055842008,
+ "modifiedTime": 1715374599197,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!L887NdWEP5NqHCrQ"
diff --git a/packs/_source/items/potion/potion-of-growth.json b/packs/_source/items/potion/potion-of-growth.json
index 84de3bc869..24a26a7110 100644
--- a/packs/_source/items/potion/potion-of-growth.json
+++ b/packs/_source/items/potion/potion-of-growth.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 270,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233805,
- "modifiedTime": 1707055845549,
+ "modifiedTime": 1715374631657,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gTRFQLdVD1gsKtPi"
diff --git a/packs/_source/items/potion/potion-of-healing.json b/packs/_source/items/potion/potion-of-healing.json
index 627fd172db..c928a92174 100644
--- a/packs/_source/items/potion/potion-of-healing.json
+++ b/packs/_source/items/potion/potion-of-healing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -63,7 +66,6 @@
},
"ability": "",
"actionType": "heal",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"container": null,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233972,
- "modifiedTime": 1707055848200,
+ "modifiedTime": 1715374659907,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ytlsBjYsZ7OBSEBs"
diff --git a/packs/_source/items/potion/potion-of-heroism.json b/packs/_source/items/potion/potion-of-heroism.json
index d76f77361c..53cae269a8 100644
--- a/packs/_source/items/potion/potion-of-heroism.json
+++ b/packs/_source/items/potion/potion-of-heroism.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 180,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "heal",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233957,
- "modifiedTime": 1707055847823,
+ "modifiedTime": 1715374656345,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wNKYbKYwOHbA7SH8"
diff --git a/packs/_source/items/potion/potion-of-hill-giant-strength.json b/packs/_source/items/potion/potion-of-hill-giant-strength.json
index 36eba84edd..c87e875928 100644
--- a/packs/_source/items/potion/potion-of-hill-giant-strength.json
+++ b/packs/_source/items/potion/potion-of-hill-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 900,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233855,
- "modifiedTime": 1707055846513,
+ "modifiedTime": 1715374641807,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mhFBTY0egW8AeCHe"
diff --git a/packs/_source/items/potion/potion-of-invisibility.json b/packs/_source/items/potion/potion-of-invisibility.json
index 84952c33c6..59a7a3e628 100644
--- a/packs/_source/items/potion/potion-of-invisibility.json
+++ b/packs/_source/items/potion/potion-of-invisibility.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 180,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233892,
- "modifiedTime": 1707055847125,
+ "modifiedTime": 1715374649356,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rTn4p9nJr4Aq2GPB"
diff --git a/packs/_source/items/potion/potion-of-lightning-resistance.json b/packs/_source/items/potion/potion-of-lightning-resistance.json
index a4879ad02d..7ebbac604f 100644
--- a/packs/_source/items/potion/potion-of-lightning-resistance.json
+++ b/packs/_source/items/potion/potion-of-lightning-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233490,
- "modifiedTime": 1707055839833,
+ "modifiedTime": 1715374580857,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8MPnSrvEeZhPhtTi"
diff --git a/packs/_source/items/potion/potion-of-mind-reading.json b/packs/_source/items/potion/potion-of-mind-reading.json
index 10c5abee87..bade6f9cd2 100644
--- a/packs/_source/items/potion/potion-of-mind-reading.json
+++ b/packs/_source/items/potion/potion-of-mind-reading.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 180,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233520,
- "modifiedTime": 1707055840571,
+ "modifiedTime": 1715374586446,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Ct9LR9Ft1FG4a6Y1"
diff --git a/packs/_source/items/potion/potion-of-necrotic-resistance.json b/packs/_source/items/potion/potion-of-necrotic-resistance.json
index e91b4f7511..1e1d2c2a8f 100644
--- a/packs/_source/items/potion/potion-of-necrotic-resistance.json
+++ b/packs/_source/items/potion/potion-of-necrotic-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233969,
- "modifiedTime": 1707055848090,
+ "modifiedTime": 1715374658884,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xw99pcqPBVwtMOLw"
diff --git a/packs/_source/items/potion/potion-of-poison-resistance.json b/packs/_source/items/potion/potion-of-poison-resistance.json
index 6ee01160d0..d181d87654 100644
--- a/packs/_source/items/potion/potion-of-poison-resistance.json
+++ b/packs/_source/items/potion/potion-of-poison-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233793,
- "modifiedTime": 1707055845367,
+ "modifiedTime": 1715374629543,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!f5chGcpQCi1HYPQw"
diff --git a/packs/_source/items/potion/potion-of-psychic-resistance.json b/packs/_source/items/potion/potion-of-psychic-resistance.json
index 491721ea20..58d6672620 100644
--- a/packs/_source/items/potion/potion-of-psychic-resistance.json
+++ b/packs/_source/items/potion/potion-of-psychic-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233734,
- "modifiedTime": 1707055844763,
+ "modifiedTime": 1715374623648,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!c0luemOP0iW8L23R"
diff --git a/packs/_source/items/potion/potion-of-radiant-resistance.json b/packs/_source/items/potion/potion-of-radiant-resistance.json
index 72c9d8992a..e3b9037225 100644
--- a/packs/_source/items/potion/potion-of-radiant-resistance.json
+++ b/packs/_source/items/potion/potion-of-radiant-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233615,
- "modifiedTime": 1707055842061,
+ "modifiedTime": 1715374599415,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LBQWNqX6hZOKhQ8a"
diff --git a/packs/_source/items/potion/potion-of-speed.json b/packs/_source/items/potion/potion-of-speed.json
index 46263b8299..e79931b7a2 100644
--- a/packs/_source/items/potion/potion-of-speed.json
+++ b/packs/_source/items/potion/potion-of-speed.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 400,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233739,
- "modifiedTime": 1707055844839,
+ "modifiedTime": 1715374624589,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ctKfjHjk9gs9UtZI"
diff --git a/packs/_source/items/potion/potion-of-stone-giant-strength.json b/packs/_source/items/potion/potion-of-stone-giant-strength.json
index c82ff1617b..e20dd4480d 100644
--- a/packs/_source/items/potion/potion-of-stone-giant-strength.json
+++ b/packs/_source/items/potion/potion-of-stone-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233465,
- "modifiedTime": 1707055839183,
+ "modifiedTime": 1715374575999,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!4ZiJsDTRA1GgcWKP"
diff --git a/packs/_source/items/potion/potion-of-storm-giant-strength.json b/packs/_source/items/potion/potion-of-storm-giant-strength.json
index 18eb1ed7e8..bcaf418979 100644
--- a/packs/_source/items/potion/potion-of-storm-giant-strength.json
+++ b/packs/_source/items/potion/potion-of-storm-giant-strength.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233439,
- "modifiedTime": 1707055838601,
+ "modifiedTime": 1715374570946,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!1KMSpOSU0EliUBm2"
diff --git a/packs/_source/items/potion/potion-of-superior-healing.json b/packs/_source/items/potion/potion-of-superior-healing.json
index f7d2cd3d0d..56f7327795 100644
--- a/packs/_source/items/potion/potion-of-superior-healing.json
+++ b/packs/_source/items/potion/potion-of-superior-healing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 450,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "heal",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233471,
- "modifiedTime": 1707055839361,
+ "modifiedTime": 1715374576937,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5m9ErO9In8Uc5yyf"
diff --git a/packs/_source/items/potion/potion-of-supreme-healing.json b/packs/_source/items/potion/potion-of-supreme-healing.json
index 9734b08264..9ac32918fb 100644
--- a/packs/_source/items/potion/potion-of-supreme-healing.json
+++ b/packs/_source/items/potion/potion-of-supreme-healing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1350,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "heal",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233578,
- "modifiedTime": 1707055841790,
+ "modifiedTime": 1715374597166,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JFiSlgcm3uSSBM5t"
diff --git a/packs/_source/items/potion/potion-of-thunder-resistance.json b/packs/_source/items/potion/potion-of-thunder-resistance.json
index 97dd2c1246..3854dcc3ec 100644
--- a/packs/_source/items/potion/potion-of-thunder-resistance.json
+++ b/packs/_source/items/potion/potion-of-thunder-resistance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233976,
- "modifiedTime": 1707055848225,
+ "modifiedTime": 1715374660511,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zBX8LLC2CjC89Dzl"
diff --git a/packs/_source/items/potion/potion-of-water-breathing.json b/packs/_source/items/potion/potion-of-water-breathing.json
index 70414593da..9c13b9eb21 100644
--- a/packs/_source/items/potion/potion-of-water-breathing.json
+++ b/packs/_source/items/potion/potion-of-water-breathing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 180,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233515,
- "modifiedTime": 1707055840459,
+ "modifiedTime": 1715374585645,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CAZMwFBWp9VC0ZCg"
diff --git a/packs/_source/items/potion/restorative-ointment.json b/packs/_source/items/potion/restorative-ointment.json
index f86f1ec750..9671726057 100644
--- a/packs/_source/items/potion/restorative-ointment.json
+++ b/packs/_source/items/potion/restorative-ointment.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 600,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "heal",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "gyBZp72zKb56Da84",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233687,
- "modifiedTime": 1707055843504,
+ "modifiedTime": 1715374613858,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VmcgAIsRCyrjBguC"
diff --git a/packs/_source/items/rod/immovable-rod.json b/packs/_source/items/rod/immovable-rod.json
index e8328ebd79..b548db8f1e 100644
--- a/packs/_source/items/rod/immovable-rod.json
+++ b/packs/_source/items/rod/immovable-rod.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "609zLs23BLj5hyYp",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233784,
- "modifiedTime": 1707055845180,
+ "modifiedTime": 1715374627894,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eQNXan0zp279jDtk"
diff --git a/packs/_source/items/rod/rod-of-absorption.json b/packs/_source/items/rod/rod-of-absorption.json
index 91e3558145..0084cdfbc7 100644
--- a/packs/_source/items/rod/rod-of-absorption.json
+++ b/packs/_source/items/rod/rod-of-absorption.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 50000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "609zLs23BLj5hyYp",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233480,
- "modifiedTime": 1707055839611,
+ "modifiedTime": 1715374578835,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6pjaQzbtxQTuQ4RW"
diff --git a/packs/_source/items/rod/rod-of-alertness.json b/packs/_source/items/rod/rod-of-alertness.json
index 1381905f11..2a8e1620f4 100644
--- a/packs/_source/items/rod/rod-of-alertness.json
+++ b/packs/_source/items/rod/rod-of-alertness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 25000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "609zLs23BLj5hyYp",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233530,
- "modifiedTime": 1707055840842,
+ "modifiedTime": 1715374588112,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Do3qeSHtBjUsmfvz"
diff --git a/packs/_source/items/rod/rod-of-lordly-might.json b/packs/_source/items/rod/rod-of-lordly-might.json
index b4dcee4386..3df917e6c6 100644
--- a/packs/_source/items/rod/rod-of-lordly-might.json
+++ b/packs/_source/items/rod/rod-of-lordly-might.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 28000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "str",
"actionType": "mwak",
- "attackBonus": "3",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "3",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "609zLs23BLj5hyYp",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233740,
- "modifiedTime": 1707055844864,
+ "modifiedTime": 1715374624803,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!d5HNCmLIPCpPoX2w"
diff --git a/packs/_source/items/rod/rod-of-rulership.json b/packs/_source/items/rod/rod-of-rulership.json
index 2b25136489..44de0521b9 100644
--- a/packs/_source/items/rod/rod-of-rulership.json
+++ b/packs/_source/items/rod/rod-of-rulership.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "609zLs23BLj5hyYp",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233953,
- "modifiedTime": 1707055847744,
+ "modifiedTime": 1715374655407,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!vmbB2SK6pQU2Vkzb"
diff --git a/packs/_source/items/rod/rod-of-security.json b/packs/_source/items/rod/rod-of-security.json
index b4b442ec7e..a44d1fa7ed 100644
--- a/packs/_source/items/rod/rod-of-security.json
+++ b/packs/_source/items/rod/rod-of-security.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 90000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "609zLs23BLj5hyYp",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233501,
- "modifiedTime": 1707055840077,
+ "modifiedTime": 1715374583086,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9kfMsSweOBui0SC4"
diff --git a/packs/_source/items/scroll/spell-scroll-1st-level.json b/packs/_source/items/scroll/spell-scroll-1st-level.json
index bead1e443c..858ea99c40 100644
--- a/packs/_source/items/scroll/spell-scroll-1st-level.json
+++ b/packs/_source/items/scroll/spell-scroll-1st-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 60,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233496,
- "modifiedTime": 1707055839918,
+ "modifiedTime": 1715374582153,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9GSfMg0VOA2b4uFN"
diff --git a/packs/_source/items/scroll/spell-scroll-2nd-level.json b/packs/_source/items/scroll/spell-scroll-2nd-level.json
index 90fb9c3c8a..b75cdb0178 100644
--- a/packs/_source/items/scroll/spell-scroll-2nd-level.json
+++ b/packs/_source/items/scroll/spell-scroll-2nd-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 120,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233703,
- "modifiedTime": 1707055843963,
+ "modifiedTime": 1715374617185,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XdDp6CKh9qEvPTuS"
diff --git a/packs/_source/items/scroll/spell-scroll-3rd-level.json b/packs/_source/items/scroll/spell-scroll-3rd-level.json
index b54ede7bf3..fd6ec00385 100644
--- a/packs/_source/items/scroll/spell-scroll-3rd-level.json
+++ b/packs/_source/items/scroll/spell-scroll-3rd-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "7",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "7",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233817,
- "modifiedTime": 1707055845812,
+ "modifiedTime": 1715374633906,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hqVKZie7x9w3Kqds"
diff --git a/packs/_source/items/scroll/spell-scroll-4th-level.json b/packs/_source/items/scroll/spell-scroll-4th-level.json
index a283fd010a..2b0d10673c 100644
--- a/packs/_source/items/scroll/spell-scroll-4th-level.json
+++ b/packs/_source/items/scroll/spell-scroll-4th-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 320,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "7",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "7",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233522,
- "modifiedTime": 1707055840679,
+ "modifiedTime": 1715374586835,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DM7hzgL836ZyUFB1"
diff --git a/packs/_source/items/scroll/spell-scroll-5th-level.json b/packs/_source/items/scroll/spell-scroll-5th-level.json
index aa8fdb3c54..786c7093b6 100644
--- a/packs/_source/items/scroll/spell-scroll-5th-level.json
+++ b/packs/_source/items/scroll/spell-scroll-5th-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 640,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "9",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "9",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233958,
- "modifiedTime": 1707055847852,
+ "modifiedTime": 1715374656569,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wa1VF8TXHmkrrR35"
diff --git a/packs/_source/items/scroll/spell-scroll-6th-level.json b/packs/_source/items/scroll/spell-scroll-6th-level.json
index 23f836e1af..2f0df91372 100644
--- a/packs/_source/items/scroll/spell-scroll-6th-level.json
+++ b/packs/_source/items/scroll/spell-scroll-6th-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1280,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "9",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "9",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233909,
- "modifiedTime": 1707055847485,
+ "modifiedTime": 1715374652390,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tI3rWx4bxefNCexS"
diff --git a/packs/_source/items/scroll/spell-scroll-7th-level.json b/packs/_source/items/scroll/spell-scroll-7th-level.json
index 29018c1f83..84a8a097b1 100644
--- a/packs/_source/items/scroll/spell-scroll-7th-level.json
+++ b/packs/_source/items/scroll/spell-scroll-7th-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 2560,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "10",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "10",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233856,
- "modifiedTime": 1707055846567,
+ "modifiedTime": 1715374642125,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mtyw4NS1s7j2EJaD"
diff --git a/packs/_source/items/scroll/spell-scroll-8th-level.json b/packs/_source/items/scroll/spell-scroll-8th-level.json
index 5ec546709d..dbfe377f94 100644
--- a/packs/_source/items/scroll/spell-scroll-8th-level.json
+++ b/packs/_source/items/scroll/spell-scroll-8th-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5120,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "10",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "10",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233723,
- "modifiedTime": 1707055844526,
+ "modifiedTime": 1715374621342,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aOrinPg7yuDZEuWr"
diff --git a/packs/_source/items/scroll/spell-scroll-9th-level.json b/packs/_source/items/scroll/spell-scroll-9th-level.json
index 43a2fd7809..4987ca9525 100644
--- a/packs/_source/items/scroll/spell-scroll-9th-level.json
+++ b/packs/_source/items/scroll/spell-scroll-9th-level.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5120,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "11",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "11",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233636,
- "modifiedTime": 1707055842647,
+ "modifiedTime": 1715374603921,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!O4YbkJkLlnsgUszZ"
diff --git a/packs/_source/items/scroll/spell-scroll-cantrip.json b/packs/_source/items/scroll/spell-scroll-cantrip.json
index 4e44dbe786..669055648c 100644
--- a/packs/_source/items/scroll/spell-scroll-cantrip.json
+++ b/packs/_source/items/scroll/spell-scroll-cantrip.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "msak",
- "attackBonus": "5",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "5",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "epDf8I2SD3cS6ctz",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233890,
- "modifiedTime": 1707055847073,
+ "modifiedTime": 1715374649037,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rQ6sO7HDWzqMhSI3"
diff --git a/packs/_source/items/tool/alchemists-supplies.json b/packs/_source/items/tool/alchemists-supplies.json
index df80c69edf..0519ba8789 100644
--- a/packs/_source/items/tool/alchemists-supplies.json
+++ b/packs/_source/items/tool/alchemists-supplies.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233668,
- "modifiedTime": 1704823152226,
+ "modifiedTime": 1715374609985,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SztwZhbhZeCqyAes"
diff --git a/packs/_source/items/tool/bagpipes.json b/packs/_source/items/tool/bagpipes.json
index 0fcc68c23c..af08a625cb 100644
--- a/packs/_source/items/tool/bagpipes.json
+++ b/packs/_source/items/tool/bagpipes.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 30,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233973,
- "modifiedTime": 1704823166498,
+ "modifiedTime": 1715374659996,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!yxHi57T5mmVt0oDr"
diff --git a/packs/_source/items/tool/brewers-supplies.json b/packs/_source/items/tool/brewers-supplies.json
index 4a43bc735d..4800e02122 100644
--- a/packs/_source/items/tool/brewers-supplies.json
+++ b/packs/_source/items/tool/brewers-supplies.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 9,
+ "weight": {
+ "value": 9,
+ "units": "lb"
+ },
"price": {
"value": 20,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233704,
- "modifiedTime": 1704823154443,
+ "modifiedTime": 1715374617611,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Y9S75go1hLMXUD48"
diff --git a/packs/_source/items/tool/calligraphers-supplies.json b/packs/_source/items/tool/calligraphers-supplies.json
index 89362d898d..bba90b4bf6 100644
--- a/packs/_source/items/tool/calligraphers-supplies.json
+++ b/packs/_source/items/tool/calligraphers-supplies.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233831,
- "modifiedTime": 1704823159897,
+ "modifiedTime": 1715374636730,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jhjo20QoiD5exf09"
diff --git a/packs/_source/items/tool/carpenters-tools.json b/packs/_source/items/tool/carpenters-tools.json
index 05e1e839b4..a5d19ac394 100644
--- a/packs/_source/items/tool/carpenters-tools.json
+++ b/packs/_source/items/tool/carpenters-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 8,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233491,
- "modifiedTime": 1704823143794,
+ "modifiedTime": 1715374581058,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8NS6MSOdXtUqD7Ib"
diff --git a/packs/_source/items/tool/cartographers-tools.json b/packs/_source/items/tool/cartographers-tools.json
index 96ce4a26b4..dcd505e3eb 100644
--- a/packs/_source/items/tool/cartographers-tools.json
+++ b/packs/_source/items/tool/cartographers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 15,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233794,
- "modifiedTime": 1704823157797,
+ "modifiedTime": 1715374629649,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fC0lFK8P4RuhpfaU"
diff --git a/packs/_source/items/tool/chess-set.json b/packs/_source/items/tool/chess-set.json
index 6b06c62ac1..0eb412094c 100644
--- a/packs/_source/items/tool/chess-set.json
+++ b/packs/_source/items/tool/chess-set.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233443,
- "modifiedTime": 1704823140864,
+ "modifiedTime": 1715374571701,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!23y8FvWKf9YLcnBL"
diff --git a/packs/_source/items/tool/cobblers-tools.json b/packs/_source/items/tool/cobblers-tools.json
index a77374f63d..b4c1a44b14 100644
--- a/packs/_source/items/tool/cobblers-tools.json
+++ b/packs/_source/items/tool/cobblers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233813,
- "modifiedTime": 1704823158871,
+ "modifiedTime": 1715374633183,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hM84pZnpCqKfi8XH"
diff --git a/packs/_source/items/tool/cooks-utensils.json b/packs/_source/items/tool/cooks-utensils.json
index 646c869295..6c61a568ac 100644
--- a/packs/_source/items/tool/cooks-utensils.json
+++ b/packs/_source/items/tool/cooks-utensils.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233557,
- "modifiedTime": 1704823147399,
+ "modifiedTime": 1715374593180,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Gflnp29aEv5Lc1ZM"
diff --git a/packs/_source/items/tool/dice-set.json b/packs/_source/items/tool/dice-set.json
index 684a0e9cbf..ef9037b9f7 100644
--- a/packs/_source/items/tool/dice-set.json
+++ b/packs/_source/items/tool/dice-set.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233820,
- "modifiedTime": 1704823159303,
+ "modifiedTime": 1715374634621,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!iBuTM09KD9IoM5L8"
diff --git a/packs/_source/items/tool/disguise-kit.json b/packs/_source/items/tool/disguise-kit.json
index b05f4dd609..422762b05d 100644
--- a/packs/_source/items/tool/disguise-kit.json
+++ b/packs/_source/items/tool/disguise-kit.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233571,
- "modifiedTime": 1704823148125,
+ "modifiedTime": 1715374595715,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IBhDAr7WkhWPYLVn"
diff --git a/packs/_source/items/tool/drum.json b/packs/_source/items/tool/drum.json
index 1325d8d5af..569692cef7 100644
--- a/packs/_source/items/tool/drum.json
+++ b/packs/_source/items/tool/drum.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 6,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233476,
- "modifiedTime": 1704823142727,
+ "modifiedTime": 1715374577682,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!69Dpr25pf4BjkHKb"
diff --git a/packs/_source/items/tool/dulcimer.json b/packs/_source/items/tool/dulcimer.json
index fac4021126..3451588a88 100644
--- a/packs/_source/items/tool/dulcimer.json
+++ b/packs/_source/items/tool/dulcimer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233635,
- "modifiedTime": 1704823150439,
+ "modifiedTime": 1715374603811,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NtdDkjmpdIMiX7I2"
diff --git a/packs/_source/items/tool/flute.json b/packs/_source/items/tool/flute.json
index 00eda07228..5bcf6b108a 100644
--- a/packs/_source/items/tool/flute.json
+++ b/packs/_source/items/tool/flute.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233781,
- "modifiedTime": 1704823157083,
+ "modifiedTime": 1715374627148,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eJOrPcAz9EcquyRQ"
diff --git a/packs/_source/items/tool/forgery-kit.json b/packs/_source/items/tool/forgery-kit.json
index 9671bb9b92..9ee2b31d77 100644
--- a/packs/_source/items/tool/forgery-kit.json
+++ b/packs/_source/items/tool/forgery-kit.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 15,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233735,
- "modifiedTime": 1704823156162,
+ "modifiedTime": 1715374623748,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!cG3m4YlHfbQlLEOx"
diff --git a/packs/_source/items/tool/glassblowers-tools.json b/packs/_source/items/tool/glassblowers-tools.json
index ed0f98a47a..f5ec3e15dc 100644
--- a/packs/_source/items/tool/glassblowers-tools.json
+++ b/packs/_source/items/tool/glassblowers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 30,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233891,
- "modifiedTime": 1704823163455,
+ "modifiedTime": 1715374649252,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rTbVrNcwApnuTz5E"
diff --git a/packs/_source/items/tool/herbalism-kit.json b/packs/_source/items/tool/herbalism-kit.json
index d6000bd1f9..5cd4d17e1e 100644
--- a/packs/_source/items/tool/herbalism-kit.json
+++ b/packs/_source/items/tool/herbalism-kit.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233819,
- "modifiedTime": 1704823159242,
+ "modifiedTime": 1715374634416,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!i89okN7GFTWHsvPy"
diff --git a/packs/_source/items/tool/horn.json b/packs/_source/items/tool/horn.json
index 0a5b0040c4..815d69ca6e 100644
--- a/packs/_source/items/tool/horn.json
+++ b/packs/_source/items/tool/horn.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 3,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233724,
- "modifiedTime": 1704823155537,
+ "modifiedTime": 1715374621552,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aa9KuBy4dst7WIW9"
diff --git a/packs/_source/items/tool/jewelers-tools.json b/packs/_source/items/tool/jewelers-tools.json
index 492126f97f..c57cf2aa7c 100644
--- a/packs/_source/items/tool/jewelers-tools.json
+++ b/packs/_source/items/tool/jewelers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233708,
- "modifiedTime": 1704823154720,
+ "modifiedTime": 1715374618549,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YfBwELTgPFHmQdHh"
diff --git a/packs/_source/items/tool/leatherworkers-tools.json b/packs/_source/items/tool/leatherworkers-tools.json
index 4f80fcb431..21f550d9de 100644
--- a/packs/_source/items/tool/leatherworkers-tools.json
+++ b/packs/_source/items/tool/leatherworkers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233645,
- "modifiedTime": 1704823151057,
+ "modifiedTime": 1715374605914,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PUMfwyVUbtyxgYbD"
diff --git a/packs/_source/items/tool/lute.json b/packs/_source/items/tool/lute.json
index 1284cddeda..97ec67a34f 100644
--- a/packs/_source/items/tool/lute.json
+++ b/packs/_source/items/tool/lute.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 35,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233878,
- "modifiedTime": 1704823162792,
+ "modifiedTime": 1715374646823,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qBydtUUIkv520DT7"
diff --git a/packs/_source/items/tool/lyre.json b/packs/_source/items/tool/lyre.json
index dd38b4eb3f..4a13022b60 100644
--- a/packs/_source/items/tool/lyre.json
+++ b/packs/_source/items/tool/lyre.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 30,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233538,
- "modifiedTime": 1704823146502,
+ "modifiedTime": 1715374589873,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!EwG1EtmbgR3bM68U"
diff --git a/packs/_source/items/tool/masons-tools.json b/packs/_source/items/tool/masons-tools.json
index d1980e8fd8..9db89ff467 100644
--- a/packs/_source/items/tool/masons-tools.json
+++ b/packs/_source/items/tool/masons-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233900,
- "modifiedTime": 1704823163921,
+ "modifiedTime": 1715374650941,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!skUih6tBvcBbORzA"
diff --git a/packs/_source/items/tool/navigators-tools.json b/packs/_source/items/tool/navigators-tools.json
index ed1f9eded1..ba8b960b12 100644
--- a/packs/_source/items/tool/navigators-tools.json
+++ b/packs/_source/items/tool/navigators-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233705,
- "modifiedTime": 1704823154540,
+ "modifiedTime": 1715374617917,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YHCmjsiXxZ9UdUhU"
diff --git a/packs/_source/items/tool/painters-supplies.json b/packs/_source/items/tool/painters-supplies.json
index 34a9e9beb6..bb039ae80d 100644
--- a/packs/_source/items/tool/painters-supplies.json
+++ b/packs/_source/items/tool/painters-supplies.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233738,
- "modifiedTime": 1704823156345,
+ "modifiedTime": 1715374624372,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ccm5xlWhx74d6lsK"
diff --git a/packs/_source/items/tool/pan-flute.json b/packs/_source/items/tool/pan-flute.json
index 06a3ca3017..61291a1e79 100644
--- a/packs/_source/items/tool/pan-flute.json
+++ b/packs/_source/items/tool/pan-flute.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 12,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233553,
- "modifiedTime": 1704823147196,
+ "modifiedTime": 1715374592439,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!G5m5gYIx9VAUWC3J"
diff --git a/packs/_source/items/tool/playing-cards-set.json b/packs/_source/items/tool/playing-cards-set.json
index 89362641b4..9248ffd8fa 100644
--- a/packs/_source/items/tool/playing-cards-set.json
+++ b/packs/_source/items/tool/playing-cards-set.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233712,
- "modifiedTime": 1704823154828,
+ "modifiedTime": 1715374618961,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YwlHI3BVJapz4a3E"
diff --git a/packs/_source/items/tool/poisoners-kit.json b/packs/_source/items/tool/poisoners-kit.json
index d8aabc969e..225da59472 100644
--- a/packs/_source/items/tool/poisoners-kit.json
+++ b/packs/_source/items/tool/poisoners-kit.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233826,
- "modifiedTime": 1704823159569,
+ "modifiedTime": 1715374635579,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!il2GNi8C0DvGLL9P"
diff --git a/packs/_source/items/tool/potters-tools.json b/packs/_source/items/tool/potters-tools.json
index 0011bcc0c7..02278f8c70 100644
--- a/packs/_source/items/tool/potters-tools.json
+++ b/packs/_source/items/tool/potters-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233812,
- "modifiedTime": 1704823158843,
+ "modifiedTime": 1715374633092,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hJS8yEVkqgJjwfWa"
diff --git a/packs/_source/items/tool/shawm.json b/packs/_source/items/tool/shawm.json
index c17a6613d6..3e2199ed39 100644
--- a/packs/_source/items/tool/shawm.json
+++ b/packs/_source/items/tool/shawm.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233552,
- "modifiedTime": 1704823147169,
+ "modifiedTime": 1715374592235,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!G3cqbejJpfB91VhP"
diff --git a/packs/_source/items/tool/smiths-tools.json b/packs/_source/items/tool/smiths-tools.json
index 82d8885a9e..4a1eda671e 100644
--- a/packs/_source/items/tool/smiths-tools.json
+++ b/packs/_source/items/tool/smiths-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 20,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233613,
- "modifiedTime": 1704823149047,
+ "modifiedTime": 1715374598784,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KndVe2insuctjIaj"
diff --git a/packs/_source/items/tool/thieves-tools.json b/packs/_source/items/tool/thieves-tools.json
index fdf657348b..4ac6b1d35e 100644
--- a/packs/_source/items/tool/thieves-tools.json
+++ b/packs/_source/items/tool/thieves-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233959,
- "modifiedTime": 1704823165638,
+ "modifiedTime": 1715374656978,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!woWZ1sO5IUVGzo58"
diff --git a/packs/_source/items/tool/tinkers-tools.json b/packs/_source/items/tool/tinkers-tools.json
index 476058313a..b2fbb81813 100644
--- a/packs/_source/items/tool/tinkers-tools.json
+++ b/packs/_source/items/tool/tinkers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233436,
- "modifiedTime": 1704823140360,
+ "modifiedTime": 1715374570129,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!0d08g1i5WXnNrCNA"
diff --git a/packs/_source/items/tool/viol.json b/packs/_source/items/tool/viol.json
index 2dbd116fa4..f44cec9096 100644
--- a/packs/_source/items/tool/viol.json
+++ b/packs/_source/items/tool/viol.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 30,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233731,
- "modifiedTime": 1704823155988,
+ "modifiedTime": 1715374623127,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!baoe3U5BfMMMxhCU"
diff --git a/packs/_source/items/tool/weavers-tools.json b/packs/_source/items/tool/weavers-tools.json
index 216d0908a0..4de6a82cea 100644
--- a/packs/_source/items/tool/weavers-tools.json
+++ b/packs/_source/items/tool/weavers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233726,
- "modifiedTime": 1704823155659,
+ "modifiedTime": 1715374621954,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ap9prThUB2y9lDyj"
diff --git a/packs/_source/items/tool/woodcarvers-tools.json b/packs/_source/items/tool/woodcarvers-tools.json
index cb86d45340..07e5a5f1d9 100644
--- a/packs/_source/items/tool/woodcarvers-tools.json
+++ b/packs/_source/items/tool/woodcarvers-tools.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -36,7 +39,43 @@
"description": ""
},
"container": null,
- "properties": []
+ "properties": [],
+ "activation": {
+ "type": "",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": null,
+ "width": null,
+ "units": "",
+ "type": "",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ }
},
"effects": [],
"folder": "uvZXbqK3cHirDzeT",
@@ -47,10 +86,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233965,
- "modifiedTime": 1704823165913,
+ "modifiedTime": 1715374658025,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xKErqkLo4ASYr5EP"
diff --git a/packs/_source/items/trinket/alchemy-jug.json b/packs/_source/items/trinket/alchemy-jug.json
index f2ce68e694..798107be7d 100644
--- a/packs/_source/items/trinket/alchemy-jug.json
+++ b/packs/_source/items/trinket/alchemy-jug.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 12,
+ "weight": {
+ "value": 12,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233671,
- "modifiedTime": 1707055843161,
+ "modifiedTime": 1715374610431,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TZggpdbOYqOCG7mY"
diff --git a/packs/_source/items/trinket/apparatus-of-the-crab.json b/packs/_source/items/trinket/apparatus-of-the-crab.json
index 80a3f58d2e..848ff86e3c 100644
--- a/packs/_source/items/trinket/apparatus-of-the-crab.json
+++ b/packs/_source/items/trinket/apparatus-of-the-crab.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 500,
+ "weight": {
+ "value": 500,
+ "units": "lb"
+ },
"price": {
"value": 10000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233846,
- "modifiedTime": 1707055846356,
+ "modifiedTime": 1715374639812,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lSd5QHnIJbKvP1bh"
diff --git a/packs/_source/items/trinket/bag-of-beans.json b/packs/_source/items/trinket/bag-of-beans.json
index 2d0baf0455..c25361f995 100644
--- a/packs/_source/items/trinket/bag-of-beans.json
+++ b/packs/_source/items/trinket/bag-of-beans.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3.5,
+ "weight": {
+ "value": 3.5,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "other",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233542,
- "modifiedTime": 1707055841088,
+ "modifiedTime": 1715374590485,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!F8QpasPjLrw2POzE"
diff --git a/packs/_source/items/trinket/bag-of-tricks-grey.json b/packs/_source/items/trinket/bag-of-tricks-grey.json
index 398e08869f..72e498fb9b 100644
--- a/packs/_source/items/trinket/bag-of-tricks-grey.json
+++ b/packs/_source/items/trinket/bag-of-tricks-grey.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233497,
- "modifiedTime": 1707055839944,
+ "modifiedTime": 1715374582257,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9Ifr8fGvJ1bArzOW"
diff --git a/packs/_source/items/trinket/bag-of-tricks-rust.json b/packs/_source/items/trinket/bag-of-tricks-rust.json
index 5fe649f862..828ea35f28 100644
--- a/packs/_source/items/trinket/bag-of-tricks-rust.json
+++ b/packs/_source/items/trinket/bag-of-tricks-rust.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233531,
- "modifiedTime": 1707055840897,
+ "modifiedTime": 1715374588315,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DxIdfGoJEYQj8o3D"
diff --git a/packs/_source/items/trinket/bag-of-tricks-tan.json b/packs/_source/items/trinket/bag-of-tricks-tan.json
index 7cad446d72..86b1d9b7bf 100644
--- a/packs/_source/items/trinket/bag-of-tricks-tan.json
+++ b/packs/_source/items/trinket/bag-of-tricks-tan.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233618,
- "modifiedTime": 1707055842142,
+ "modifiedTime": 1715374600019,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LHaqMvrx3PfSzWMQ"
diff --git a/packs/_source/items/trinket/ball-bearings.json b/packs/_source/items/trinket/ball-bearings.json
index ebcf1b4664..4a2e75956f 100644
--- a/packs/_source/items/trinket/ball-bearings.json
+++ b/packs/_source/items/trinket/ball-bearings.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1000,
- "weight": 0.002,
+ "weight": {
+ "value": 0.002,
+ "units": "lb"
+ },
"price": {
"value": 0.1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233456,
- "modifiedTime": 1704823141709,
+ "modifiedTime": 1715374574222,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3YSUIp4eFo26YxJr"
diff --git a/packs/_source/items/trinket/bead-of-force.json b/packs/_source/items/trinket/bead-of-force.json
index 8e8c6bff93..5f9b1353dc 100644
--- a/packs/_source/items/trinket/bead-of-force.json
+++ b/packs/_source/items/trinket/bead-of-force.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.06,
+ "weight": {
+ "value": 0.06,
+ "units": "lb"
+ },
"price": {
"value": 960,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233665,
- "modifiedTime": 1707055843077,
+ "modifiedTime": 1715374609466,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SqTtbBCfiEsmZ36N"
diff --git a/packs/_source/items/trinket/block-and-tackle.json b/packs/_source/items/trinket/block-and-tackle.json
index e01f4da77e..39478f25ac 100644
--- a/packs/_source/items/trinket/block-and-tackle.json
+++ b/packs/_source/items/trinket/block-and-tackle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233832,
- "modifiedTime": 1704823159933,
+ "modifiedTime": 1715374636827,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jlI44g90pp4VazBU"
diff --git a/packs/_source/items/trinket/bowl-of-commanding-water-elementals.json b/packs/_source/items/trinket/bowl-of-commanding-water-elementals.json
index b47cfc5949..57dd7f883b 100644
--- a/packs/_source/items/trinket/bowl-of-commanding-water-elementals.json
+++ b/packs/_source/items/trinket/bowl-of-commanding-water-elementals.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233890,
- "modifiedTime": 1707055847101,
+ "modifiedTime": 1715374649154,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rRMaaGZ7qbzqMvoI"
diff --git a/packs/_source/items/trinket/brass-horn-of-valhalla.json b/packs/_source/items/trinket/brass-horn-of-valhalla.json
index 8e91d23db2..4dd358c5e1 100644
--- a/packs/_source/items/trinket/brass-horn-of-valhalla.json
+++ b/packs/_source/items/trinket/brass-horn-of-valhalla.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8400,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233651,
- "modifiedTime": 1707055842915,
+ "modifiedTime": 1715374607090,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QYJyQCnIQeLiMrmJ"
diff --git a/packs/_source/items/trinket/brazier-of-commanding-fire-elementals.json b/packs/_source/items/trinket/brazier-of-commanding-fire-elementals.json
index 1ed495672f..6513a80f12 100644
--- a/packs/_source/items/trinket/brazier-of-commanding-fire-elementals.json
+++ b/packs/_source/items/trinket/brazier-of-commanding-fire-elementals.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233638,
- "modifiedTime": 1707055842729,
+ "modifiedTime": 1715374604421,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!OcjcplcUWH07Kn9k"
diff --git a/packs/_source/items/trinket/bronze-horn-of-valhalla.json b/packs/_source/items/trinket/bronze-horn-of-valhalla.json
index 72cd6706ba..665855fa5f 100644
--- a/packs/_source/items/trinket/bronze-horn-of-valhalla.json
+++ b/packs/_source/items/trinket/bronze-horn-of-valhalla.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 11200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233902,
- "modifiedTime": 1707055847358,
+ "modifiedTime": 1715374651258,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sqcerAMszpe3hwyI"
diff --git a/packs/_source/items/trinket/broom-of-flying.json b/packs/_source/items/trinket/broom-of-flying.json
index 6f4faf9826..80e8ed1d57 100644
--- a/packs/_source/items/trinket/broom-of-flying.json
+++ b/packs/_source/items/trinket/broom-of-flying.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233811,
- "modifiedTime": 1707055845653,
+ "modifiedTime": 1715374632790,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hFAVm9pTJDm0nu3g"
diff --git a/packs/_source/items/trinket/bullseye-lantern.json b/packs/_source/items/trinket/bullseye-lantern.json
index ba2c75b417..2d56138238 100644
--- a/packs/_source/items/trinket/bullseye-lantern.json
+++ b/packs/_source/items/trinket/bullseye-lantern.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233679,
- "modifiedTime": 1704823152921,
+ "modifiedTime": 1715374612402,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UkWdyJYQTfVX2cJW"
diff --git a/packs/_source/items/trinket/caltrops.json b/packs/_source/items/trinket/caltrops.json
index 3e16f646fe..70f1b6acdb 100644
--- a/packs/_source/items/trinket/caltrops.json
+++ b/packs/_source/items/trinket/caltrops.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233494,
- "modifiedTime": 1704823144004,
+ "modifiedTime": 1715374581757,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8tvhh5wqG5FRh3Sf"
diff --git a/packs/_source/items/trinket/candle-of-invocation.json b/packs/_source/items/trinket/candle-of-invocation.json
index 59e0ffb391..0aae4d6c7e 100644
--- a/packs/_source/items/trinket/candle-of-invocation.json
+++ b/packs/_source/items/trinket/candle-of-invocation.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233718,
- "modifiedTime": 1707055844311,
+ "modifiedTime": 1715374620239,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZoUVmRA3HfAK2eZy"
diff --git a/packs/_source/items/trinket/candle.json b/packs/_source/items/trinket/candle.json
index e1e4496d7f..885d743378 100644
--- a/packs/_source/items/trinket/candle.json
+++ b/packs/_source/items/trinket/candle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233435,
- "modifiedTime": 1704823140291,
+ "modifiedTime": 1715374569923,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!0NoBBP3MMkvJlwZY"
diff --git a/packs/_source/items/trinket/carpet-of-flying-3x5.json b/packs/_source/items/trinket/carpet-of-flying-3x5.json
index 809a0b346c..5ac496844e 100644
--- a/packs/_source/items/trinket/carpet-of-flying-3x5.json
+++ b/packs/_source/items/trinket/carpet-of-flying-3x5.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -88,17 +90,24 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"flags": {},
"_id": "XwqNHyox5OQQio8q",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233672,
- "modifiedTime": 1707055843990,
+ "modifiedTime": 1715374617403,
"lastModifiedBy": "dnd5ebuilder0000"
},
"folder": "UnUwTG4YIgd0kaUJ",
diff --git a/packs/_source/items/trinket/carpet-of-flying-4x6.json b/packs/_source/items/trinket/carpet-of-flying-4x6.json
index 1f5ee5bcfc..b8d09cbdb4 100644
--- a/packs/_source/items/trinket/carpet-of-flying-4x6.json
+++ b/packs/_source/items/trinket/carpet-of-flying-4x6.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -88,17 +90,24 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"flags": {},
"_id": "DeK9uQvNJj3JzFwe",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233672,
- "modifiedTime": 1707055840761,
+ "modifiedTime": 1715374587727,
"lastModifiedBy": "dnd5ebuilder0000"
},
"folder": "UnUwTG4YIgd0kaUJ",
diff --git a/packs/_source/items/trinket/carpet-of-flying-5x7.json b/packs/_source/items/trinket/carpet-of-flying-5x7.json
index 60ff84eddc..1852f0bad7 100644
--- a/packs/_source/items/trinket/carpet-of-flying-5x7.json
+++ b/packs/_source/items/trinket/carpet-of-flying-5x7.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -88,17 +90,24 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"flags": {},
"_id": "XAr1SR4POx5BAArk",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233672,
- "modifiedTime": 1707055843719,
+ "modifiedTime": 1715374615882,
"lastModifiedBy": "dnd5ebuilder0000"
},
"folder": "UnUwTG4YIgd0kaUJ",
diff --git a/packs/_source/items/trinket/carpet-of-flying-6x9.json b/packs/_source/items/trinket/carpet-of-flying-6x9.json
index 3a36bf5b2d..aeb3b55f90 100644
--- a/packs/_source/items/trinket/carpet-of-flying-6x9.json
+++ b/packs/_source/items/trinket/carpet-of-flying-6x9.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233672,
- "modifiedTime": 1707055843215,
+ "modifiedTime": 1715374610653,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TjWk2mpNXjDdfIDM"
diff --git a/packs/_source/items/trinket/censer-of-controlling-air-elementals.json b/packs/_source/items/trinket/censer-of-controlling-air-elementals.json
index 535f3a4909..ca7830246e 100644
--- a/packs/_source/items/trinket/censer-of-controlling-air-elementals.json
+++ b/packs/_source/items/trinket/censer-of-controlling-air-elementals.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233897,
- "modifiedTime": 1707055847304,
+ "modifiedTime": 1715374650526,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sXEkkTDXWQDUMzsC"
diff --git a/packs/_source/items/trinket/chain-10-feet.json b/packs/_source/items/trinket/chain-10-feet.json
index 50bce0a940..9f4ff77b8d 100644
--- a/packs/_source/items/trinket/chain-10-feet.json
+++ b/packs/_source/items/trinket/chain-10-feet.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233581,
- "modifiedTime": 1704823148761,
+ "modifiedTime": 1715374597830,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JvoufrTkSDMsS9Sm"
diff --git a/packs/_source/items/trinket/chime-of-opening.json b/packs/_source/items/trinket/chime-of-opening.json
index 8dd28abd88..e686a09e3e 100644
--- a/packs/_source/items/trinket/chime-of-opening.json
+++ b/packs/_source/items/trinket/chime-of-opening.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233951,
- "modifiedTime": 1707055847717,
+ "modifiedTime": 1715374655307,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!vZdLYfHlLcZqQ8zc"
diff --git a/packs/_source/items/trinket/climbers-kit.json b/packs/_source/items/trinket/climbers-kit.json
index d06bcfb32f..652b7aa86c 100644
--- a/packs/_source/items/trinket/climbers-kit.json
+++ b/packs/_source/items/trinket/climbers-kit.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 12,
+ "weight": {
+ "value": 12,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233921,
- "modifiedTime": 1704823164992,
+ "modifiedTime": 1715374654693,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ugzwHl8vYaPu2GNd"
diff --git a/packs/_source/items/trinket/crystal-ball-of-mind-reading.json b/packs/_source/items/trinket/crystal-ball-of-mind-reading.json
index db425eaf69..1004a6c702 100644
--- a/packs/_source/items/trinket/crystal-ball-of-mind-reading.json
+++ b/packs/_source/items/trinket/crystal-ball-of-mind-reading.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 60000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233674,
- "modifiedTime": 1707055843241,
+ "modifiedTime": 1715374611102,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TwYeck6buBZ602mg"
diff --git a/packs/_source/items/trinket/crystal-ball-of-telepathy.json b/packs/_source/items/trinket/crystal-ball-of-telepathy.json
index a89d8ddd7b..c2dc6bce22 100644
--- a/packs/_source/items/trinket/crystal-ball-of-telepathy.json
+++ b/packs/_source/items/trinket/crystal-ball-of-telepathy.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 60000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233469,
- "modifiedTime": 1707055839267,
+ "modifiedTime": 1715374576540,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5KiRtMMSTnJmMtBr"
diff --git a/packs/_source/items/trinket/crystal-ball-of-true-seeing.json b/packs/_source/items/trinket/crystal-ball-of-true-seeing.json
index bc1fc5e36e..5e7cc7ae6c 100644
--- a/packs/_source/items/trinket/crystal-ball-of-true-seeing.json
+++ b/packs/_source/items/trinket/crystal-ball-of-true-seeing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 60000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233506,
- "modifiedTime": 1707055840213,
+ "modifiedTime": 1715374583895,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ADH0UZ8bf7Op0dgf"
diff --git a/packs/_source/items/trinket/crystal-ball.json b/packs/_source/items/trinket/crystal-ball.json
index 7bab161225..ee86f15c13 100644
--- a/packs/_source/items/trinket/crystal-ball.json
+++ b/packs/_source/items/trinket/crystal-ball.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 50000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233575,
- "modifiedTime": 1707055841683,
+ "modifiedTime": 1715374596726,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ItoGjtOtDOQ2noNM"
diff --git a/packs/_source/items/trinket/cube-of-force.json b/packs/_source/items/trinket/cube-of-force.json
index f0121830af..b6e8b04d20 100644
--- a/packs/_source/items/trinket/cube-of-force.json
+++ b/packs/_source/items/trinket/cube-of-force.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233895,
- "modifiedTime": 1707055847254,
+ "modifiedTime": 1715374650007,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!s4fR8bxQGSt4wbH7"
diff --git a/packs/_source/items/trinket/cubic-gate.json b/packs/_source/items/trinket/cubic-gate.json
index a49270ba4d..988719b3cd 100644
--- a/packs/_source/items/trinket/cubic-gate.json
+++ b/packs/_source/items/trinket/cubic-gate.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 40000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233478,
- "modifiedTime": 1707055839584,
+ "modifiedTime": 1715374578418,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6ai1pEde3iQX30Fr"
diff --git a/packs/_source/items/trinket/decanter-of-endless-water.json b/packs/_source/items/trinket/decanter-of-endless-water.json
index 933d623ad4..76d8ab6afa 100644
--- a/packs/_source/items/trinket/decanter-of-endless-water.json
+++ b/packs/_source/items/trinket/decanter-of-endless-water.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 135000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233884,
- "modifiedTime": 1707055847019,
+ "modifiedTime": 1715374647819,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qXcUKfCVxEvV3VU8"
diff --git a/packs/_source/items/trinket/deck-of-illusions.json b/packs/_source/items/trinket/deck-of-illusions.json
index 91a316023d..2e498161ec 100644
--- a/packs/_source/items/trinket/deck-of-illusions.json
+++ b/packs/_source/items/trinket/deck-of-illusions.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 6120,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233692,
- "modifiedTime": 1707055843637,
+ "modifiedTime": 1715374615032,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Wk7EOYoY3b2tgGoS"
diff --git a/packs/_source/items/trinket/deck-of-many-things.json b/packs/_source/items/trinket/deck-of-many-things.json
index 2558ddea75..28cd298c9b 100644
--- a/packs/_source/items/trinket/deck-of-many-things.json
+++ b/packs/_source/items/trinket/deck-of-many-things.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 6120,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233868,
- "modifiedTime": 1707055846807,
+ "modifiedTime": 1715374644586,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!oSarKEU8x1AupB6z"
diff --git a/packs/_source/items/trinket/dimensional-shackles.json b/packs/_source/items/trinket/dimensional-shackles.json
index ed789a5e75..823745be93 100644
--- a/packs/_source/items/trinket/dimensional-shackles.json
+++ b/packs/_source/items/trinket/dimensional-shackles.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233957,
- "modifiedTime": 1707055847796,
+ "modifiedTime": 1715374656250,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wGKykLRS8UqChNXI"
diff --git a/packs/_source/items/trinket/dust-of-disappearance.json b/packs/_source/items/trinket/dust-of-disappearance.json
index 2a506d3fb3..b207e003d6 100644
--- a/packs/_source/items/trinket/dust-of-disappearance.json
+++ b/packs/_source/items/trinket/dust-of-disappearance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233735,
- "modifiedTime": 1707055844787,
+ "modifiedTime": 1715374623850,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!cGUPm15mLfhGDz2b"
diff --git a/packs/_source/items/trinket/dust-of-dryness.json b/packs/_source/items/trinket/dust-of-dryness.json
index c0876e3c5d..4e38c9e1f0 100644
--- a/packs/_source/items/trinket/dust-of-dryness.json
+++ b/packs/_source/items/trinket/dust-of-dryness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233783,
- "modifiedTime": 1707055845155,
+ "modifiedTime": 1715374627672,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eMR6B4bIoJPUDJG8"
diff --git a/packs/_source/items/trinket/dust-of-sneezing-and-choking.json b/packs/_source/items/trinket/dust-of-sneezing-and-choking.json
index 910672cab0..9aa63b1a39 100644
--- a/packs/_source/items/trinket/dust-of-sneezing-and-choking.json
+++ b/packs/_source/items/trinket/dust-of-sneezing-and-choking.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 480,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233500,
- "modifiedTime": 1707055840025,
+ "modifiedTime": 1715374582878,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9eyZY9tL3fXD1Mbm"
diff --git a/packs/_source/items/trinket/efreeti-bottle.json b/packs/_source/items/trinket/efreeti-bottle.json
index af036b650d..b58f7fee71 100644
--- a/packs/_source/items/trinket/efreeti-bottle.json
+++ b/packs/_source/items/trinket/efreeti-bottle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 40000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233799,
- "modifiedTime": 1707055845471,
+ "modifiedTime": 1715374630485,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fbcQsOgWCjhEAGY7"
diff --git a/packs/_source/items/trinket/elemental-gem-of-air.json b/packs/_source/items/trinket/elemental-gem-of-air.json
index 1f3e605717..071aa74c43 100644
--- a/packs/_source/items/trinket/elemental-gem-of-air.json
+++ b/packs/_source/items/trinket/elemental-gem-of-air.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 960,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233976,
- "modifiedTime": 1707055848251,
+ "modifiedTime": 1715374660617,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zDJ4oEt5HArN1xmP"
diff --git a/packs/_source/items/trinket/elemental-gem-of-earth.json b/packs/_source/items/trinket/elemental-gem-of-earth.json
index ac8c75d705..04b40e7414 100644
--- a/packs/_source/items/trinket/elemental-gem-of-earth.json
+++ b/packs/_source/items/trinket/elemental-gem-of-earth.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 960,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233571,
- "modifiedTime": 1707055841552,
+ "modifiedTime": 1715374595900,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IGwDN9gtYxCrlrCr"
diff --git a/packs/_source/items/trinket/elemental-gem-of-fire.json b/packs/_source/items/trinket/elemental-gem-of-fire.json
index 759f57ec3d..4fc8a97a6f 100644
--- a/packs/_source/items/trinket/elemental-gem-of-fire.json
+++ b/packs/_source/items/trinket/elemental-gem-of-fire.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 960,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233748,
- "modifiedTime": 1707055845051,
+ "modifiedTime": 1715374626240,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dsjke4vPPsc9gsxH"
diff --git a/packs/_source/items/trinket/elemental-gem-of-water.json b/packs/_source/items/trinket/elemental-gem-of-water.json
index f41d97f998..46cab2439d 100644
--- a/packs/_source/items/trinket/elemental-gem-of-water.json
+++ b/packs/_source/items/trinket/elemental-gem-of-water.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 960,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233560,
- "modifiedTime": 1707055841386,
+ "modifiedTime": 1715374593817,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HLEhnzLbpRbYdAHo"
diff --git a/packs/_source/items/trinket/eversmoking-bottle.json b/packs/_source/items/trinket/eversmoking-bottle.json
index c6514717a2..b081509074 100644
--- a/packs/_source/items/trinket/eversmoking-bottle.json
+++ b/packs/_source/items/trinket/eversmoking-bottle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233520,
- "modifiedTime": 1707055840600,
+ "modifiedTime": 1715374586550,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CvzjhUy9ekRieR1A"
diff --git a/packs/_source/items/trinket/feather-token-anchor.json b/packs/_source/items/trinket/feather-token-anchor.json
index 240676325b..4ae49c3532 100644
--- a/packs/_source/items/trinket/feather-token-anchor.json
+++ b/packs/_source/items/trinket/feather-token-anchor.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233529,
- "modifiedTime": 1707055840816,
+ "modifiedTime": 1715374588021,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DnlQkH6Bpwkd5n5Y"
diff --git a/packs/_source/items/trinket/feather-token-bird.json b/packs/_source/items/trinket/feather-token-bird.json
index 0f00e9ab25..5bb7eb0b95 100644
--- a/packs/_source/items/trinket/feather-token-bird.json
+++ b/packs/_source/items/trinket/feather-token-bird.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233814,
- "modifiedTime": 1707055845732,
+ "modifiedTime": 1715374633487,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hWqImieUaLo08l9l"
diff --git a/packs/_source/items/trinket/feather-token-fan.json b/packs/_source/items/trinket/feather-token-fan.json
index 65dedaac5a..7024c8e7c5 100644
--- a/packs/_source/items/trinket/feather-token-fan.json
+++ b/packs/_source/items/trinket/feather-token-fan.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 250,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233779,
- "modifiedTime": 1707055845103,
+ "modifiedTime": 1715374626919,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!e98hfROZjztt7ccO"
diff --git a/packs/_source/items/trinket/feather-token-swan-boat.json b/packs/_source/items/trinket/feather-token-swan-boat.json
index 872f2d7799..20629b0be1 100644
--- a/packs/_source/items/trinket/feather-token-swan-boat.json
+++ b/packs/_source/items/trinket/feather-token-swan-boat.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233679,
- "modifiedTime": 1707055843344,
+ "modifiedTime": 1715374612293,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UgnUJhu0tW1tLt7g"
diff --git a/packs/_source/items/trinket/feather-token-tree.json b/packs/_source/items/trinket/feather-token-tree.json
index c7c0b0a424..fb97176d19 100644
--- a/packs/_source/items/trinket/feather-token-tree.json
+++ b/packs/_source/items/trinket/feather-token-tree.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 250,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233634,
- "modifiedTime": 1707055842622,
+ "modifiedTime": 1715374603480,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NjTgPn2o0M1TGk93"
diff --git a/packs/_source/items/trinket/feather-token-whip.json b/packs/_source/items/trinket/feather-token-whip.json
index 5621757340..7f04c1d140 100644
--- a/packs/_source/items/trinket/feather-token-whip.json
+++ b/packs/_source/items/trinket/feather-token-whip.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 250,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "mwak",
- "attackBonus": "9",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "9",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233548,
- "modifiedTime": 1707055841197,
+ "modifiedTime": 1715374591441,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Fgkj11diTJJ7H3JC"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-bronze-griffon.json b/packs/_source/items/trinket/figurine-of-wondrous-power-bronze-griffon.json
index a1b5a52525..9f84c9ab21 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-bronze-griffon.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-bronze-griffon.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233516,
- "modifiedTime": 1707055840516,
+ "modifiedTime": 1715374585834,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CI58LNiwrTpmWYMp"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-ebony-fly.json b/packs/_source/items/trinket/figurine-of-wondrous-power-ebony-fly.json
index 6507c4abf8..091f81a8d3 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-ebony-fly.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-ebony-fly.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233894,
- "modifiedTime": 1707055847231,
+ "modifiedTime": 1715374649896,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!s2kQs21J3cFg7ZSs"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-golden-lions.json b/packs/_source/items/trinket/figurine-of-wondrous-power-golden-lions.json
index ac00413ed2..93d9402de3 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-golden-lions.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-golden-lions.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1200,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233627,
- "modifiedTime": 1707055842409,
+ "modifiedTime": 1715374601978,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Minr6xegwoHFvAjG"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json b/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json
index e4f0c41d92..ba54dd0a96 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-terror.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 20000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233487,
- "modifiedTime": 1707055839806,
+ "modifiedTime": 1715374580260,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8CaODbNQtxHGuVjn"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json b/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json
index 5566109eda..9a289f86de 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-travail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 400,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233461,
- "modifiedTime": 1707055839071,
+ "modifiedTime": 1715374575275,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!41kYCmKq0PbGVKaM"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json b/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json
index fbb7ae51e0..2a41090616 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-ivory-goat-of-traveling.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233821,
- "modifiedTime": 1707055845940,
+ "modifiedTime": 1715374634845,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!iLt7wTWr4cJnQulJ"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-marble-elephant.json b/packs/_source/items/trinket/figurine-of-wondrous-power-marble-elephant.json
index 53d27f1135..a2cd0b7128 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-marble-elephant.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-marble-elephant.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233556,
- "modifiedTime": 1707055841308,
+ "modifiedTime": 1715374592960,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!GP2bvHlxVi30OEmo"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-obsidian-steed.json b/packs/_source/items/trinket/figurine-of-wondrous-power-obsidian-steed.json
index 782143d842..410265d568 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-obsidian-steed.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-obsidian-steed.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 128000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233622,
- "modifiedTime": 1707055842280,
+ "modifiedTime": 1715374600925,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!M5qkJ7erLqWYUHa0"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-onyx-dog.json b/packs/_source/items/trinket/figurine-of-wondrous-power-onyx-dog.json
index f83dbd5e05..d0138f100d 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-onyx-dog.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-onyx-dog.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233502,
- "modifiedTime": 1707055840102,
+ "modifiedTime": 1715374583183,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9nxSHbqlDdngtuuz"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-serpentine-owl.json b/packs/_source/items/trinket/figurine-of-wondrous-power-serpentine-owl.json
index 3d0582d660..ed72676777 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-serpentine-owl.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-serpentine-owl.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233697,
- "modifiedTime": 1707055843747,
+ "modifiedTime": 1715374615990,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XEH5YErAN1WSytln"
diff --git a/packs/_source/items/trinket/figurine-of-wondrous-power-silver-raven.json b/packs/_source/items/trinket/figurine-of-wondrous-power-silver-raven.json
index d7045b435b..7196918574 100644
--- a/packs/_source/items/trinket/figurine-of-wondrous-power-silver-raven.json
+++ b/packs/_source/items/trinket/figurine-of-wondrous-power-silver-raven.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233860,
- "modifiedTime": 1707055846647,
+ "modifiedTime": 1715374642768,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nMtmxeYrbyFdv0bg"
diff --git a/packs/_source/items/trinket/folding-boat.json b/packs/_source/items/trinket/folding-boat.json
index 8b580daa71..6b111bc245 100644
--- a/packs/_source/items/trinket/folding-boat.json
+++ b/packs/_source/items/trinket/folding-boat.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 10000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233916,
- "modifiedTime": 1707055847631,
+ "modifiedTime": 1715374653527,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!u4ewpAFZjLrWrmQv"
diff --git a/packs/_source/items/trinket/gem-of-brightness.json b/packs/_source/items/trinket/gem-of-brightness.json
index 78719ca97d..2661befe17 100644
--- a/packs/_source/items/trinket/gem-of-brightness.json
+++ b/packs/_source/items/trinket/gem-of-brightness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233913,
- "modifiedTime": 1707055847567,
+ "modifiedTime": 1715374653017,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!thkvJ5QBRORIwkkV"
diff --git a/packs/_source/items/trinket/gem-of-seeing.json b/packs/_source/items/trinket/gem-of-seeing.json
index e6507a2d27..df085270e3 100644
--- a/packs/_source/items/trinket/gem-of-seeing.json
+++ b/packs/_source/items/trinket/gem-of-seeing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233829,
- "modifiedTime": 1707055846069,
+ "modifiedTime": 1715374636316,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jJU8vFhHLQeKe2wu"
diff --git a/packs/_source/items/trinket/healers-kit.json b/packs/_source/items/trinket/healers-kit.json
index fd16a1c21b..a28b6e11c0 100644
--- a/packs/_source/items/trinket/healers-kit.json
+++ b/packs/_source/items/trinket/healers-kit.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233481,
- "modifiedTime": 1704823143137,
+ "modifiedTime": 1715374578943,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6rocoBx5jdzG1QQH"
diff --git a/packs/_source/items/trinket/hempen-rope-50-ft.json b/packs/_source/items/trinket/hempen-rope-50-ft.json
index 2a6de1c2c5..d3567ba88f 100644
--- a/packs/_source/items/trinket/hempen-rope-50-ft.json
+++ b/packs/_source/items/trinket/hempen-rope-50-ft.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233651,
- "modifiedTime": 1704823151357,
+ "modifiedTime": 1715374606995,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QXmaarJ4X8P0C1HV"
diff --git a/packs/_source/items/trinket/hooded-lantern.json b/packs/_source/items/trinket/hooded-lantern.json
index 5a931239cf..1451eab1ca 100644
--- a/packs/_source/items/trinket/hooded-lantern.json
+++ b/packs/_source/items/trinket/hooded-lantern.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233914,
- "modifiedTime": 1704823164539,
+ "modifiedTime": 1715374653103,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!trmWAdUoR6Y2B7rA"
diff --git a/packs/_source/items/trinket/horn-of-blasting.json b/packs/_source/items/trinket/horn-of-blasting.json
index 80655caf60..905ce729d7 100644
--- a/packs/_source/items/trinket/horn-of-blasting.json
+++ b/packs/_source/items/trinket/horn-of-blasting.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 450,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233904,
- "modifiedTime": 1707055847408,
+ "modifiedTime": 1715374651773,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!t7GfyRp3dB3lqS9i"
diff --git a/packs/_source/items/trinket/horseshoes-of-a-zephyr.json b/packs/_source/items/trinket/horseshoes-of-a-zephyr.json
index 1846bd6f9c..d7967f0397 100644
--- a/packs/_source/items/trinket/horseshoes-of-a-zephyr.json
+++ b/packs/_source/items/trinket/horseshoes-of-a-zephyr.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233449,
- "modifiedTime": 1707055838843,
+ "modifiedTime": 1715374572935,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2mvXGvDmHHhzbT04"
diff --git a/packs/_source/items/trinket/horseshoes-of-speed.json b/packs/_source/items/trinket/horseshoes-of-speed.json
index c402a8c750..1c30b5c8ad 100644
--- a/packs/_source/items/trinket/horseshoes-of-speed.json
+++ b/packs/_source/items/trinket/horseshoes-of-speed.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 8,
+ "weight": {
+ "value": 8,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233858,
- "modifiedTime": 1707055846621,
+ "modifiedTime": 1715374642445,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nAqDwI9GyXS1diiz"
diff --git a/packs/_source/items/trinket/hunting-trap.json b/packs/_source/items/trinket/hunting-trap.json
index f48934f6a5..7c13c403e3 100644
--- a/packs/_source/items/trinket/hunting-trap.json
+++ b/packs/_source/items/trinket/hunting-trap.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 25,
+ "weight": {
+ "value": 25,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233620,
- "modifiedTime": 1704823149518,
+ "modifiedTime": 1715374600327,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LiOD83I4MIZlpoQQ"
diff --git a/packs/_source/items/trinket/instant-fortress.json b/packs/_source/items/trinket/instant-fortress.json
index 9f7ed8155a..d494e9958a 100644
--- a/packs/_source/items/trinket/instant-fortress.json
+++ b/packs/_source/items/trinket/instant-fortress.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 75000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233503,
- "modifiedTime": 1707055840127,
+ "modifiedTime": 1715374583390,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9stfX2i2I1YPo8vx"
diff --git a/packs/_source/items/trinket/iron-bands-of-binding.json b/packs/_source/items/trinket/iron-bands-of-binding.json
index 63db627f67..c0bf59c32d 100644
--- a/packs/_source/items/trinket/iron-bands-of-binding.json
+++ b/packs/_source/items/trinket/iron-bands-of-binding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "dex",
"actionType": "rwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233533,
- "modifiedTime": 1707055840922,
+ "modifiedTime": 1715374588723,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!E9G4jALlSA96fKAN"
diff --git a/packs/_source/items/trinket/iron-flask.json b/packs/_source/items/trinket/iron-flask.json
index 78fc85e394..a373b92c42 100644
--- a/packs/_source/items/trinket/iron-flask.json
+++ b/packs/_source/items/trinket/iron-flask.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 31000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233850,
- "modifiedTime": 1707055846434,
+ "modifiedTime": 1715374640711,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lvLrkAR7k8DS7J3W"
diff --git a/packs/_source/items/trinket/iron-horn-of-valhalla.json b/packs/_source/items/trinket/iron-horn-of-valhalla.json
index 4801cecc08..87f5ba4db7 100644
--- a/packs/_source/items/trinket/iron-horn-of-valhalla.json
+++ b/packs/_source/items/trinket/iron-horn-of-valhalla.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 14000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233883,
- "modifiedTime": 1707055846995,
+ "modifiedTime": 1715374647623,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qVuZznv0MnIjDU70"
diff --git a/packs/_source/items/trinket/iron-spike.json b/packs/_source/items/trinket/iron-spike.json
index 221b5b24bb..45332f6535 100644
--- a/packs/_source/items/trinket/iron-spike.json
+++ b/packs/_source/items/trinket/iron-spike.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.5,
+ "weight": {
+ "value": 0.5,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233657,
- "modifiedTime": 1704823151677,
+ "modifiedTime": 1715374608073,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!RiOeHR2qaYktz5Ys"
diff --git a/packs/_source/items/trinket/lamp.json b/packs/_source/items/trinket/lamp.json
index 1e990dc711..f348626357 100644
--- a/packs/_source/items/trinket/lamp.json
+++ b/packs/_source/items/trinket/lamp.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233881,
- "modifiedTime": 1704823162934,
+ "modifiedTime": 1715374647328,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qMzHmlmha8qMDnEF"
diff --git a/packs/_source/items/trinket/lantern-of-revealing.json b/packs/_source/items/trinket/lantern-of-revealing.json
index 0d30c4394f..3caddba9aa 100644
--- a/packs/_source/items/trinket/lantern-of-revealing.json
+++ b/packs/_source/items/trinket/lantern-of-revealing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233482,
- "modifiedTime": 1707055839667,
+ "modifiedTime": 1715374579245,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7FLs8qIGdOFnz9oL"
diff --git a/packs/_source/items/trinket/lock.json b/packs/_source/items/trinket/lock.json
index 5b09af7196..b4677d90a2 100644
--- a/packs/_source/items/trinket/lock.json
+++ b/packs/_source/items/trinket/lock.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233969,
- "modifiedTime": 1704823166186,
+ "modifiedTime": 1715374658996,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xwUWrV15s9jLnmfZ"
diff --git a/packs/_source/items/trinket/manacles.json b/packs/_source/items/trinket/manacles.json
index 5bda9bf468..4e38521a57 100644
--- a/packs/_source/items/trinket/manacles.json
+++ b/packs/_source/items/trinket/manacles.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233912,
- "modifiedTime": 1704823164452,
+ "modifiedTime": 1715374652817,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tWJLHIL6ZIZUez9k"
diff --git a/packs/_source/items/trinket/manual-of-bodily-health.json b/packs/_source/items/trinket/manual-of-bodily-health.json
index 6c582e4063..30632c977e 100644
--- a/packs/_source/items/trinket/manual-of-bodily-health.json
+++ b/packs/_source/items/trinket/manual-of-bodily-health.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 100000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233512,
- "modifiedTime": 1707055840352,
+ "modifiedTime": 1715374584866,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BjyTJn9oGvURWKJR"
diff --git a/packs/_source/items/trinket/manual-of-gainful-exercise.json b/packs/_source/items/trinket/manual-of-gainful-exercise.json
index 2facb7e0f9..dd4dd2f67e 100644
--- a/packs/_source/items/trinket/manual-of-gainful-exercise.json
+++ b/packs/_source/items/trinket/manual-of-gainful-exercise.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 100000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233971,
- "modifiedTime": 1707055848172,
+ "modifiedTime": 1715374659708,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ykefWXBjq3y6y9Se"
diff --git a/packs/_source/items/trinket/manual-of-golems.json b/packs/_source/items/trinket/manual-of-golems.json
index 61f60b9fe8..8717ecb6bb 100644
--- a/packs/_source/items/trinket/manual-of-golems.json
+++ b/packs/_source/items/trinket/manual-of-golems.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 35000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233681,
- "modifiedTime": 1707055843397,
+ "modifiedTime": 1715374612849,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UxkP6FvDzPbsIY6o"
diff --git a/packs/_source/items/trinket/manual-of-quickness-of-action.json b/packs/_source/items/trinket/manual-of-quickness-of-action.json
index 8340d9cb40..a75c6e8461 100644
--- a/packs/_source/items/trinket/manual-of-quickness-of-action.json
+++ b/packs/_source/items/trinket/manual-of-quickness-of-action.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 100000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233647,
- "modifiedTime": 1707055842864,
+ "modifiedTime": 1715374606309,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Q4jmng3i9Lb2nL5F"
diff --git a/packs/_source/items/trinket/marvelous-pigments.json b/packs/_source/items/trinket/marvelous-pigments.json
index 498abddcf7..d3f5d8a856 100644
--- a/packs/_source/items/trinket/marvelous-pigments.json
+++ b/packs/_source/items/trinket/marvelous-pigments.json
@@ -14,7 +14,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -88,7 +90,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"flags": {},
@@ -100,10 +109,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233750,
- "modifiedTime": 1707055845076,
+ "modifiedTime": 1715374626674,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!e3XQygrXkzNvkDGF"
diff --git a/packs/_source/items/trinket/mirror-of-life-trapping.json b/packs/_source/items/trinket/mirror-of-life-trapping.json
index 419475269f..016d707b2b 100644
--- a/packs/_source/items/trinket/mirror-of-life-trapping.json
+++ b/packs/_source/items/trinket/mirror-of-life-trapping.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 50,
+ "weight": {
+ "value": 50,
+ "units": "lb"
+ },
"price": {
"value": 18000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233816,
- "modifiedTime": 1707055845785,
+ "modifiedTime": 1715374633803,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hf5j1meGsA33HkUj"
diff --git a/packs/_source/items/trinket/necklace-of-fireballs.json b/packs/_source/items/trinket/necklace-of-fireballs.json
index 72a472b815..d9b927d873 100644
--- a/packs/_source/items/trinket/necklace-of-fireballs.json
+++ b/packs/_source/items/trinket/necklace-of-fireballs.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.01,
+ "weight": {
+ "value": 0.01,
+ "units": "lb"
+ },
"price": {
"value": 61440,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233452,
- "modifiedTime": 1707055838954,
+ "modifiedTime": 1715374573449,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3ALOhh6JNInIK4o7"
diff --git a/packs/_source/items/trinket/oil-flask.json b/packs/_source/items/trinket/oil-flask.json
index fce1d8b670..33cb16c370 100644
--- a/packs/_source/items/trinket/oil-flask.json
+++ b/packs/_source/items/trinket/oil-flask.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -62,7 +65,6 @@
},
"ability": "dex",
"actionType": "rwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233876,
- "modifiedTime": 1704823162645,
+ "modifiedTime": 1715374646303,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!psoZaItkOScMVaHL"
diff --git a/packs/_source/items/trinket/pearl-of-power.json b/packs/_source/items/trinket/pearl-of-power.json
index d9a385700c..d9ec570fba 100644
--- a/packs/_source/items/trinket/pearl-of-power.json
+++ b/packs/_source/items/trinket/pearl-of-power.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233462,
- "modifiedTime": 1707055839098,
+ "modifiedTime": 1715374575376,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!44XNWmMGnwXn7bNW"
diff --git a/packs/_source/items/trinket/pipes-of-haunting.json b/packs/_source/items/trinket/pipes-of-haunting.json
index 01e62ed50e..833fb6ede3 100644
--- a/packs/_source/items/trinket/pipes-of-haunting.json
+++ b/packs/_source/items/trinket/pipes-of-haunting.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233868,
- "modifiedTime": 1707055846779,
+ "modifiedTime": 1715374644379,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!oNLfJNRQgUHpU8c7"
diff --git a/packs/_source/items/trinket/pipes-of-the-sewers.json b/packs/_source/items/trinket/pipes-of-the-sewers.json
index cf6c33894f..dcb2a47f15 100644
--- a/packs/_source/items/trinket/pipes-of-the-sewers.json
+++ b/packs/_source/items/trinket/pipes-of-the-sewers.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233865,
- "modifiedTime": 1707055846727,
+ "modifiedTime": 1715374643967,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nvhk1quD0Dg1ZtSH"
diff --git a/packs/_source/items/trinket/piton.json b/packs/_source/items/trinket/piton.json
index 060441814d..c101b1661f 100644
--- a/packs/_source/items/trinket/piton.json
+++ b/packs/_source/items/trinket/piton.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233674,
- "modifiedTime": 1704823152529,
+ "modifiedTime": 1715374610993,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TqyvIglHDj5kfohR"
diff --git a/packs/_source/items/trinket/portable-hole.json b/packs/_source/items/trinket/portable-hole.json
index 48a7c91635..d92697ca15 100644
--- a/packs/_source/items/trinket/portable-hole.json
+++ b/packs/_source/items/trinket/portable-hole.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233894,
- "modifiedTime": 1707055847203,
+ "modifiedTime": 1715374649796,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rvxGvcUzoQXVNbAu"
diff --git a/packs/_source/items/trinket/portable-ram.json b/packs/_source/items/trinket/portable-ram.json
index 36eba2592d..25d54bb744 100644
--- a/packs/_source/items/trinket/portable-ram.json
+++ b/packs/_source/items/trinket/portable-ram.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 35,
+ "weight": {
+ "value": 35,
+ "units": "lb"
+ },
"price": {
"value": 4,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "str",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233902,
- "modifiedTime": 1704823164037,
+ "modifiedTime": 1715374651360,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!srTRzwTfWKO5opOo"
diff --git a/packs/_source/items/trinket/rope-of-climbing.json b/packs/_source/items/trinket/rope-of-climbing.json
index 3439f079d1..45719ee64d 100644
--- a/packs/_source/items/trinket/rope-of-climbing.json
+++ b/packs/_source/items/trinket/rope-of-climbing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233444,
- "modifiedTime": 1707055838728,
+ "modifiedTime": 1715374572027,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!29e6gHwWKNLaRUoz"
diff --git a/packs/_source/items/trinket/rope-of-entanglement.json b/packs/_source/items/trinket/rope-of-entanglement.json
index 0cedb71876..40758623cc 100644
--- a/packs/_source/items/trinket/rope-of-entanglement.json
+++ b/packs/_source/items/trinket/rope-of-entanglement.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233577,
- "modifiedTime": 1707055841735,
+ "modifiedTime": 1715374596944,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!J8gQdJJi5e8LmD7H"
diff --git a/packs/_source/items/trinket/scarab-of-protection.json b/packs/_source/items/trinket/scarab-of-protection.json
index 1377fdf441..9758fc790c 100644
--- a/packs/_source/items/trinket/scarab-of-protection.json
+++ b/packs/_source/items/trinket/scarab-of-protection.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 36000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233967,
- "modifiedTime": 1707055848034,
+ "modifiedTime": 1715374658442,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xjRSY2ECcc9viSz3"
diff --git a/packs/_source/items/trinket/silk-rope-50-ft.json b/packs/_source/items/trinket/silk-rope-50-ft.json
index 1accc6ff11..5dc990f347 100644
--- a/packs/_source/items/trinket/silk-rope-50-ft.json
+++ b/packs/_source/items/trinket/silk-rope-50-ft.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -87,7 +89,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -98,10 +107,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233869,
- "modifiedTime": 1704823162159,
+ "modifiedTime": 1715374644707,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!oY8KbpGmB5H2Deoy"
diff --git a/packs/_source/items/trinket/silver-horn-of-valhalla.json b/packs/_source/items/trinket/silver-horn-of-valhalla.json
index 1e1736235d..694ddd4a8e 100644
--- a/packs/_source/items/trinket/silver-horn-of-valhalla.json
+++ b/packs/_source/items/trinket/silver-horn-of-valhalla.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5600,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233847,
- "modifiedTime": 1707055846380,
+ "modifiedTime": 1715374639906,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lTfo6OVvAY2iJ4oq"
diff --git a/packs/_source/items/trinket/sovereign-glue.json b/packs/_source/items/trinket/sovereign-glue.json
index 43510bb32f..7c4a50062c 100644
--- a/packs/_source/items/trinket/sovereign-glue.json
+++ b/packs/_source/items/trinket/sovereign-glue.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 400,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233977,
- "modifiedTime": 1707055848301,
+ "modifiedTime": 1715374660808,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zJ5LhDvTxYKzPIx4"
diff --git a/packs/_source/items/trinket/sphere-of-annihilation.json b/packs/_source/items/trinket/sphere-of-annihilation.json
index e47756c730..835264e917 100644
--- a/packs/_source/items/trinket/sphere-of-annihilation.json
+++ b/packs/_source/items/trinket/sphere-of-annihilation.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 15000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233446,
- "modifiedTime": 1707055838784,
+ "modifiedTime": 1715374572447,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2YNqk5zm9jDTvd7q"
diff --git a/packs/_source/items/trinket/stone-of-controlling-earth-elementals.json b/packs/_source/items/trinket/stone-of-controlling-earth-elementals.json
index bf377acb60..c5d2c04690 100644
--- a/packs/_source/items/trinket/stone-of-controlling-earth-elementals.json
+++ b/packs/_source/items/trinket/stone-of-controlling-earth-elementals.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233670,
- "modifiedTime": 1707055843132,
+ "modifiedTime": 1715374610315,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TWFS1BtruQeE10BY"
diff --git a/packs/_source/items/trinket/talisman-of-pure-good.json b/packs/_source/items/trinket/talisman-of-pure-good.json
index 4cf055882e..5dbe1aa062 100644
--- a/packs/_source/items/trinket/talisman-of-pure-good.json
+++ b/packs/_source/items/trinket/talisman-of-pure-good.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 71680,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233820,
- "modifiedTime": 1707055845913,
+ "modifiedTime": 1715374634517,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!iB3gunzgxZ8xK6Z5"
diff --git a/packs/_source/items/trinket/talisman-of-the-sphere.json b/packs/_source/items/trinket/talisman-of-the-sphere.json
index a159724472..5a61efa862 100644
--- a/packs/_source/items/trinket/talisman-of-the-sphere.json
+++ b/packs/_source/items/trinket/talisman-of-the-sphere.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 20000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "int",
"actionType": "abil",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233463,
- "modifiedTime": 1707055839153,
+ "modifiedTime": 1715374575579,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!46ikeR4RrSim6DsN"
diff --git a/packs/_source/items/trinket/talisman-of-ultimate-evil.json b/packs/_source/items/trinket/talisman-of-ultimate-evil.json
index b86eba8a00..8e162de8e6 100644
--- a/packs/_source/items/trinket/talisman-of-ultimate-evil.json
+++ b/packs/_source/items/trinket/talisman-of-ultimate-evil.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 61440,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233642,
- "modifiedTime": 1707055842782,
+ "modifiedTime": 1715374605270,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PAXfmZ2ErDlCVy0N"
diff --git a/packs/_source/items/trinket/tome-of-clear-thought.json b/packs/_source/items/trinket/tome-of-clear-thought.json
index d4a5691765..dee9d7092f 100644
--- a/packs/_source/items/trinket/tome-of-clear-thought.json
+++ b/packs/_source/items/trinket/tome-of-clear-thought.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 100000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233445,
- "modifiedTime": 1707055838753,
+ "modifiedTime": 1715374572135,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2BYm8to5KldN8eYu"
diff --git a/packs/_source/items/trinket/tome-of-leadership-and-influence.json b/packs/_source/items/trinket/tome-of-leadership-and-influence.json
index a91096e1e8..ba3a2361c4 100644
--- a/packs/_source/items/trinket/tome-of-leadership-and-influence.json
+++ b/packs/_source/items/trinket/tome-of-leadership-and-influence.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 100000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233867,
- "modifiedTime": 1707055846754,
+ "modifiedTime": 1715374644270,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!oN4Glcmi4BhdAI3k"
diff --git a/packs/_source/items/trinket/tome-of-understanding.json b/packs/_source/items/trinket/tome-of-understanding.json
index fd1036e620..079dd888e0 100644
--- a/packs/_source/items/trinket/tome-of-understanding.json
+++ b/packs/_source/items/trinket/tome-of-understanding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 100000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233693,
- "modifiedTime": 1707055843665,
+ "modifiedTime": 1715374615256,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WnKWD1FuAFUE7f4v"
diff --git a/packs/_source/items/trinket/torch.json b/packs/_source/items/trinket/torch.json
index 52956d1d0b..65588f2150 100644
--- a/packs/_source/items/trinket/torch.json
+++ b/packs/_source/items/trinket/torch.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "cp"
@@ -62,7 +65,6 @@
},
"ability": "str",
"actionType": "mwak",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -92,7 +94,14 @@
},
"container": null,
"crewed": false,
- "properties": []
+ "properties": [],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -103,10 +112,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233513,
- "modifiedTime": 1704823144992,
+ "modifiedTime": 1715374585068,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BnOCLuNWhVvzHLjl"
diff --git a/packs/_source/items/trinket/universal-solvent.json b/packs/_source/items/trinket/universal-solvent.json
index a4a007e0ce..4c6f9c8c9b 100644
--- a/packs/_source/items/trinket/universal-solvent.json
+++ b/packs/_source/items/trinket/universal-solvent.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.1,
+ "weight": {
+ "value": 0.1,
+ "units": "lb"
+ },
"price": {
"value": 300,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233624,
- "modifiedTime": 1707055842305,
+ "modifiedTime": 1715374601170,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!MAwoj2suj6cvb9Ti"
diff --git a/packs/_source/items/trinket/well-of-many-worlds.json b/packs/_source/items/trinket/well-of-many-worlds.json
index 03ee3b92c6..a6e1760b99 100644
--- a/packs/_source/items/trinket/well-of-many-worlds.json
+++ b/packs/_source/items/trinket/well-of-many-worlds.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 250000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233967,
- "modifiedTime": 1707055848061,
+ "modifiedTime": 1715374658541,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xjme5oSQZmdAy1fc"
diff --git a/packs/_source/items/trinket/wind-fan.json b/packs/_source/items/trinket/wind-fan.json
index 99283e0f66..8ef264e80a 100644
--- a/packs/_source/items/trinket/wind-fan.json
+++ b/packs/_source/items/trinket/wind-fan.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233854,
- "modifiedTime": 1707055846487,
+ "modifiedTime": 1715374641584,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mYFfH24uzuKh4IPS"
diff --git a/packs/_source/items/wand/wand-of-binding.json b/packs/_source/items/wand/wand-of-binding.json
index 9bc4ee2148..c10bee50db 100644
--- a/packs/_source/items/wand/wand-of-binding.json
+++ b/packs/_source/items/wand/wand-of-binding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233484,
- "modifiedTime": 1707055839696,
+ "modifiedTime": 1715374579544,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7jEKkA9qbwJ3IuCb"
diff --git a/packs/_source/items/wand/wand-of-enemy-detection.json b/packs/_source/items/wand/wand-of-enemy-detection.json
index 7689730385..4599c02f4d 100644
--- a/packs/_source/items/wand/wand-of-enemy-detection.json
+++ b/packs/_source/items/wand/wand-of-enemy-detection.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233470,
- "modifiedTime": 1707055839295,
+ "modifiedTime": 1715374576630,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5Rxo4K9cgpwgW9vZ"
diff --git a/packs/_source/items/wand/wand-of-fear.json b/packs/_source/items/wand/wand-of-fear.json
index a9fd7ee797..3c27f38ba9 100644
--- a/packs/_source/items/wand/wand-of-fear.json
+++ b/packs/_source/items/wand/wand-of-fear.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233534,
- "modifiedTime": 1707055840949,
+ "modifiedTime": 1715374588935,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!EJFql4aNWHHJSxT9"
diff --git a/packs/_source/items/wand/wand-of-fireballs.json b/packs/_source/items/wand/wand-of-fireballs.json
index e52d41a87e..86d3cfbd58 100644
--- a/packs/_source/items/wand/wand-of-fireballs.json
+++ b/packs/_source/items/wand/wand-of-fireballs.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 32000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233530,
- "modifiedTime": 1707055840871,
+ "modifiedTime": 1715374588207,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DoSvjhRARhRqWZXg"
diff --git a/packs/_source/items/wand/wand-of-lightning-bolts.json b/packs/_source/items/wand/wand-of-lightning-bolts.json
index 4edd82359c..0f4f808701 100644
--- a/packs/_source/items/wand/wand-of-lightning-bolts.json
+++ b/packs/_source/items/wand/wand-of-lightning-bolts.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 32000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -94,7 +96,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -105,10 +114,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233730,
- "modifiedTime": 1707055844683,
+ "modifiedTime": 1715374622904,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bPFVfq81EsMNu6OQ"
diff --git a/packs/_source/items/wand/wand-of-magic-detection.json b/packs/_source/items/wand/wand-of-magic-detection.json
index 01d4db082f..c8b9a9d5fb 100644
--- a/packs/_source/items/wand/wand-of-magic-detection.json
+++ b/packs/_source/items/wand/wand-of-magic-detection.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233438,
- "modifiedTime": 1707055838538,
+ "modifiedTime": 1715374570643,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!18fbyArtidKzON01"
diff --git a/packs/_source/items/wand/wand-of-magic-missiles.json b/packs/_source/items/wand/wand-of-magic-missiles.json
index 6c963ef34a..7d23d5116a 100644
--- a/packs/_source/items/wand/wand-of-magic-missiles.json
+++ b/packs/_source/items/wand/wand-of-magic-missiles.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -98,7 +100,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -109,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233442,
- "modifiedTime": 1707055838663,
+ "modifiedTime": 1715374571596,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!1taRIMF9w7jpnonN"
diff --git a/packs/_source/items/wand/wand-of-paralysis.json b/packs/_source/items/wand/wand-of-paralysis.json
index d4ca5b6483..72e03ff0a4 100644
--- a/packs/_source/items/wand/wand-of-paralysis.json
+++ b/packs/_source/items/wand/wand-of-paralysis.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233556,
- "modifiedTime": 1707055841332,
+ "modifiedTime": 1715374593052,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!GcpXNc4dKUNw0Tk6"
diff --git a/packs/_source/items/wand/wand-of-polymorph.json b/packs/_source/items/wand/wand-of-polymorph.json
index 304f9660b4..eed655db7e 100644
--- a/packs/_source/items/wand/wand-of-polymorph.json
+++ b/packs/_source/items/wand/wand-of-polymorph.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 32000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "save",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233839,
- "modifiedTime": 1707055846202,
+ "modifiedTime": 1715374638136,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!khyjT3dKyoEOf4eA"
diff --git a/packs/_source/items/wand/wand-of-secrets.json b/packs/_source/items/wand/wand-of-secrets.json
index d15d7b1fc0..ea864556e7 100644
--- a/packs/_source/items/wand/wand-of-secrets.json
+++ b/packs/_source/items/wand/wand-of-secrets.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233684,
- "modifiedTime": 1707055843423,
+ "modifiedTime": 1715374613340,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VQ6NWjWV37wiB29O"
diff --git a/packs/_source/items/wand/wand-of-the-war-mage-1.json b/packs/_source/items/wand/wand-of-the-war-mage-1.json
index 69b84955e3..39ef3b794f 100644
--- a/packs/_source/items/wand/wand-of-the-war-mage-1.json
+++ b/packs/_source/items/wand/wand-of-the-war-mage-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1200,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233637,
- "modifiedTime": 1707055842674,
+ "modifiedTime": 1715374604122,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!OPbdSlrhkUDNpgcS"
diff --git a/packs/_source/items/wand/wand-of-the-war-mage-2.json b/packs/_source/items/wand/wand-of-the-war-mage-2.json
index 38a524ec74..ed11dcd32d 100644
--- a/packs/_source/items/wand/wand-of-the-war-mage-2.json
+++ b/packs/_source/items/wand/wand-of-the-war-mage-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 4800,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233834,
- "modifiedTime": 1707055846145,
+ "modifiedTime": 1715374637271,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!k3T7tpcdzDyVKlF4"
diff --git a/packs/_source/items/wand/wand-of-the-war-mage-3.json b/packs/_source/items/wand/wand-of-the-war-mage-3.json
index 7a3b2e17a0..1293bd8f2a 100644
--- a/packs/_source/items/wand/wand-of-the-war-mage-3.json
+++ b/packs/_source/items/wand/wand-of-the-war-mage-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 19200,
"denomination": "gp"
@@ -61,7 +64,6 @@
},
"ability": null,
"actionType": "",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -79,7 +81,8 @@
},
"armor": {
"value": 0,
- "dex": null
+ "dex": null,
+ "magicalBonus": null
},
"hp": {
"value": 0,
@@ -104,7 +107,13 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -115,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233576,
- "modifiedTime": 1707055841710,
+ "modifiedTime": 1715374596834,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IuVaBrq17AqxpXc4"
diff --git a/packs/_source/items/wand/wand-of-web.json b/packs/_source/items/wand/wand-of-web.json
index 7436ef0de1..01eef022e4 100644
--- a/packs/_source/items/wand/wand-of-web.json
+++ b/packs/_source/items/wand/wand-of-web.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233466,
- "modifiedTime": 1707055839211,
+ "modifiedTime": 1715374576098,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!4sR5HOah6KwVPHOb"
diff --git a/packs/_source/items/wand/wand-of-wonder.json b/packs/_source/items/wand/wand-of-wonder.json
index 967d1bbdb2..f027808fcc 100644
--- a/packs/_source/items/wand/wand-of-wonder.json
+++ b/packs/_source/items/wand/wand-of-wonder.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -62,7 +65,6 @@
},
"ability": "",
"actionType": "util",
- "attackBonus": "",
"chatFlavor": "",
"critical": {
"threshold": null,
@@ -89,7 +91,14 @@
"crewed": false,
"properties": [
"mgc"
- ]
+ ],
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "enchantment": null,
+ "summons": null,
+ "magicalBonus": null
},
"effects": [],
"folder": "1aDgsGVwDbPdxG2V",
@@ -100,10 +109,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233845,
- "modifiedTime": 1707055846330,
+ "modifiedTime": 1715374639723,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lPsueMv4ZoXqCYf9"
diff --git a/packs/_source/items/weapon/battleaxe-1.json b/packs/_source/items/weapon/battleaxe-1.json
index 3584ae0978..1dacd96a7c 100644
--- a/packs/_source/items/weapon/battleaxe-1.json
+++ b/packs/_source/items/weapon/battleaxe-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233676,
- "modifiedTime": 1709659527698,
+ "modifiedTime": 1715374611543,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UAXu4MNvAvaKz9JO"
diff --git a/packs/_source/items/weapon/battleaxe-2.json b/packs/_source/items/weapon/battleaxe-2.json
index 6a7af9c713..a70bfe4765 100644
--- a/packs/_source/items/weapon/battleaxe-2.json
+++ b/packs/_source/items/weapon/battleaxe-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233737,
- "modifiedTime": 1709659528594,
+ "modifiedTime": 1715374624164,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!cQ94oKUZN8FDAI8U"
diff --git a/packs/_source/items/weapon/battleaxe-3.json b/packs/_source/items/weapon/battleaxe-3.json
index 19ef21460c..23972a8aaa 100644
--- a/packs/_source/items/weapon/battleaxe-3.json
+++ b/packs/_source/items/weapon/battleaxe-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233837,
- "modifiedTime": 1709659529813,
+ "modifiedTime": 1715374637703,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kNlvoSTcdMqxJPmI"
diff --git a/packs/_source/items/weapon/battleaxe.json b/packs/_source/items/weapon/battleaxe.json
index b4513df999..6440230536 100644
--- a/packs/_source/items/weapon/battleaxe.json
+++ b/packs/_source/items/weapon/battleaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233568,
- "modifiedTime": 1709659526533,
+ "modifiedTime": 1715374595395,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!I0WocDSuNpGJayPb"
diff --git a/packs/_source/items/weapon/berserker-battleaxe.json b/packs/_source/items/weapon/berserker-battleaxe.json
index 6ae495120d..c670d10cb0 100644
--- a/packs/_source/items/weapon/berserker-battleaxe.json
+++ b/packs/_source/items/weapon/berserker-battleaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233749,
- "modifiedTime": 1709659528857,
+ "modifiedTime": 1715374626460,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dvNzJqb7vq6oJlA2"
diff --git a/packs/_source/items/weapon/berserker-greataxe.json b/packs/_source/items/weapon/berserker-greataxe.json
index 82ee4ec589..27acb905d3 100644
--- a/packs/_source/items/weapon/berserker-greataxe.json
+++ b/packs/_source/items/weapon/berserker-greataxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233978,
- "modifiedTime": 1709659531946,
+ "modifiedTime": 1715374660924,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zSKorO6lwT7vs2uk"
diff --git a/packs/_source/items/weapon/berserker-handaxe.json b/packs/_source/items/weapon/berserker-handaxe.json
index 33655757a1..58896154e6 100644
--- a/packs/_source/items/weapon/berserker-handaxe.json
+++ b/packs/_source/items/weapon/berserker-handaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233808,
- "modifiedTime": 1709659529375,
+ "modifiedTime": 1715374632280,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gwuffGC4JZ8BbStz"
diff --git a/packs/_source/items/weapon/blowgun-1.json b/packs/_source/items/weapon/blowgun-1.json
index b61e35e655..9d56b40388 100644
--- a/packs/_source/items/weapon/blowgun-1.json
+++ b/packs/_source/items/weapon/blowgun-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233629,
- "modifiedTime": 1709659526984,
+ "modifiedTime": 1715374602614,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!N8XNP3vjVZmM2r9S"
diff --git a/packs/_source/items/weapon/blowgun-2.json b/packs/_source/items/weapon/blowgun-2.json
index b716cdec8f..bbeeca301e 100644
--- a/packs/_source/items/weapon/blowgun-2.json
+++ b/packs/_source/items/weapon/blowgun-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233800,
- "modifiedTime": 1709659529172,
+ "modifiedTime": 1715374630696,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fu7DJcrYWfGMeVt9"
diff --git a/packs/_source/items/weapon/blowgun-3.json b/packs/_source/items/weapon/blowgun-3.json
index 42fa49b1d8..4efd8035d9 100644
--- a/packs/_source/items/weapon/blowgun-3.json
+++ b/packs/_source/items/weapon/blowgun-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233561,
- "modifiedTime": 1709659526406,
+ "modifiedTime": 1715374594009,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HQJ8tiyyrJJSUSyF"
diff --git a/packs/_source/items/weapon/blowgun.json b/packs/_source/items/weapon/blowgun.json
index d186578cfc..959be857f1 100644
--- a/packs/_source/items/weapon/blowgun.json
+++ b/packs/_source/items/weapon/blowgun.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233958,
- "modifiedTime": 1709659531609,
+ "modifiedTime": 1715374656462,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wNWK6yJMHG9ANqQV"
diff --git a/packs/_source/items/weapon/club-1.json b/packs/_source/items/weapon/club-1.json
index a0fb68494b..45cde8cbc9 100644
--- a/packs/_source/items/weapon/club-1.json
+++ b/packs/_source/items/weapon/club-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233794,
- "modifiedTime": 1709659529069,
+ "modifiedTime": 1715374629752,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fCRftM4QxEDkeu0a"
diff --git a/packs/_source/items/weapon/club-2.json b/packs/_source/items/weapon/club-2.json
index f5fc332014..e6a3f7628b 100644
--- a/packs/_source/items/weapon/club-2.json
+++ b/packs/_source/items/weapon/club-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233809,
- "modifiedTime": 1709659529399,
+ "modifiedTime": 1715374632375,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gyJ0imAckcWtCjyv"
diff --git a/packs/_source/items/weapon/club-3.json b/packs/_source/items/weapon/club-3.json
index 85db9e687a..ccc0681155 100644
--- a/packs/_source/items/weapon/club-3.json
+++ b/packs/_source/items/weapon/club-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233564,
- "modifiedTime": 1709659526432,
+ "modifiedTime": 1715374594546,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HdC66U61pDOknaux"
diff --git a/packs/_source/items/weapon/club.json b/packs/_source/items/weapon/club.json
index 2928f5ed27..378f93f9f9 100644
--- a/packs/_source/items/weapon/club.json
+++ b/packs/_source/items/weapon/club.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233863,
- "modifiedTime": 1709659530299,
+ "modifiedTime": 1715374643313,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nfIRTECQIG81CvM4"
diff --git a/packs/_source/items/weapon/crystal.json b/packs/_source/items/weapon/crystal.json
index c9a7c2adb3..1df8eb162b 100644
--- a/packs/_source/items/weapon/crystal.json
+++ b/packs/_source/items/weapon/crystal.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233920,
- "modifiedTime": 1709659531479,
+ "modifiedTime": 1715374654376,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uXOT4fYbgPY8DGdd"
diff --git a/packs/_source/items/weapon/dagger-1.json b/packs/_source/items/weapon/dagger-1.json
index d8bb1229a3..cb97eb228d 100644
--- a/packs/_source/items/weapon/dagger-1.json
+++ b/packs/_source/items/weapon/dagger-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233468,
- "modifiedTime": 1709659525103,
+ "modifiedTime": 1715374576312,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!59pjg8FGM4GG4Fdd"
diff --git a/packs/_source/items/weapon/dagger-2.json b/packs/_source/items/weapon/dagger-2.json
index 245da44dad..05394e0d70 100644
--- a/packs/_source/items/weapon/dagger-2.json
+++ b/packs/_source/items/weapon/dagger-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233621,
- "modifiedTime": 1709659526859,
+ "modifiedTime": 1715374600551,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Lr8aRsnia8hftPAb"
diff --git a/packs/_source/items/weapon/dagger-3.json b/packs/_source/items/weapon/dagger-3.json
index d9db1056b7..dd6ce00d4c 100644
--- a/packs/_source/items/weapon/dagger-3.json
+++ b/packs/_source/items/weapon/dagger-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233731,
- "modifiedTime": 1709659528522,
+ "modifiedTime": 1715374623013,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bWI5i4RbyGKT6Eiq"
diff --git a/packs/_source/items/weapon/dagger-of-venom.json b/packs/_source/items/weapon/dagger-of-venom.json
index 365c027558..7411162fb7 100644
--- a/packs/_source/items/weapon/dagger-of-venom.json
+++ b/packs/_source/items/weapon/dagger-of-venom.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2500,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233483,
- "modifiedTime": 1709659525289,
+ "modifiedTime": 1715374579447,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7i4s9msZWpAw4Ynv"
diff --git a/packs/_source/items/weapon/dagger.json b/packs/_source/items/weapon/dagger.json
index c2f7940eb9..ef1087d6e0 100644
--- a/packs/_source/items/weapon/dagger.json
+++ b/packs/_source/items/weapon/dagger.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233433,
- "modifiedTime": 1709659524634,
+ "modifiedTime": 1715374569612,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!0E565kQUBmndJ1a2"
diff --git a/packs/_source/items/weapon/dancing-greatsword.json b/packs/_source/items/weapon/dancing-greatsword.json
index 02adf1ccdb..f0dce56550 100644
--- a/packs/_source/items/weapon/dancing-greatsword.json
+++ b/packs/_source/items/weapon/dancing-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233978,
- "modifiedTime": 1709659531977,
+ "modifiedTime": 1715374661032,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zWSB0NCllWaSVoNT"
diff --git a/packs/_source/items/weapon/dancing-longsword.json b/packs/_source/items/weapon/dancing-longsword.json
index 9ecdcf8fc7..9fd2a68829 100644
--- a/packs/_source/items/weapon/dancing-longsword.json
+++ b/packs/_source/items/weapon/dancing-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233895,
- "modifiedTime": 1709659531036,
+ "modifiedTime": 1715374650108,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sIiUbRJItYAs5gtA"
diff --git a/packs/_source/items/weapon/dancing-rapier.json b/packs/_source/items/weapon/dancing-rapier.json
index 8d3aa03e88..9a47b3cd7e 100644
--- a/packs/_source/items/weapon/dancing-rapier.json
+++ b/packs/_source/items/weapon/dancing-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233479,
- "modifiedTime": 1709659525239,
+ "modifiedTime": 1715374578614,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6n8J07mFo8xs11vS"
diff --git a/packs/_source/items/weapon/dancing-scimitar.json b/packs/_source/items/weapon/dancing-scimitar.json
index c726df3069..cce86d25b8 100644
--- a/packs/_source/items/weapon/dancing-scimitar.json
+++ b/packs/_source/items/weapon/dancing-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233837,
- "modifiedTime": 1709659529843,
+ "modifiedTime": 1715374637817,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kOYXMf4GTtD7OqbD"
diff --git a/packs/_source/items/weapon/dancing-shortsword.json b/packs/_source/items/weapon/dancing-shortsword.json
index a744cb35e0..e12863cc0a 100644
--- a/packs/_source/items/weapon/dancing-shortsword.json
+++ b/packs/_source/items/weapon/dancing-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233903,
- "modifiedTime": 1709659531171,
+ "modifiedTime": 1715374651458,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!stlFCpqW3ZuAftTi"
diff --git a/packs/_source/items/weapon/dart-1.json b/packs/_source/items/weapon/dart-1.json
index 733d6eac48..cd5d2dddc6 100644
--- a/packs/_source/items/weapon/dart-1.json
+++ b/packs/_source/items/weapon/dart-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233807,
- "modifiedTime": 1709659529351,
+ "modifiedTime": 1715374632067,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!giU3yyZXvErjf78D"
diff --git a/packs/_source/items/weapon/dart-2.json b/packs/_source/items/weapon/dart-2.json
index 82d367d8bf..3a4fcaf85e 100644
--- a/packs/_source/items/weapon/dart-2.json
+++ b/packs/_source/items/weapon/dart-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233536,
- "modifiedTime": 1709659525974,
+ "modifiedTime": 1715374589453,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!EWdfUQriSabqDESm"
diff --git a/packs/_source/items/weapon/dart-3.json b/packs/_source/items/weapon/dart-3.json
index e037dd2215..9be1044a83 100644
--- a/packs/_source/items/weapon/dart-3.json
+++ b/packs/_source/items/weapon/dart-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233828,
- "modifiedTime": 1709659529635,
+ "modifiedTime": 1715374635894,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!izF3kmyFEVI5TWhp"
diff --git a/packs/_source/items/weapon/dart.json b/packs/_source/items/weapon/dart.json
index 13600a6fd6..38cadca50c 100644
--- a/packs/_source/items/weapon/dart.json
+++ b/packs/_source/items/weapon/dart.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "cp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233460,
- "modifiedTime": 1709659525050,
+ "modifiedTime": 1715374574957,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3rCO8MTIdPGSW6IJ"
diff --git a/packs/_source/items/weapon/defender-greatsword.json b/packs/_source/items/weapon/defender-greatsword.json
index a3bb888839..734e84b36d 100644
--- a/packs/_source/items/weapon/defender-greatsword.json
+++ b/packs/_source/items/weapon/defender-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233860,
- "modifiedTime": 1709659530250,
+ "modifiedTime": 1715374642876,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nSNhjX5F7f86AW1a"
diff --git a/packs/_source/items/weapon/defender-longsword.json b/packs/_source/items/weapon/defender-longsword.json
index bf7dc933e3..d691d4bf8c 100644
--- a/packs/_source/items/weapon/defender-longsword.json
+++ b/packs/_source/items/weapon/defender-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233921,
- "modifiedTime": 1709659531503,
+ "modifiedTime": 1715374654791,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ukcKemEoTTRB9yLC"
diff --git a/packs/_source/items/weapon/defender-rapier.json b/packs/_source/items/weapon/defender-rapier.json
index da49494987..dc899cf3c4 100644
--- a/packs/_source/items/weapon/defender-rapier.json
+++ b/packs/_source/items/weapon/defender-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233710,
- "modifiedTime": 1709659528198,
+ "modifiedTime": 1715374618749,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YrkkHa6KN8a9o35k"
diff --git a/packs/_source/items/weapon/defender-scimitar.json b/packs/_source/items/weapon/defender-scimitar.json
index 086952b940..e69d3be4ac 100644
--- a/packs/_source/items/weapon/defender-scimitar.json
+++ b/packs/_source/items/weapon/defender-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233574,
- "modifiedTime": 1709659526633,
+ "modifiedTime": 1715374596400,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Ilyv71AeobM6AvIn"
diff --git a/packs/_source/items/weapon/defender-shortsword.json b/packs/_source/items/weapon/defender-shortsword.json
index aedc1f0f90..6b465bccbf 100644
--- a/packs/_source/items/weapon/defender-shortsword.json
+++ b/packs/_source/items/weapon/defender-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233740,
- "modifiedTime": 1709659528674,
+ "modifiedTime": 1715374624695,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!d58CvI0Fiav9Jjt1"
diff --git a/packs/_source/items/weapon/dragon-slayer-greatsword.json b/packs/_source/items/weapon/dragon-slayer-greatsword.json
index 46be8461a8..47f4ea21d0 100644
--- a/packs/_source/items/weapon/dragon-slayer-greatsword.json
+++ b/packs/_source/items/weapon/dragon-slayer-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233870,
- "modifiedTime": 1709659530456,
+ "modifiedTime": 1715374645010,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!orHjq3XDPz4eXcov"
diff --git a/packs/_source/items/weapon/dragon-slayer-longsword.json b/packs/_source/items/weapon/dragon-slayer-longsword.json
index ae097098a6..973bfbcd59 100644
--- a/packs/_source/items/weapon/dragon-slayer-longsword.json
+++ b/packs/_source/items/weapon/dragon-slayer-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233663,
- "modifiedTime": 1709659527557,
+ "modifiedTime": 1715374609036,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SXjs8JghAPBv7d6j"
diff --git a/packs/_source/items/weapon/dragon-slayer-rapier.json b/packs/_source/items/weapon/dragon-slayer-rapier.json
index 9a6aff1212..0d47fb5c75 100644
--- a/packs/_source/items/weapon/dragon-slayer-rapier.json
+++ b/packs/_source/items/weapon/dragon-slayer-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233660,
- "modifiedTime": 1709659527532,
+ "modifiedTime": 1715374608616,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!S7TrIOlE600KIOUx"
diff --git a/packs/_source/items/weapon/dragon-slayer-scimitar.json b/packs/_source/items/weapon/dragon-slayer-scimitar.json
index 9a6bc6e78a..8008d1f9ce 100644
--- a/packs/_source/items/weapon/dragon-slayer-scimitar.json
+++ b/packs/_source/items/weapon/dragon-slayer-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233799,
- "modifiedTime": 1709659529148,
+ "modifiedTime": 1715374630594,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!feKHv3JUWZdSNKf0"
diff --git a/packs/_source/items/weapon/dragon-slayer-shortsword.json b/packs/_source/items/weapon/dragon-slayer-shortsword.json
index 5f36dc7b4d..8e48ef7505 100644
--- a/packs/_source/items/weapon/dragon-slayer-shortsword.json
+++ b/packs/_source/items/weapon/dragon-slayer-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233625,
- "modifiedTime": 1709659526884,
+ "modifiedTime": 1715374601430,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!MFd96UkSs5g9QO78"
diff --git a/packs/_source/items/weapon/dwarven-thrower.json b/packs/_source/items/weapon/dwarven-thrower.json
index e0a80bafea..38e3866d64 100644
--- a/packs/_source/items/weapon/dwarven-thrower.json
+++ b/packs/_source/items/weapon/dwarven-thrower.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 18000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233841,
- "modifiedTime": 1709659529893,
+ "modifiedTime": 1715374638562,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kvD4ElYCfCKpjDeg"
diff --git a/packs/_source/items/weapon/flail-1.json b/packs/_source/items/weapon/flail-1.json
index 4faf02c90b..ab98a9b4ce 100644
--- a/packs/_source/items/weapon/flail-1.json
+++ b/packs/_source/items/weapon/flail-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233434,
- "modifiedTime": 1709659524660,
+ "modifiedTime": 1715374569823,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!0LVFLPmsu1b2vf8E"
diff --git a/packs/_source/items/weapon/flail-2.json b/packs/_source/items/weapon/flail-2.json
index d12b55042e..70e6553335 100644
--- a/packs/_source/items/weapon/flail-2.json
+++ b/packs/_source/items/weapon/flail-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233973,
- "modifiedTime": 1709659531895,
+ "modifiedTime": 1715374660107,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!z0lIRURcyDYt1kLK"
diff --git a/packs/_source/items/weapon/flail-3.json b/packs/_source/items/weapon/flail-3.json
index 9948b64789..065254772d 100644
--- a/packs/_source/items/weapon/flail-3.json
+++ b/packs/_source/items/weapon/flail-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233959,
- "modifiedTime": 1709659531632,
+ "modifiedTime": 1715374656669,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wgBKZNeRN1XsE9I7"
diff --git a/packs/_source/items/weapon/flail.json b/packs/_source/items/weapon/flail.json
index 35d900caab..857f7e8496 100644
--- a/packs/_source/items/weapon/flail.json
+++ b/packs/_source/items/weapon/flail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -105,15 +108,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -124,10 +121,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233680,
- "modifiedTime": 1709659527806,
+ "modifiedTime": 1715374612619,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UrH3sMdnUDckIHJ6"
diff --git a/packs/_source/items/weapon/flame-tongue-greatsword.json b/packs/_source/items/weapon/flame-tongue-greatsword.json
index 14399bcb79..41fe0d78c2 100644
--- a/packs/_source/items/weapon/flame-tongue-greatsword.json
+++ b/packs/_source/items/weapon/flame-tongue-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233691,
- "modifiedTime": 1709659527993,
+ "modifiedTime": 1715374614818,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WWb4vAmh18sMAxfY"
diff --git a/packs/_source/items/weapon/flame-tongue-longsword.json b/packs/_source/items/weapon/flame-tongue-longsword.json
index 0db5caa6ce..c8f675a0d0 100644
--- a/packs/_source/items/weapon/flame-tongue-longsword.json
+++ b/packs/_source/items/weapon/flame-tongue-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233748,
- "modifiedTime": 1709659528832,
+ "modifiedTime": 1715374626354,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ducaFdrqwLZ0l3c7"
diff --git a/packs/_source/items/weapon/flame-tongue-rapier.json b/packs/_source/items/weapon/flame-tongue-rapier.json
index 44e9decafc..8621c15976 100644
--- a/packs/_source/items/weapon/flame-tongue-rapier.json
+++ b/packs/_source/items/weapon/flame-tongue-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233519,
- "modifiedTime": 1709659525798,
+ "modifiedTime": 1715374586340,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CoUFHk5keIihsbYL"
diff --git a/packs/_source/items/weapon/flame-tongue-scimitar.json b/packs/_source/items/weapon/flame-tongue-scimitar.json
index 829d6afa9d..1191be1b62 100644
--- a/packs/_source/items/weapon/flame-tongue-scimitar.json
+++ b/packs/_source/items/weapon/flame-tongue-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233883,
- "modifiedTime": 1709659530766,
+ "modifiedTime": 1715374647518,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qVHCzgVvOZAtuk4N"
diff --git a/packs/_source/items/weapon/flame-tongue-shortsword.json b/packs/_source/items/weapon/flame-tongue-shortsword.json
index abd0efd8b8..a5cf43e76f 100644
--- a/packs/_source/items/weapon/flame-tongue-shortsword.json
+++ b/packs/_source/items/weapon/flame-tongue-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233713,
- "modifiedTime": 1709659528269,
+ "modifiedTime": 1715374619269,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Z9FBwEoMi6daDGRj"
diff --git a/packs/_source/items/weapon/frost-brand-greatsword.json b/packs/_source/items/weapon/frost-brand-greatsword.json
index 35f8eecd32..870d42887f 100644
--- a/packs/_source/items/weapon/frost-brand-greatsword.json
+++ b/packs/_source/items/weapon/frost-brand-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 2200,
"denomination": "gp"
@@ -113,15 +116,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -132,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233971,
- "modifiedTime": 1709659531839,
+ "modifiedTime": 1715374659615,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ykB6UKv5BuQnSRSL"
diff --git a/packs/_source/items/weapon/frost-brand-longsword.json b/packs/_source/items/weapon/frost-brand-longsword.json
index f6ed3cfef5..540b5a2aaf 100644
--- a/packs/_source/items/weapon/frost-brand-longsword.json
+++ b/packs/_source/items/weapon/frost-brand-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2200,
"denomination": "gp"
@@ -112,15 +115,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -131,10 +128,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233634,
- "modifiedTime": 1709659527008,
+ "modifiedTime": 1715374603584,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NmZMx2u6bHpRyGUa"
diff --git a/packs/_source/items/weapon/frost-brand-rapier.json b/packs/_source/items/weapon/frost-brand-rapier.json
index 3595b40443..569c90a2e1 100644
--- a/packs/_source/items/weapon/frost-brand-rapier.json
+++ b/packs/_source/items/weapon/frost-brand-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2200,
"denomination": "gp"
@@ -112,15 +115,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -131,10 +128,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233788,
- "modifiedTime": 1709659529020,
+ "modifiedTime": 1715374628586,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!efluRemOguW2YeZY"
diff --git a/packs/_source/items/weapon/frost-brand-scimitar.json b/packs/_source/items/weapon/frost-brand-scimitar.json
index 0fc2add2a4..e0d1d88c55 100644
--- a/packs/_source/items/weapon/frost-brand-scimitar.json
+++ b/packs/_source/items/weapon/frost-brand-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2200,
"denomination": "gp"
@@ -113,15 +116,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -132,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233432,
- "modifiedTime": 1709659524570,
+ "modifiedTime": 1715374569398,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!07R6JFioylOCpVoL"
diff --git a/packs/_source/items/weapon/frost-brand-shortsword.json b/packs/_source/items/weapon/frost-brand-shortsword.json
index 5f7d534498..d5bfd81200 100644
--- a/packs/_source/items/weapon/frost-brand-shortsword.json
+++ b/packs/_source/items/weapon/frost-brand-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2200,
"denomination": "gp"
@@ -113,15 +116,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -132,10 +129,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233524,
- "modifiedTime": 1709659525849,
+ "modifiedTime": 1715374587332,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DT02xK1DzxLNlVaI"
diff --git a/packs/_source/items/weapon/giant-slayer-battleaxe.json b/packs/_source/items/weapon/giant-slayer-battleaxe.json
index 86b1414240..87be1d7d61 100644
--- a/packs/_source/items/weapon/giant-slayer-battleaxe.json
+++ b/packs/_source/items/weapon/giant-slayer-battleaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233706,
- "modifiedTime": 1709659528149,
+ "modifiedTime": 1715374618128,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YM6bZNmpync83VFa"
diff --git a/packs/_source/items/weapon/giant-slayer-greataxe.json b/packs/_source/items/weapon/giant-slayer-greataxe.json
index 964c7e0109..17051d31aa 100644
--- a/packs/_source/items/weapon/giant-slayer-greataxe.json
+++ b/packs/_source/items/weapon/giant-slayer-greataxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233833,
- "modifiedTime": 1709659529737,
+ "modifiedTime": 1715374636947,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jmSC8I5awCoxNVv7"
diff --git a/packs/_source/items/weapon/giant-slayer-greatsword.json b/packs/_source/items/weapon/giant-slayer-greatsword.json
index b3d125db3f..74f5550bf0 100644
--- a/packs/_source/items/weapon/giant-slayer-greatsword.json
+++ b/packs/_source/items/weapon/giant-slayer-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233859,
- "modifiedTime": 1709659530198,
+ "modifiedTime": 1715374642556,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nBFr5xTWeChM7xrb"
diff --git a/packs/_source/items/weapon/giant-slayer-handaxe.json b/packs/_source/items/weapon/giant-slayer-handaxe.json
index d378f92c37..1a5130e3b1 100644
--- a/packs/_source/items/weapon/giant-slayer-handaxe.json
+++ b/packs/_source/items/weapon/giant-slayer-handaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233540,
- "modifiedTime": 1709659526073,
+ "modifiedTime": 1715374590070,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!F3rQcaZvElNEiudk"
diff --git a/packs/_source/items/weapon/giant-slayer-longsword.json b/packs/_source/items/weapon/giant-slayer-longsword.json
index 7545cf2c66..4b7132bec9 100644
--- a/packs/_source/items/weapon/giant-slayer-longsword.json
+++ b/packs/_source/items/weapon/giant-slayer-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233968,
- "modifiedTime": 1709659531791,
+ "modifiedTime": 1715374658776,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xw2kL7Puwg4wfjW3"
diff --git a/packs/_source/items/weapon/giant-slayer-rapier.json b/packs/_source/items/weapon/giant-slayer-rapier.json
index 700be68221..1f3fcfe04f 100644
--- a/packs/_source/items/weapon/giant-slayer-rapier.json
+++ b/packs/_source/items/weapon/giant-slayer-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233569,
- "modifiedTime": 1709659526559,
+ "modifiedTime": 1715374595499,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!I5PWgE4IF40Iv9h4"
diff --git a/packs/_source/items/weapon/giant-slayer-scimitar.json b/packs/_source/items/weapon/giant-slayer-scimitar.json
index 7c17ef1b19..4d7147ffc1 100644
--- a/packs/_source/items/weapon/giant-slayer-scimitar.json
+++ b/packs/_source/items/weapon/giant-slayer-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233714,
- "modifiedTime": 1709659528319,
+ "modifiedTime": 1715374619507,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZLpj1bpnWlAFUEHE"
diff --git a/packs/_source/items/weapon/giant-slayer-shortsword.json b/packs/_source/items/weapon/giant-slayer-shortsword.json
index 4f7cd25648..dbaa6a6363 100644
--- a/packs/_source/items/weapon/giant-slayer-shortsword.json
+++ b/packs/_source/items/weapon/giant-slayer-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233912,
- "modifiedTime": 1709659531326,
+ "modifiedTime": 1715374652707,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tTqixDDmzAfs995G"
diff --git a/packs/_source/items/weapon/glaive-1.json b/packs/_source/items/weapon/glaive-1.json
index ab515c90dd..4c665fca9c 100644
--- a/packs/_source/items/weapon/glaive-1.json
+++ b/packs/_source/items/weapon/glaive-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233432,
- "modifiedTime": 1709659524608,
+ "modifiedTime": 1715374569506,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!09i8r1UmzDSKiZ9g"
diff --git a/packs/_source/items/weapon/glaive-2.json b/packs/_source/items/weapon/glaive-2.json
index 4a80cdd1f6..b3a451a6c2 100644
--- a/packs/_source/items/weapon/glaive-2.json
+++ b/packs/_source/items/weapon/glaive-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233628,
- "modifiedTime": 1709659526960,
+ "modifiedTime": 1715374602332,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Mt2WB1W9nDWO4d16"
diff --git a/packs/_source/items/weapon/glaive-3.json b/packs/_source/items/weapon/glaive-3.json
index 4384c37c70..2184101bf4 100644
--- a/packs/_source/items/weapon/glaive-3.json
+++ b/packs/_source/items/weapon/glaive-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233893,
- "modifiedTime": 1709659531012,
+ "modifiedTime": 1715374649577,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rc9nkN6YOD7ogtEi"
diff --git a/packs/_source/items/weapon/glaive.json b/packs/_source/items/weapon/glaive.json
index 9263ab2027..398abab71b 100644
--- a/packs/_source/items/weapon/glaive.json
+++ b/packs/_source/items/weapon/glaive.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 20,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233889,
- "modifiedTime": 1709659530987,
+ "modifiedTime": 1715374648921,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rOG1OM2ihgPjOvFW"
diff --git a/packs/_source/items/weapon/greataxe-1.json b/packs/_source/items/weapon/greataxe-1.json
index 05813a16f5..e0386e38ef 100644
--- a/packs/_source/items/weapon/greataxe-1.json
+++ b/packs/_source/items/weapon/greataxe-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233886,
- "modifiedTime": 1709659530851,
+ "modifiedTime": 1715374648152,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qhdGVfT5j6u46mtk"
diff --git a/packs/_source/items/weapon/greataxe-2.json b/packs/_source/items/weapon/greataxe-2.json
index ee4d5c8d86..b9689b86fd 100644
--- a/packs/_source/items/weapon/greataxe-2.json
+++ b/packs/_source/items/weapon/greataxe-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233815,
- "modifiedTime": 1709659529478,
+ "modifiedTime": 1715374633596,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hdUzXzVPonOQzW81"
diff --git a/packs/_source/items/weapon/greataxe-3.json b/packs/_source/items/weapon/greataxe-3.json
index 66a0a4b813..94fc819223 100644
--- a/packs/_source/items/weapon/greataxe-3.json
+++ b/packs/_source/items/weapon/greataxe-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233642,
- "modifiedTime": 1709659527201,
+ "modifiedTime": 1715374605367,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PAa2EG5kzmqxcp46"
diff --git a/packs/_source/items/weapon/greataxe.json b/packs/_source/items/weapon/greataxe.json
index 359e45b5f0..ef8077e290 100644
--- a/packs/_source/items/weapon/greataxe.json
+++ b/packs/_source/items/weapon/greataxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 30,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233440,
- "modifiedTime": 1709659524711,
+ "modifiedTime": 1715374571160,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!1Lxk6kmoRhG8qQ0u"
diff --git a/packs/_source/items/weapon/greatclub-1.json b/packs/_source/items/weapon/greatclub-1.json
index 2a2b4a87be..523e27f691 100644
--- a/packs/_source/items/weapon/greatclub-1.json
+++ b/packs/_source/items/weapon/greatclub-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233750,
- "modifiedTime": 1709659528880,
+ "modifiedTime": 1715374626574,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dwGxrGqkn2ppNaqs"
diff --git a/packs/_source/items/weapon/greatclub-2.json b/packs/_source/items/weapon/greatclub-2.json
index e3aabeeff0..1791f1634e 100644
--- a/packs/_source/items/weapon/greatclub-2.json
+++ b/packs/_source/items/weapon/greatclub-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233640,
- "modifiedTime": 1709659527142,
+ "modifiedTime": 1715374604751,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Or3kVfJ0Fbr33ARS"
diff --git a/packs/_source/items/weapon/greatclub-3.json b/packs/_source/items/weapon/greatclub-3.json
index f736e84fd1..f16348748a 100644
--- a/packs/_source/items/weapon/greatclub-3.json
+++ b/packs/_source/items/weapon/greatclub-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233855,
- "modifiedTime": 1709659530174,
+ "modifiedTime": 1715374641916,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mkyltDYnuzNU3kmF"
diff --git a/packs/_source/items/weapon/greatclub.json b/packs/_source/items/weapon/greatclub.json
index 5da523573e..002fc025be 100644
--- a/packs/_source/items/weapon/greatclub.json
+++ b/packs/_source/items/weapon/greatclub.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233650,
- "modifiedTime": 1709659527349,
+ "modifiedTime": 1715374606883,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QRCsxkCwWNwswL9o"
diff --git a/packs/_source/items/weapon/greatsword-1.json b/packs/_source/items/weapon/greatsword-1.json
index 75cb68534c..4cd0e0193f 100644
--- a/packs/_source/items/weapon/greatsword-1.json
+++ b/packs/_source/items/weapon/greatsword-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233835,
- "modifiedTime": 1709659529765,
+ "modifiedTime": 1715374637374,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kBVK2IiZYRkEYtcM"
diff --git a/packs/_source/items/weapon/greatsword-2.json b/packs/_source/items/weapon/greatsword-2.json
index e6d086b173..3301398d1e 100644
--- a/packs/_source/items/weapon/greatsword-2.json
+++ b/packs/_source/items/weapon/greatsword-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233488,
- "modifiedTime": 1709659525372,
+ "modifiedTime": 1715374580661,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8LZBOY5USLZ4ngDq"
diff --git a/packs/_source/items/weapon/greatsword-3.json b/packs/_source/items/weapon/greatsword-3.json
index 3681c51f7b..0bb7f81d4c 100644
--- a/packs/_source/items/weapon/greatsword-3.json
+++ b/packs/_source/items/weapon/greatsword-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233656,
- "modifiedTime": 1709659527429,
+ "modifiedTime": 1715374607956,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!RfEZvwcLwe6Ih0LQ"
diff --git a/packs/_source/items/weapon/greatsword-of-life-stealing.json b/packs/_source/items/weapon/greatsword-of-life-stealing.json
index 7537c11088..409553b305 100644
--- a/packs/_source/items/weapon/greatsword-of-life-stealing.json
+++ b/packs/_source/items/weapon/greatsword-of-life-stealing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233898,
- "modifiedTime": 1709659531065,
+ "modifiedTime": 1715374650636,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sdHSbitJxgTX6aDG"
diff --git a/packs/_source/items/weapon/greatsword-of-sharpness.json b/packs/_source/items/weapon/greatsword-of-sharpness.json
index 7e038820d4..9038bb1d47 100644
--- a/packs/_source/items/weapon/greatsword-of-sharpness.json
+++ b/packs/_source/items/weapon/greatsword-of-sharpness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 1700,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233648,
- "modifiedTime": 1709659527274,
+ "modifiedTime": 1715374606530,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QB4CFMTLR6JlD7Kq"
diff --git a/packs/_source/items/weapon/greatsword-of-wounding.json b/packs/_source/items/weapon/greatsword-of-wounding.json
index 0453ec6e0d..984def08f2 100644
--- a/packs/_source/items/weapon/greatsword-of-wounding.json
+++ b/packs/_source/items/weapon/greatsword-of-wounding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233580,
- "modifiedTime": 1709659526658,
+ "modifiedTime": 1715374597619,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JpwuGtFkfrGibQpP"
diff --git a/packs/_source/items/weapon/greatsword.json b/packs/_source/items/weapon/greatsword.json
index e8847eb3dc..dcc314b12f 100644
--- a/packs/_source/items/weapon/greatsword.json
+++ b/packs/_source/items/weapon/greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233965,
- "modifiedTime": 1709659531763,
+ "modifiedTime": 1715374658129,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xMkP8BmFzElcsMaR"
diff --git a/packs/_source/items/weapon/halberd-1.json b/packs/_source/items/weapon/halberd-1.json
index bfe1e4c6f4..7f4637e2ce 100644
--- a/packs/_source/items/weapon/halberd-1.json
+++ b/packs/_source/items/weapon/halberd-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233864,
- "modifiedTime": 1709659530330,
+ "modifiedTime": 1715374643534,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nl7cc7Z1HpSHbUdQ"
diff --git a/packs/_source/items/weapon/halberd-2.json b/packs/_source/items/weapon/halberd-2.json
index 8be22fae84..3a4dcae1de 100644
--- a/packs/_source/items/weapon/halberd-2.json
+++ b/packs/_source/items/weapon/halberd-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233479,
- "modifiedTime": 1709659525264,
+ "modifiedTime": 1715374578722,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6ndqUhOySYVVQ5on"
diff --git a/packs/_source/items/weapon/halberd-3.json b/packs/_source/items/weapon/halberd-3.json
index c60a79ff9e..8a178e5dc1 100644
--- a/packs/_source/items/weapon/halberd-3.json
+++ b/packs/_source/items/weapon/halberd-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233536,
- "modifiedTime": 1709659525949,
+ "modifiedTime": 1715374589333,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!EU78dSbnr91QWZ7g"
diff --git a/packs/_source/items/weapon/halberd.json b/packs/_source/items/weapon/halberd.json
index 08e3cca2cc..6411c7d8d0 100644
--- a/packs/_source/items/weapon/halberd.json
+++ b/packs/_source/items/weapon/halberd.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 20,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233522,
- "modifiedTime": 1709659525824,
+ "modifiedTime": 1715374586935,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DMejWAc8r8YvDPP1"
diff --git a/packs/_source/items/weapon/hammer-of-thunderbolts.json b/packs/_source/items/weapon/hammer-of-thunderbolts.json
index db597c6a53..9059d36615 100644
--- a/packs/_source/items/weapon/hammer-of-thunderbolts.json
+++ b/packs/_source/items/weapon/hammer-of-thunderbolts.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233956,
- "modifiedTime": 1709659531585,
+ "modifiedTime": 1715374656141,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wGDDt17DpBcXPuUD"
diff --git a/packs/_source/items/weapon/hand-crossbow-1.json b/packs/_source/items/weapon/hand-crossbow-1.json
index 19ea45f329..0ee0c99a20 100644
--- a/packs/_source/items/weapon/hand-crossbow-1.json
+++ b/packs/_source/items/weapon/hand-crossbow-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233628,
- "modifiedTime": 1709659526933,
+ "modifiedTime": 1715374602204,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!MnX9soPEMNsCtpv7"
diff --git a/packs/_source/items/weapon/hand-crossbow-2.json b/packs/_source/items/weapon/hand-crossbow-2.json
index ccbd1b28ec..bdb812c7a1 100644
--- a/packs/_source/items/weapon/hand-crossbow-2.json
+++ b/packs/_source/items/weapon/hand-crossbow-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233453,
- "modifiedTime": 1709659524941,
+ "modifiedTime": 1715374573781,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3Q6rw9kAMf6F1SW5"
diff --git a/packs/_source/items/weapon/hand-crossbow-3.json b/packs/_source/items/weapon/hand-crossbow-3.json
index 26214260f9..29e0a8b741 100644
--- a/packs/_source/items/weapon/hand-crossbow-3.json
+++ b/packs/_source/items/weapon/hand-crossbow-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233867,
- "modifiedTime": 1709659530425,
+ "modifiedTime": 1715374644168,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!oG4rvCuMstgl4Nez"
diff --git a/packs/_source/items/weapon/hand-crossbow.json b/packs/_source/items/weapon/hand-crossbow.json
index 4a78c0cfd0..5481c497fb 100644
--- a/packs/_source/items/weapon/hand-crossbow.json
+++ b/packs/_source/items/weapon/hand-crossbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 75,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233885,
- "modifiedTime": 1709659530791,
+ "modifiedTime": 1715374647935,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qaSro7kFhxD6INbZ"
diff --git a/packs/_source/items/weapon/handaxe-1.json b/packs/_source/items/weapon/handaxe-1.json
index 3494fc64fe..ec8b20c7cc 100644
--- a/packs/_source/items/weapon/handaxe-1.json
+++ b/packs/_source/items/weapon/handaxe-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233652,
- "modifiedTime": 1709659527381,
+ "modifiedTime": 1715374607199,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Qfi5Rsuun3reqYmf"
diff --git a/packs/_source/items/weapon/handaxe-2.json b/packs/_source/items/weapon/handaxe-2.json
index 6d8e3899f8..5f3e760f0e 100644
--- a/packs/_source/items/weapon/handaxe-2.json
+++ b/packs/_source/items/weapon/handaxe-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233619,
- "modifiedTime": 1709659526835,
+ "modifiedTime": 1715374600131,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LZcpcR21nte4Yoe2"
diff --git a/packs/_source/items/weapon/handaxe-3.json b/packs/_source/items/weapon/handaxe-3.json
index 6692644532..c9db6d267c 100644
--- a/packs/_source/items/weapon/handaxe-3.json
+++ b/packs/_source/items/weapon/handaxe-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233739,
- "modifiedTime": 1709659528650,
+ "modifiedTime": 1715374624481,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!cmnBssaWWzWWm70C"
diff --git a/packs/_source/items/weapon/handaxe.json b/packs/_source/items/weapon/handaxe.json
index f8120db758..1ba0105ee9 100644
--- a/packs/_source/items/weapon/handaxe.json
+++ b/packs/_source/items/weapon/handaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233784,
- "modifiedTime": 1709659528989,
+ "modifiedTime": 1715374627777,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eO7Fbv5WBk5zvGOc"
diff --git a/packs/_source/items/weapon/heavy-crossbow-1.json b/packs/_source/items/weapon/heavy-crossbow-1.json
index 001ccc0618..d230d14bfe 100644
--- a/packs/_source/items/weapon/heavy-crossbow-1.json
+++ b/packs/_source/items/weapon/heavy-crossbow-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -112,14 +115,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -130,10 +127,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233825,
- "modifiedTime": 1709659529577,
+ "modifiedTime": 1715374635478,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ijDzcDXfJAdj2uED"
diff --git a/packs/_source/items/weapon/heavy-crossbow-2.json b/packs/_source/items/weapon/heavy-crossbow-2.json
index aaefe4a08e..5caf24bbe8 100644
--- a/packs/_source/items/weapon/heavy-crossbow-2.json
+++ b/packs/_source/items/weapon/heavy-crossbow-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -112,14 +115,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -130,10 +127,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233495,
- "modifiedTime": 1709659525473,
+ "modifiedTime": 1715374581865,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8wXB18E0oPAYFkqc"
diff --git a/packs/_source/items/weapon/heavy-crossbow-3.json b/packs/_source/items/weapon/heavy-crossbow-3.json
index dc3c170ccf..a3cf831283 100644
--- a/packs/_source/items/weapon/heavy-crossbow-3.json
+++ b/packs/_source/items/weapon/heavy-crossbow-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -112,14 +115,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -130,10 +127,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233664,
- "modifiedTime": 1709659527591,
+ "modifiedTime": 1715374609256,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Sj4zEvuGcSV6anKm"
diff --git a/packs/_source/items/weapon/heavy-crossbow.json b/packs/_source/items/weapon/heavy-crossbow.json
index 94696736ba..34486191b9 100644
--- a/packs/_source/items/weapon/heavy-crossbow.json
+++ b/packs/_source/items/weapon/heavy-crossbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233658,
- "modifiedTime": 1709659527453,
+ "modifiedTime": 1715374608192,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!RmP0mYRn2J7K26rX"
diff --git a/packs/_source/items/weapon/holy-avenger-greatsword.json b/packs/_source/items/weapon/holy-avenger-greatsword.json
index 5e79c2e9e5..049b549701 100644
--- a/packs/_source/items/weapon/holy-avenger-greatsword.json
+++ b/packs/_source/items/weapon/holy-avenger-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 165000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233543,
- "modifiedTime": 1709659526152,
+ "modifiedTime": 1715374590593,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FCxG64QUxsnF4Lis"
diff --git a/packs/_source/items/weapon/holy-avenger-longsword.json b/packs/_source/items/weapon/holy-avenger-longsword.json
index f23159782d..75abe8f376 100644
--- a/packs/_source/items/weapon/holy-avenger-longsword.json
+++ b/packs/_source/items/weapon/holy-avenger-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 165000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233746,
- "modifiedTime": 1709659528754,
+ "modifiedTime": 1715374625918,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dZ9zWfhsIlabadKL"
diff --git a/packs/_source/items/weapon/holy-avenger-rapier.json b/packs/_source/items/weapon/holy-avenger-rapier.json
index 79b0956309..391ced9a8f 100644
--- a/packs/_source/items/weapon/holy-avenger-rapier.json
+++ b/packs/_source/items/weapon/holy-avenger-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 165000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233838,
- "modifiedTime": 1709659529868,
+ "modifiedTime": 1715374637923,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kTxi62RTrrdrIBr9"
diff --git a/packs/_source/items/weapon/holy-avenger-scimitar.json b/packs/_source/items/weapon/holy-avenger-scimitar.json
index 0da0da6816..82f346b288 100644
--- a/packs/_source/items/weapon/holy-avenger-scimitar.json
+++ b/packs/_source/items/weapon/holy-avenger-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 165000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233677,
- "modifiedTime": 1709659527723,
+ "modifiedTime": 1715374611766,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ULL5nkyN3WzazI4l"
diff --git a/packs/_source/items/weapon/holy-avenger-shortsword.json b/packs/_source/items/weapon/holy-avenger-shortsword.json
index 09a636388d..16c7012d2e 100644
--- a/packs/_source/items/weapon/holy-avenger-shortsword.json
+++ b/packs/_source/items/weapon/holy-avenger-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 165000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233730,
- "modifiedTime": 1709659528493,
+ "modifiedTime": 1715374622797,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bHbbIhbTzu4lYMRz"
diff --git a/packs/_source/items/weapon/javelin-1.json b/packs/_source/items/weapon/javelin-1.json
index 81442bbf7b..9a561b3f61 100644
--- a/packs/_source/items/weapon/javelin-1.json
+++ b/packs/_source/items/weapon/javelin-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233823,
- "modifiedTime": 1709659529553,
+ "modifiedTime": 1715374635160,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!idtlcnIWgwVdvp31"
diff --git a/packs/_source/items/weapon/javelin-2.json b/packs/_source/items/weapon/javelin-2.json
index c015489172..eb06c042e2 100644
--- a/packs/_source/items/weapon/javelin-2.json
+++ b/packs/_source/items/weapon/javelin-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233805,
- "modifiedTime": 1709659529271,
+ "modifiedTime": 1715374631755,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gV671PZGnYoVZefN"
diff --git a/packs/_source/items/weapon/javelin-3.json b/packs/_source/items/weapon/javelin-3.json
index e72c8cec1c..bd62b85e86 100644
--- a/packs/_source/items/weapon/javelin-3.json
+++ b/packs/_source/items/weapon/javelin-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233550,
- "modifiedTime": 1709659526257,
+ "modifiedTime": 1715374591541,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FhtjbeBeP4q5vTyc"
diff --git a/packs/_source/items/weapon/javelin-of-lightning.json b/packs/_source/items/weapon/javelin-of-lightning.json
index a771657f45..bed7c9e8a4 100644
--- a/packs/_source/items/weapon/javelin-of-lightning.json
+++ b/packs/_source/items/weapon/javelin-of-lightning.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1500,
"denomination": "gp"
@@ -112,15 +115,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -131,10 +128,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233617,
- "modifiedTime": 1709659526810,
+ "modifiedTime": 1715374599816,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LEC1wkaAUnWzDPDD"
diff --git a/packs/_source/items/weapon/javelin.json b/packs/_source/items/weapon/javelin.json
index c241167b7b..4e320fa6ab 100644
--- a/packs/_source/items/weapon/javelin.json
+++ b/packs/_source/items/weapon/javelin.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "sp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233527,
- "modifiedTime": 1709659525874,
+ "modifiedTime": 1715374587517,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DWLMnODrnHn8IbAG"
diff --git a/packs/_source/items/weapon/lance-1.json b/packs/_source/items/weapon/lance-1.json
index f16f925c36..62f10c77d5 100644
--- a/packs/_source/items/weapon/lance-1.json
+++ b/packs/_source/items/weapon/lance-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233843,
- "modifiedTime": 1709659529970,
+ "modifiedTime": 1715374639109,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!l88FXiodYofrJT8a"
diff --git a/packs/_source/items/weapon/lance-2.json b/packs/_source/items/weapon/lance-2.json
index f3744efc2e..0a7016a5d7 100644
--- a/packs/_source/items/weapon/lance-2.json
+++ b/packs/_source/items/weapon/lance-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233518,
- "modifiedTime": 1709659525773,
+ "modifiedTime": 1715374586145,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CVMGOJWTO6TCybrH"
diff --git a/packs/_source/items/weapon/lance-3.json b/packs/_source/items/weapon/lance-3.json
index e6bcad0009..2505b9820a 100644
--- a/packs/_source/items/weapon/lance-3.json
+++ b/packs/_source/items/weapon/lance-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233888,
- "modifiedTime": 1709659530932,
+ "modifiedTime": 1715374648582,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!r97KnMO7Zxgfdh3P"
diff --git a/packs/_source/items/weapon/lance.json b/packs/_source/items/weapon/lance.json
index 91c9579957..233154df45 100644
--- a/packs/_source/items/weapon/lance.json
+++ b/packs/_source/items/weapon/lance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233659,
- "modifiedTime": 1709659527484,
+ "modifiedTime": 1715374608412,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!RnuxdHUAIgxccVwj"
diff --git a/packs/_source/items/weapon/light-crossbow-1.json b/packs/_source/items/weapon/light-crossbow-1.json
index 149d5b2711..6c7c9be168 100644
--- a/packs/_source/items/weapon/light-crossbow-1.json
+++ b/packs/_source/items/weapon/light-crossbow-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233835,
- "modifiedTime": 1709659529789,
+ "modifiedTime": 1715374637484,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!kHjpHTKex95ULxUX"
diff --git a/packs/_source/items/weapon/light-crossbow-2.json b/packs/_source/items/weapon/light-crossbow-2.json
index f59a32efef..4ed7237c52 100644
--- a/packs/_source/items/weapon/light-crossbow-2.json
+++ b/packs/_source/items/weapon/light-crossbow-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233961,
- "modifiedTime": 1709659531689,
+ "modifiedTime": 1715374657391,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!x12sDhylcf8843fT"
diff --git a/packs/_source/items/weapon/light-crossbow-3.json b/packs/_source/items/weapon/light-crossbow-3.json
index 0e8bdc5973..9bebf2432b 100644
--- a/packs/_source/items/weapon/light-crossbow-3.json
+++ b/packs/_source/items/weapon/light-crossbow-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233725,
- "modifiedTime": 1709659528393,
+ "modifiedTime": 1715374621859,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!amRx3jOYlPeXEiAN"
diff --git a/packs/_source/items/weapon/light-crossbow.json b/packs/_source/items/weapon/light-crossbow.json
index 8b47c0c88b..16b3e76edb 100644
--- a/packs/_source/items/weapon/light-crossbow.json
+++ b/packs/_source/items/weapon/light-crossbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233747,
- "modifiedTime": 1709659528777,
+ "modifiedTime": 1715374626021,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ddWvQRLmnnIS0eLF"
diff --git a/packs/_source/items/weapon/light-hammer-1.json b/packs/_source/items/weapon/light-hammer-1.json
index 475f6245f5..0189bea726 100644
--- a/packs/_source/items/weapon/light-hammer-1.json
+++ b/packs/_source/items/weapon/light-hammer-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233877,
- "modifiedTime": 1709659530654,
+ "modifiedTime": 1715374646422,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!q24QnImAicnT9Byd"
diff --git a/packs/_source/items/weapon/light-hammer-2.json b/packs/_source/items/weapon/light-hammer-2.json
index cb8031d277..c9de46d3de 100644
--- a/packs/_source/items/weapon/light-hammer-2.json
+++ b/packs/_source/items/weapon/light-hammer-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233698,
- "modifiedTime": 1709659528068,
+ "modifiedTime": 1715374616216,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XIpJkxbySJxm6hoU"
diff --git a/packs/_source/items/weapon/light-hammer-3.json b/packs/_source/items/weapon/light-hammer-3.json
index ddff0de930..96e8350b60 100644
--- a/packs/_source/items/weapon/light-hammer-3.json
+++ b/packs/_source/items/weapon/light-hammer-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233704,
- "modifiedTime": 1709659528123,
+ "modifiedTime": 1715374617506,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Y08Al2dMN8he1hFK"
diff --git a/packs/_source/items/weapon/light-hammer.json b/packs/_source/items/weapon/light-hammer.json
index 820f4809e3..f650ffb212 100644
--- a/packs/_source/items/weapon/light-hammer.json
+++ b/packs/_source/items/weapon/light-hammer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233700,
- "modifiedTime": 1709659528098,
+ "modifiedTime": 1715374616615,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!XVK6TOL4sGItssAE"
diff --git a/packs/_source/items/weapon/longbow-1.json b/packs/_source/items/weapon/longbow-1.json
index 6cbe6b34fc..973d437870 100644
--- a/packs/_source/items/weapon/longbow-1.json
+++ b/packs/_source/items/weapon/longbow-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233505,
- "modifiedTime": 1709659525581,
+ "modifiedTime": 1715374583684,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!A2i08i8gAFscm6hZ"
diff --git a/packs/_source/items/weapon/longbow-2.json b/packs/_source/items/weapon/longbow-2.json
index c6ef585c8d..9a1abd81b4 100644
--- a/packs/_source/items/weapon/longbow-2.json
+++ b/packs/_source/items/weapon/longbow-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233716,
- "modifiedTime": 1709659528343,
+ "modifiedTime": 1715374619712,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZcvU9rRb573NOywv"
diff --git a/packs/_source/items/weapon/longbow-3.json b/packs/_source/items/weapon/longbow-3.json
index e6c15894e1..a487d192b4 100644
--- a/packs/_source/items/weapon/longbow-3.json
+++ b/packs/_source/items/weapon/longbow-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233493,
- "modifiedTime": 1709659525449,
+ "modifiedTime": 1715374581352,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8W6ULfSqzuHh6Peg"
diff --git a/packs/_source/items/weapon/longbow.json b/packs/_source/items/weapon/longbow.json
index 4ff47b01e6..11fbb2c4ca 100644
--- a/packs/_source/items/weapon/longbow.json
+++ b/packs/_source/items/weapon/longbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 50,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233458,
- "modifiedTime": 1709659524992,
+ "modifiedTime": 1715374574519,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3cymOVja8jXbzrdT"
diff --git a/packs/_source/items/weapon/longsword-1.json b/packs/_source/items/weapon/longsword-1.json
index 27342a4617..6b459a9b77 100644
--- a/packs/_source/items/weapon/longsword-1.json
+++ b/packs/_source/items/weapon/longsword-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233572,
- "modifiedTime": 1709659526608,
+ "modifiedTime": 1715374595999,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!IPkf0XNowClwXnjQ"
diff --git a/packs/_source/items/weapon/longsword-2.json b/packs/_source/items/weapon/longsword-2.json
index f5e0d8f8c0..b6b2099377 100644
--- a/packs/_source/items/weapon/longsword-2.json
+++ b/packs/_source/items/weapon/longsword-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233732,
- "modifiedTime": 1709659528546,
+ "modifiedTime": 1715374623224,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bcv7J9culilK68zp"
diff --git a/packs/_source/items/weapon/longsword-3.json b/packs/_source/items/weapon/longsword-3.json
index 184c2fc38d..568b5c949c 100644
--- a/packs/_source/items/weapon/longsword-3.json
+++ b/packs/_source/items/weapon/longsword-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233559,
- "modifiedTime": 1709659526382,
+ "modifiedTime": 1715374593494,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!H6SIiRIig7OMM2Z0"
diff --git a/packs/_source/items/weapon/longsword-of-life-stealing.json b/packs/_source/items/weapon/longsword-of-life-stealing.json
index 8c9a4a58d0..5692cc9e9d 100644
--- a/packs/_source/items/weapon/longsword-of-life-stealing.json
+++ b/packs/_source/items/weapon/longsword-of-life-stealing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233960,
- "modifiedTime": 1709659531664,
+ "modifiedTime": 1715374657175,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!wtctR6tCcYbQPiS0"
diff --git a/packs/_source/items/weapon/longsword-of-sharpness.json b/packs/_source/items/weapon/longsword-of-sharpness.json
index 3d0242ef9d..54cb814deb 100644
--- a/packs/_source/items/weapon/longsword-of-sharpness.json
+++ b/packs/_source/items/weapon/longsword-of-sharpness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1700,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233489,
- "modifiedTime": 1709659525396,
+ "modifiedTime": 1715374580757,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8MNDhKb1Q87QszOJ"
diff --git a/packs/_source/items/weapon/longsword-of-wounding.json b/packs/_source/items/weapon/longsword-of-wounding.json
index 9ddee797bc..37b63679f3 100644
--- a/packs/_source/items/weapon/longsword-of-wounding.json
+++ b/packs/_source/items/weapon/longsword-of-wounding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233875,
- "modifiedTime": 1709659530624,
+ "modifiedTime": 1715374646094,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!pG6dddIcb9NmPrdt"
diff --git a/packs/_source/items/weapon/longsword.json b/packs/_source/items/weapon/longsword.json
index aa7bfa0d6d..3f7d1a376a 100644
--- a/packs/_source/items/weapon/longsword.json
+++ b/packs/_source/items/weapon/longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 15,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233436,
- "modifiedTime": 1709659524686,
+ "modifiedTime": 1715374570344,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!10ZP2Bu3vnCuYMIB"
diff --git a/packs/_source/items/weapon/luck-blade-greatsword.json b/packs/_source/items/weapon/luck-blade-greatsword.json
index beef8bbe9d..dac280c383 100644
--- a/packs/_source/items/weapon/luck-blade-greatsword.json
+++ b/packs/_source/items/weapon/luck-blade-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 210000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233798,
- "modifiedTime": 1709659529093,
+ "modifiedTime": 1715374630269,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fWR9EFEjR0JtFdCC"
diff --git a/packs/_source/items/weapon/luck-blade-longsword.json b/packs/_source/items/weapon/luck-blade-longsword.json
index 9a713d683a..4e708922dc 100644
--- a/packs/_source/items/weapon/luck-blade-longsword.json
+++ b/packs/_source/items/weapon/luck-blade-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 210000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233697,
- "modifiedTime": 1709659528042,
+ "modifiedTime": 1715374615775,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!X6PHssSGnwiJRgcx"
diff --git a/packs/_source/items/weapon/luck-blade-rapier.json b/packs/_source/items/weapon/luck-blade-rapier.json
index 3ab774b99a..d6001ab5a8 100644
--- a/packs/_source/items/weapon/luck-blade-rapier.json
+++ b/packs/_source/items/weapon/luck-blade-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 210000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233879,
- "modifiedTime": 1709659530706,
+ "modifiedTime": 1715374646924,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qGH7YqWhi0tHisMi"
diff --git a/packs/_source/items/weapon/luck-blade-scimitar.json b/packs/_source/items/weapon/luck-blade-scimitar.json
index 9a6fdfda43..b6b508b061 100644
--- a/packs/_source/items/weapon/luck-blade-scimitar.json
+++ b/packs/_source/items/weapon/luck-blade-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 210000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233532,
- "modifiedTime": 1709659525924,
+ "modifiedTime": 1715374588614,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!E7c4zpWdYgkKDHGo"
diff --git a/packs/_source/items/weapon/luck-blade-shortsword.json b/packs/_source/items/weapon/luck-blade-shortsword.json
index 92db010c9c..23fee38149 100644
--- a/packs/_source/items/weapon/luck-blade-shortsword.json
+++ b/packs/_source/items/weapon/luck-blade-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 210000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233859,
- "modifiedTime": 1709659530223,
+ "modifiedTime": 1715374642657,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nL0Y0X8SjF58OmBM"
diff --git a/packs/_source/items/weapon/mace-1.json b/packs/_source/items/weapon/mace-1.json
index a04af7224b..098718b149 100644
--- a/packs/_source/items/weapon/mace-1.json
+++ b/packs/_source/items/weapon/mace-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233831,
- "modifiedTime": 1709659529707,
+ "modifiedTime": 1715374636624,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jf0XMx2vfEZzZuD7"
diff --git a/packs/_source/items/weapon/mace-2.json b/packs/_source/items/weapon/mace-2.json
index 9ec975a320..634965bcc2 100644
--- a/packs/_source/items/weapon/mace-2.json
+++ b/packs/_source/items/weapon/mace-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233851,
- "modifiedTime": 1709659530091,
+ "modifiedTime": 1715374640934,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!m1hJnK7CHsaJB26v"
diff --git a/packs/_source/items/weapon/mace-3.json b/packs/_source/items/weapon/mace-3.json
index 1711f27c72..9c873e23ca 100644
--- a/packs/_source/items/weapon/mace-3.json
+++ b/packs/_source/items/weapon/mace-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233445,
- "modifiedTime": 1709659524798,
+ "modifiedTime": 1715374572246,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2CQnAvn06bncXPBt"
diff --git a/packs/_source/items/weapon/mace-of-disruption.json b/packs/_source/items/weapon/mace-of-disruption.json
index 8c226e8dd1..8fdc0fad1d 100644
--- a/packs/_source/items/weapon/mace-of-disruption.json
+++ b/packs/_source/items/weapon/mace-of-disruption.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233852,
- "modifiedTime": 1709659530115,
+ "modifiedTime": 1715374641158,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!m7RubLd1lUcMjYgY"
diff --git a/packs/_source/items/weapon/mace-of-smiting.json b/packs/_source/items/weapon/mace-of-smiting.json
index d108513986..caaa88b548 100644
--- a/packs/_source/items/weapon/mace-of-smiting.json
+++ b/packs/_source/items/weapon/mace-of-smiting.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 7000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233955,
- "modifiedTime": 1709659531554,
+ "modifiedTime": 1715374655934,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!w56FIjFafs2rN6iK"
diff --git a/packs/_source/items/weapon/mace-of-terror.json b/packs/_source/items/weapon/mace-of-terror.json
index ffe75c1ae2..e4447b4226 100644
--- a/packs/_source/items/weapon/mace-of-terror.json
+++ b/packs/_source/items/weapon/mace-of-terror.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233728,
- "modifiedTime": 1709659528467,
+ "modifiedTime": 1715374622387,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!b46t42bMruQf9v3O"
diff --git a/packs/_source/items/weapon/mace.json b/packs/_source/items/weapon/mace.json
index 59f30f5528..486d1145dc 100644
--- a/packs/_source/items/weapon/mace.json
+++ b/packs/_source/items/weapon/mace.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -105,15 +108,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -124,10 +121,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233508,
- "modifiedTime": 1709659525660,
+ "modifiedTime": 1715374584095,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Ajyq6nGwF7FtLhDQ"
diff --git a/packs/_source/items/weapon/maul-1.json b/packs/_source/items/weapon/maul-1.json
index 375a3cda1a..e72c929c47 100644
--- a/packs/_source/items/weapon/maul-1.json
+++ b/packs/_source/items/weapon/maul-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233538,
- "modifiedTime": 1709659526023,
+ "modifiedTime": 1715374589765,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!EveBprZPBjfZqXLt"
diff --git a/packs/_source/items/weapon/maul-2.json b/packs/_source/items/weapon/maul-2.json
index 86eef0443d..db7c6ae0eb 100644
--- a/packs/_source/items/weapon/maul-2.json
+++ b/packs/_source/items/weapon/maul-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233442,
- "modifiedTime": 1709659524772,
+ "modifiedTime": 1715374571490,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!1kihEfn9QppB34ee"
diff --git a/packs/_source/items/weapon/maul-3.json b/packs/_source/items/weapon/maul-3.json
index 2d65b2c678..118c8e7e42 100644
--- a/packs/_source/items/weapon/maul-3.json
+++ b/packs/_source/items/weapon/maul-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233641,
- "modifiedTime": 1709659527175,
+ "modifiedTime": 1715374605169,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!P8f9o36qxagW2uRW"
diff --git a/packs/_source/items/weapon/maul.json b/packs/_source/items/weapon/maul.json
index 7d5a33dc2b..bd7c6b45cc 100644
--- a/packs/_source/items/weapon/maul.json
+++ b/packs/_source/items/weapon/maul.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233528,
- "modifiedTime": 1709659525899,
+ "modifiedTime": 1715374587923,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!DizirD7eqjh8n95A"
diff --git a/packs/_source/items/weapon/morningstar-1.json b/packs/_source/items/weapon/morningstar-1.json
index 5d255d47c4..79bf4e8710 100644
--- a/packs/_source/items/weapon/morningstar-1.json
+++ b/packs/_source/items/weapon/morningstar-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233644,
- "modifiedTime": 1709659527249,
+ "modifiedTime": 1715374605593,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PKpftwMAn88gfLi7"
diff --git a/packs/_source/items/weapon/morningstar-2.json b/packs/_source/items/weapon/morningstar-2.json
index ed807bb2b8..2d371e6647 100644
--- a/packs/_source/items/weapon/morningstar-2.json
+++ b/packs/_source/items/weapon/morningstar-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233635,
- "modifiedTime": 1709659527034,
+ "modifiedTime": 1715374603696,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!NrHboku9vJO5FGiY"
diff --git a/packs/_source/items/weapon/morningstar-3.json b/packs/_source/items/weapon/morningstar-3.json
index edadfbfe9f..79c8b74918 100644
--- a/packs/_source/items/weapon/morningstar-3.json
+++ b/packs/_source/items/weapon/morningstar-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233747,
- "modifiedTime": 1709659528801,
+ "modifiedTime": 1715374626130,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dghpiMWDSUXtQf6X"
diff --git a/packs/_source/items/weapon/morningstar.json b/packs/_source/items/weapon/morningstar.json
index 28987f5828..49b3277511 100644
--- a/packs/_source/items/weapon/morningstar.json
+++ b/packs/_source/items/weapon/morningstar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 15,
"denomination": "gp"
@@ -105,15 +108,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -124,10 +121,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233745,
- "modifiedTime": 1709659528728,
+ "modifiedTime": 1715374625708,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dX8AxCh9o0A9CkT3"
diff --git a/packs/_source/items/weapon/net-1.json b/packs/_source/items/weapon/net-1.json
index dfd9512616..4c41369511 100644
--- a/packs/_source/items/weapon/net-1.json
+++ b/packs/_source/items/weapon/net-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 200,
"denomination": "gp"
@@ -105,14 +108,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -123,10 +120,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233888,
- "modifiedTime": 1709659530961,
+ "modifiedTime": 1715374648681,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!rJKXDPikXSYXYgb5"
diff --git a/packs/_source/items/weapon/net-2.json b/packs/_source/items/weapon/net-2.json
index 30c361f58d..8223bcb580 100644
--- a/packs/_source/items/weapon/net-2.json
+++ b/packs/_source/items/weapon/net-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 500,
"denomination": "gp"
@@ -105,14 +108,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -123,10 +120,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233812,
- "modifiedTime": 1709659529454,
+ "modifiedTime": 1715374632980,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!hHX5qXva1ScCpBpL"
diff --git a/packs/_source/items/weapon/net-3.json b/packs/_source/items/weapon/net-3.json
index 9c549810f0..680432dff1 100644
--- a/packs/_source/items/weapon/net-3.json
+++ b/packs/_source/items/weapon/net-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -105,14 +108,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -123,10 +120,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233821,
- "modifiedTime": 1709659529528,
+ "modifiedTime": 1715374634740,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!iIuNqnpWCHrLEKWj"
diff --git a/packs/_source/items/weapon/net.json b/packs/_source/items/weapon/net.json
index a4c402c707..b74e2d56b5 100644
--- a/packs/_source/items/weapon/net.json
+++ b/packs/_source/items/weapon/net.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -103,15 +106,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -122,10 +119,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233722,
- "modifiedTime": 1709659528368,
+ "modifiedTime": 1715374621121,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!aEiM49V8vWpWw7rU"
diff --git a/packs/_source/items/weapon/nine-lives-stealer-greatsword.json b/packs/_source/items/weapon/nine-lives-stealer-greatsword.json
index b0e859d18b..47e9adf21d 100644
--- a/packs/_source/items/weapon/nine-lives-stealer-greatsword.json
+++ b/packs/_source/items/weapon/nine-lives-stealer-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233908,
- "modifiedTime": 1709659531277,
+ "modifiedTime": 1715374652176,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tFLmAPUDLxBY8jFO"
diff --git a/packs/_source/items/weapon/nine-lives-stealer-longsword.json b/packs/_source/items/weapon/nine-lives-stealer-longsword.json
index bb5db8735a..c28f40b335 100644
--- a/packs/_source/items/weapon/nine-lives-stealer-longsword.json
+++ b/packs/_source/items/weapon/nine-lives-stealer-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233511,
- "modifiedTime": 1709659525712,
+ "modifiedTime": 1715374584762,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BefbYlWbRYyy6R8s"
diff --git a/packs/_source/items/weapon/nine-lives-stealer-rapier.json b/packs/_source/items/weapon/nine-lives-stealer-rapier.json
index cecb10e9e3..390db69c4f 100644
--- a/packs/_source/items/weapon/nine-lives-stealer-rapier.json
+++ b/packs/_source/items/weapon/nine-lives-stealer-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233638,
- "modifiedTime": 1709659527090,
+ "modifiedTime": 1715374604318,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!OUGMoQYeJzxEcRvm"
diff --git a/packs/_source/items/weapon/nine-lives-stealer-scimitar.json b/packs/_source/items/weapon/nine-lives-stealer-scimitar.json
index b30c21b280..b811263329 100644
--- a/packs/_source/items/weapon/nine-lives-stealer-scimitar.json
+++ b/packs/_source/items/weapon/nine-lives-stealer-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233498,
- "modifiedTime": 1709659525523,
+ "modifiedTime": 1715374582364,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9Mdes2tKt0cqsNTw"
diff --git a/packs/_source/items/weapon/nine-lives-stealer-shortsword.json b/packs/_source/items/weapon/nine-lives-stealer-shortsword.json
index 93ba63e7ad..7441f85191 100644
--- a/packs/_source/items/weapon/nine-lives-stealer-shortsword.json
+++ b/packs/_source/items/weapon/nine-lives-stealer-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 8000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233446,
- "modifiedTime": 1709659524831,
+ "modifiedTime": 1715374572346,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2Lkub0qIwucWEfp3"
diff --git a/packs/_source/items/weapon/oathbow.json b/packs/_source/items/weapon/oathbow.json
index cd629db7e4..c8162747c5 100644
--- a/packs/_source/items/weapon/oathbow.json
+++ b/packs/_source/items/weapon/oathbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 3500,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233853,
- "modifiedTime": 1709659530150,
+ "modifiedTime": 1715374641368,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!mGIwk9FwTAJB6qTn"
diff --git a/packs/_source/items/weapon/orb.json b/packs/_source/items/weapon/orb.json
index 40a012ae11..24a9986c30 100644
--- a/packs/_source/items/weapon/orb.json
+++ b/packs/_source/items/weapon/orb.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 20,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233909,
- "modifiedTime": 1709659531302,
+ "modifiedTime": 1715374652292,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tH5Rn0JVRG1zdmPa"
diff --git a/packs/_source/items/weapon/pike-1.json b/packs/_source/items/weapon/pike-1.json
index 5ca7ea8e91..03dda3c8c4 100644
--- a/packs/_source/items/weapon/pike-1.json
+++ b/packs/_source/items/weapon/pike-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233972,
- "modifiedTime": 1709659531864,
+ "modifiedTime": 1715374659806,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!yoFff2zdTloKx1if"
diff --git a/packs/_source/items/weapon/pike-2.json b/packs/_source/items/weapon/pike-2.json
index 692bf34b00..50b1eea24d 100644
--- a/packs/_source/items/weapon/pike-2.json
+++ b/packs/_source/items/weapon/pike-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233885,
- "modifiedTime": 1709659530818,
+ "modifiedTime": 1715374648042,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qcEiSj67zfbLvYdJ"
diff --git a/packs/_source/items/weapon/pike-3.json b/packs/_source/items/weapon/pike-3.json
index b5cbf95d74..e1f1298045 100644
--- a/packs/_source/items/weapon/pike-3.json
+++ b/packs/_source/items/weapon/pike-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -111,14 +114,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233455,
- "modifiedTime": 1709659524966,
+ "modifiedTime": 1715374574107,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3YH1o1Wa4gcdN3fh"
diff --git a/packs/_source/items/weapon/pike.json b/packs/_source/items/weapon/pike.json
index b20f462e32..794e6456e2 100644
--- a/packs/_source/items/weapon/pike.json
+++ b/packs/_source/items/weapon/pike.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233905,
- "modifiedTime": 1709659531246,
+ "modifiedTime": 1715374651974,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tC0kcqZT9HHAO0PD"
diff --git a/packs/_source/items/weapon/quarterstaff-1.json b/packs/_source/items/weapon/quarterstaff-1.json
index ce345b1e41..36eaefff83 100644
--- a/packs/_source/items/weapon/quarterstaff-1.json
+++ b/packs/_source/items/weapon/quarterstaff-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233905,
- "modifiedTime": 1709659531221,
+ "modifiedTime": 1715374651874,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!t8L7B0JWamsvxhui"
diff --git a/packs/_source/items/weapon/quarterstaff-2.json b/packs/_source/items/weapon/quarterstaff-2.json
index 931ef4fdee..c3fef2f637 100644
--- a/packs/_source/items/weapon/quarterstaff-2.json
+++ b/packs/_source/items/weapon/quarterstaff-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233484,
- "modifiedTime": 1709659525315,
+ "modifiedTime": 1715374579630,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7kVZo4DLBq22406E"
diff --git a/packs/_source/items/weapon/quarterstaff-3.json b/packs/_source/items/weapon/quarterstaff-3.json
index 45b9481863..a4809c353c 100644
--- a/packs/_source/items/weapon/quarterstaff-3.json
+++ b/packs/_source/items/weapon/quarterstaff-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233512,
- "modifiedTime": 1709659525748,
+ "modifiedTime": 1715374584965,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BmWnprrj0QWQ1BL3"
diff --git a/packs/_source/items/weapon/quarterstaff.json b/packs/_source/items/weapon/quarterstaff.json
index 81c623c48b..4c72eef3d3 100644
--- a/packs/_source/items/weapon/quarterstaff.json
+++ b/packs/_source/items/weapon/quarterstaff.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "sp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233801,
- "modifiedTime": 1709659529197,
+ "modifiedTime": 1715374630925,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!g2dWN7PQiMRYWzyk"
diff --git a/packs/_source/items/weapon/rapier-1.json b/packs/_source/items/weapon/rapier-1.json
index c380953264..8310e47f08 100644
--- a/packs/_source/items/weapon/rapier-1.json
+++ b/packs/_source/items/weapon/rapier-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233659,
- "modifiedTime": 1709659527509,
+ "modifiedTime": 1715374608514,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!S7AhpCPDBGUBbg7b"
diff --git a/packs/_source/items/weapon/rapier-2.json b/packs/_source/items/weapon/rapier-2.json
index 820ad9a8ed..1d7ec04630 100644
--- a/packs/_source/items/weapon/rapier-2.json
+++ b/packs/_source/items/weapon/rapier-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233918,
- "modifiedTime": 1709659531428,
+ "modifiedTime": 1715374653943,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uLY74ppOrTaWKwer"
diff --git a/packs/_source/items/weapon/rapier-3.json b/packs/_source/items/weapon/rapier-3.json
index 36bf7105f6..59bfa19a72 100644
--- a/packs/_source/items/weapon/rapier-3.json
+++ b/packs/_source/items/weapon/rapier-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233708,
- "modifiedTime": 1709659528173,
+ "modifiedTime": 1715374618448,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!YevPP0DZXgAcLmzv"
diff --git a/packs/_source/items/weapon/rapier-of-life-stealing.json b/packs/_source/items/weapon/rapier-of-life-stealing.json
index 307902ea51..6ca8377d83 100644
--- a/packs/_source/items/weapon/rapier-of-life-stealing.json
+++ b/packs/_source/items/weapon/rapier-of-life-stealing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233873,
- "modifiedTime": 1709659530536,
+ "modifiedTime": 1715374645663,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!p01JzD9RpIOkJiqK"
diff --git a/packs/_source/items/weapon/rapier-of-wounding.json b/packs/_source/items/weapon/rapier-of-wounding.json
index aca4db6920..4b0bb1e7eb 100644
--- a/packs/_source/items/weapon/rapier-of-wounding.json
+++ b/packs/_source/items/weapon/rapier-of-wounding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233611,
- "modifiedTime": 1709659526732,
+ "modifiedTime": 1715374598360,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KJYqNZgdkRwPmPMl"
diff --git a/packs/_source/items/weapon/rapier.json b/packs/_source/items/weapon/rapier.json
index ab2bc3945e..13e127722b 100644
--- a/packs/_source/items/weapon/rapier.json
+++ b/packs/_source/items/weapon/rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233673,
- "modifiedTime": 1709659527668,
+ "modifiedTime": 1715374610877,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Tobce1hexTnDk4sV"
diff --git a/packs/_source/items/weapon/rod.json b/packs/_source/items/weapon/rod.json
index 10022a1ce8..ba218b5760 100644
--- a/packs/_source/items/weapon/rod.json
+++ b/packs/_source/items/weapon/rod.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233639,
- "modifiedTime": 1709659527117,
+ "modifiedTime": 1715374604636,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!OojyyGfh91iViuMF"
diff --git a/packs/_source/items/weapon/scimitar-1.json b/packs/_source/items/weapon/scimitar-1.json
index 5df4fdcea7..1751aff764 100644
--- a/packs/_source/items/weapon/scimitar-1.json
+++ b/packs/_source/items/weapon/scimitar-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233683,
- "modifiedTime": 1709659527833,
+ "modifiedTime": 1715374613134,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VGtyTdVLoWls8FL5"
diff --git a/packs/_source/items/weapon/scimitar-2.json b/packs/_source/items/weapon/scimitar-2.json
index b7df8e91b2..3adb24fbb1 100644
--- a/packs/_source/items/weapon/scimitar-2.json
+++ b/packs/_source/items/weapon/scimitar-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233684,
- "modifiedTime": 1709659527858,
+ "modifiedTime": 1715374613241,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VHYy3ZsJNPUo1SIx"
diff --git a/packs/_source/items/weapon/scimitar-3.json b/packs/_source/items/weapon/scimitar-3.json
index 20409b7546..e7fbfe2a07 100644
--- a/packs/_source/items/weapon/scimitar-3.json
+++ b/packs/_source/items/weapon/scimitar-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233450,
- "modifiedTime": 1709659524885,
+ "modifiedTime": 1715374573135,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2wK9ImkAeG3Lzxa0"
diff --git a/packs/_source/items/weapon/scimitar-of-life-stealing.json b/packs/_source/items/weapon/scimitar-of-life-stealing.json
index 394feb5f5e..26a123ce02 100644
--- a/packs/_source/items/weapon/scimitar-of-life-stealing.json
+++ b/packs/_source/items/weapon/scimitar-of-life-stealing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233899,
- "modifiedTime": 1709659531115,
+ "modifiedTime": 1715374650841,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sfegfmo59MHJg2YC"
diff --git a/packs/_source/items/weapon/scimitar-of-sharpness.json b/packs/_source/items/weapon/scimitar-of-sharpness.json
index 7dad0554cb..7fcb0eafd5 100644
--- a/packs/_source/items/weapon/scimitar-of-sharpness.json
+++ b/packs/_source/items/weapon/scimitar-of-sharpness.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1700,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233714,
- "modifiedTime": 1709659528295,
+ "modifiedTime": 1715374619390,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ZKyhkS8ud2NpV7ng"
diff --git a/packs/_source/items/weapon/scimitar-of-speed.json b/packs/_source/items/weapon/scimitar-of-speed.json
index ac9520344c..2ec7e8d665 100644
--- a/packs/_source/items/weapon/scimitar-of-speed.json
+++ b/packs/_source/items/weapon/scimitar-of-speed.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 6000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233485,
- "modifiedTime": 1709659525347,
+ "modifiedTime": 1715374579832,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!7wY0389wscheFkIa"
diff --git a/packs/_source/items/weapon/scimitar-of-wounding.json b/packs/_source/items/weapon/scimitar-of-wounding.json
index e191616470..f9e804d577 100644
--- a/packs/_source/items/weapon/scimitar-of-wounding.json
+++ b/packs/_source/items/weapon/scimitar-of-wounding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233614,
- "modifiedTime": 1709659526786,
+ "modifiedTime": 1715374599099,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!L4PxYPtYca283sju"
diff --git a/packs/_source/items/weapon/scimitar.json b/packs/_source/items/weapon/scimitar.json
index 42efe040ae..406741c62b 100644
--- a/packs/_source/items/weapon/scimitar.json
+++ b/packs/_source/items/weapon/scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233798,
- "modifiedTime": 1709659529122,
+ "modifiedTime": 1715374630389,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!fbC0Mg1a73wdFbqO"
diff --git a/packs/_source/items/weapon/shortbow-1.json b/packs/_source/items/weapon/shortbow-1.json
index d7f6cc30b0..e099ee5201 100644
--- a/packs/_source/items/weapon/shortbow-1.json
+++ b/packs/_source/items/weapon/shortbow-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233806,
- "modifiedTime": 1709659529326,
+ "modifiedTime": 1715374631964,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gYDMk3LWikIP5PmA"
diff --git a/packs/_source/items/weapon/shortbow-2.json b/packs/_source/items/weapon/shortbow-2.json
index 3e5eeac632..d66b95d902 100644
--- a/packs/_source/items/weapon/shortbow-2.json
+++ b/packs/_source/items/weapon/shortbow-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233914,
- "modifiedTime": 1709659531353,
+ "modifiedTime": 1715374653208,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!tt4WokZBZMGqgYm5"
diff --git a/packs/_source/items/weapon/shortbow-3.json b/packs/_source/items/weapon/shortbow-3.json
index adfd31b485..c99ffc1c69 100644
--- a/packs/_source/items/weapon/shortbow-3.json
+++ b/packs/_source/items/weapon/shortbow-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233788,
- "modifiedTime": 1709659529045,
+ "modifiedTime": 1715374628701,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!egJhGFU3v5OfjPNS"
diff --git a/packs/_source/items/weapon/shortbow.json b/packs/_source/items/weapon/shortbow.json
index 8115e5a667..7ae10267e1 100644
--- a/packs/_source/items/weapon/shortbow.json
+++ b/packs/_source/items/weapon/shortbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 25,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233554,
- "modifiedTime": 1709659526330,
+ "modifiedTime": 1715374592759,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!GJv6WkD7D2J6rP6M"
diff --git a/packs/_source/items/weapon/shortsword-1.json b/packs/_source/items/weapon/shortsword-1.json
index f8e166f50f..32b5c32381 100644
--- a/packs/_source/items/weapon/shortsword-1.json
+++ b/packs/_source/items/weapon/shortsword-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233901,
- "modifiedTime": 1709659531145,
+ "modifiedTime": 1715374651153,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!sl6yiYSlqkHiVVSN"
diff --git a/packs/_source/items/weapon/shortsword-2.json b/packs/_source/items/weapon/shortsword-2.json
index 117e1f5a8c..966e3bf8ed 100644
--- a/packs/_source/items/weapon/shortsword-2.json
+++ b/packs/_source/items/weapon/shortsword-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233727,
- "modifiedTime": 1709659528443,
+ "modifiedTime": 1715374622278,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!b2l2ubCGSnmiTrm8"
diff --git a/packs/_source/items/weapon/shortsword-3.json b/packs/_source/items/weapon/shortsword-3.json
index fc4ae25827..cd577ebbaf 100644
--- a/packs/_source/items/weapon/shortsword-3.json
+++ b/packs/_source/items/weapon/shortsword-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233917,
- "modifiedTime": 1709659531405,
+ "modifiedTime": 1715374653836,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uIHXYhnOwETlA5lT"
diff --git a/packs/_source/items/weapon/shortsword-of-life-stealing.json b/packs/_source/items/weapon/shortsword-of-life-stealing.json
index 6c7ec2aff6..8010f6d6a9 100644
--- a/packs/_source/items/weapon/shortsword-of-life-stealing.json
+++ b/packs/_source/items/weapon/shortsword-of-life-stealing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233496,
- "modifiedTime": 1709659525498,
+ "modifiedTime": 1715374581964,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!902yxeFDwavpm6cv"
diff --git a/packs/_source/items/weapon/shortsword-of-wounding.json b/packs/_source/items/weapon/shortsword-of-wounding.json
index ab7bc41638..a734fecd91 100644
--- a/packs/_source/items/weapon/shortsword-of-wounding.json
+++ b/packs/_source/items/weapon/shortsword-of-wounding.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233665,
- "modifiedTime": 1709659527618,
+ "modifiedTime": 1715374609356,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!SpbjbMMoJiva2zOa"
diff --git a/packs/_source/items/weapon/shortsword.json b/packs/_source/items/weapon/shortsword.json
index 4537fb6816..56a640e0f2 100644
--- a/packs/_source/items/weapon/shortsword.json
+++ b/packs/_source/items/weapon/shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233871,
- "modifiedTime": 1709659530481,
+ "modifiedTime": 1715374645123,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!osLzOwQdPtrK3rQH"
diff --git a/packs/_source/items/weapon/sickle-1.json b/packs/_source/items/weapon/sickle-1.json
index 40c039015d..dbda871ccd 100644
--- a/packs/_source/items/weapon/sickle-1.json
+++ b/packs/_source/items/weapon/sickle-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233726,
- "modifiedTime": 1709659528418,
+ "modifiedTime": 1715374622052,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!asUgQFrF1xYeNhtW"
diff --git a/packs/_source/items/weapon/sickle-2.json b/packs/_source/items/weapon/sickle-2.json
index 4e69e27359..9e7d44a0cc 100644
--- a/packs/_source/items/weapon/sickle-2.json
+++ b/packs/_source/items/weapon/sickle-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233919,
- "modifiedTime": 1709659531453,
+ "modifiedTime": 1715374654060,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uRoHwk1c8e5xJjkV"
diff --git a/packs/_source/items/weapon/sickle-3.json b/packs/_source/items/weapon/sickle-3.json
index 1a730b34e7..768ab4cb25 100644
--- a/packs/_source/items/weapon/sickle-3.json
+++ b/packs/_source/items/weapon/sickle-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233507,
- "modifiedTime": 1709659525632,
+ "modifiedTime": 1715374583995,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!AHn15T1TOuDFS0GH"
diff --git a/packs/_source/items/weapon/sickle.json b/packs/_source/items/weapon/sickle.json
index a0b16c7381..8c3e6c63cc 100644
--- a/packs/_source/items/weapon/sickle.json
+++ b/packs/_source/items/weapon/sickle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233819,
- "modifiedTime": 1709659529503,
+ "modifiedTime": 1715374634305,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!i4NeNZ30ycwPDHMx"
diff --git a/packs/_source/items/weapon/sling-1.json b/packs/_source/items/weapon/sling-1.json
index c1649a967f..493921a1d3 100644
--- a/packs/_source/items/weapon/sling-1.json
+++ b/packs/_source/items/weapon/sling-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233476,
- "modifiedTime": 1709659525183,
+ "modifiedTime": 1715374577890,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6I5lt8KheTsAE4Zr"
diff --git a/packs/_source/items/weapon/sling-2.json b/packs/_source/items/weapon/sling-2.json
index 7a4f283a58..fd44e0a60b 100644
--- a/packs/_source/items/weapon/sling-2.json
+++ b/packs/_source/items/weapon/sling-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233503,
- "modifiedTime": 1709659525556,
+ "modifiedTime": 1715374583291,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!9qOAoFw9dTXhJ1w0"
diff --git a/packs/_source/items/weapon/sling-3.json b/packs/_source/items/weapon/sling-3.json
index 69e78727b1..c9c2615955 100644
--- a/packs/_source/items/weapon/sling-3.json
+++ b/packs/_source/items/weapon/sling-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233877,
- "modifiedTime": 1709659530679,
+ "modifiedTime": 1715374646524,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!q3WqP3r2emnumyUF"
diff --git a/packs/_source/items/weapon/sling.json b/packs/_source/items/weapon/sling.json
index a9d5040c55..e7494d612b 100644
--- a/packs/_source/items/weapon/sling.json
+++ b/packs/_source/items/weapon/sling.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "sp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233458,
- "modifiedTime": 1709659525025,
+ "modifiedTime": 1715374574642,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3gynWO9sN4OLGMWD"
diff --git a/packs/_source/items/weapon/spear-1.json b/packs/_source/items/weapon/spear-1.json
index aa47faafb2..9d6059f8e2 100644
--- a/packs/_source/items/weapon/spear-1.json
+++ b/packs/_source/items/weapon/spear-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233689,
- "modifiedTime": 1709659527966,
+ "modifiedTime": 1715374614491,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WNdN2mBF3O7ZNcMp"
diff --git a/packs/_source/items/weapon/spear-2.json b/packs/_source/items/weapon/spear-2.json
index da8c748c00..7a6feb928a 100644
--- a/packs/_source/items/weapon/spear-2.json
+++ b/packs/_source/items/weapon/spear-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233564,
- "modifiedTime": 1709659526458,
+ "modifiedTime": 1715374594657,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HeDP6dL9daVT3uj2"
diff --git a/packs/_source/items/weapon/spear-3.json b/packs/_source/items/weapon/spear-3.json
index 7c795d0206..9c154fd025 100644
--- a/packs/_source/items/weapon/spear-3.json
+++ b/packs/_source/items/weapon/spear-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233473,
- "modifiedTime": 1709659525157,
+ "modifiedTime": 1715374577250,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!62EaozKvcA0aSy2q"
diff --git a/packs/_source/items/weapon/spear.json b/packs/_source/items/weapon/spear.json
index ecf2242eee..909027223e 100644
--- a/packs/_source/items/weapon/spear.json
+++ b/packs/_source/items/weapon/spear.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233636,
- "modifiedTime": 1709659527058,
+ "modifiedTime": 1715374604024,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!OG4nBBydvmfWYXIk"
diff --git a/packs/_source/items/weapon/sprig-of-mistletoe.json b/packs/_source/items/weapon/sprig-of-mistletoe.json
index 000eea696b..358b1130bc 100644
--- a/packs/_source/items/weapon/sprig-of-mistletoe.json
+++ b/packs/_source/items/weapon/sprig-of-mistletoe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233963,
- "modifiedTime": 1709659531714,
+ "modifiedTime": 1715374657824,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xDK9GQd2iqOGH8Sd"
diff --git a/packs/_source/items/weapon/staff-of-charming.json b/packs/_source/items/weapon/staff-of-charming.json
index e6901d305a..98a10a8c03 100644
--- a/packs/_source/items/weapon/staff-of-charming.json
+++ b/packs/_source/items/weapon/staff-of-charming.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233548,
- "modifiedTime": 1709659526229,
+ "modifiedTime": 1715374591323,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FeouSUPUlUhfgeRp"
diff --git a/packs/_source/items/weapon/staff-of-fire.json b/packs/_source/items/weapon/staff-of-fire.json
index 595f5c2beb..228224a642 100644
--- a/packs/_source/items/weapon/staff-of-fire.json
+++ b/packs/_source/items/weapon/staff-of-fire.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233849,
- "modifiedTime": 1709659530043,
+ "modifiedTime": 1715374640412,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lsiR1hVfISlC5YoB"
diff --git a/packs/_source/items/weapon/staff-of-frost.json b/packs/_source/items/weapon/staff-of-frost.json
index 4deee4c824..c3c04df66d 100644
--- a/packs/_source/items/weapon/staff-of-frost.json
+++ b/packs/_source/items/weapon/staff-of-frost.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 26000,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233964,
- "modifiedTime": 1709659531737,
+ "modifiedTime": 1715374657924,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!xEtBeZjJnkDXojQM"
diff --git a/packs/_source/items/weapon/staff-of-healing.json b/packs/_source/items/weapon/staff-of-healing.json
index f438f8e00e..5657228c4e 100644
--- a/packs/_source/items/weapon/staff-of-healing.json
+++ b/packs/_source/items/weapon/staff-of-healing.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 13000,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233689,
- "modifiedTime": 1709659527941,
+ "modifiedTime": 1715374614391,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WLVQJVpCWiPkCAtZ"
diff --git a/packs/_source/items/weapon/staff-of-power.json b/packs/_source/items/weapon/staff-of-power.json
index 66bc58ca2d..66e49e71ef 100644
--- a/packs/_source/items/weapon/staff-of-power.json
+++ b/packs/_source/items/weapon/staff-of-power.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 95500,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [
{
@@ -158,10 +155,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233783,
- "modifiedTime": 1709659528962,
+ "modifiedTime": 1715374627567,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eM5gEe4SEOvA2Y9t"
diff --git a/packs/_source/items/weapon/staff-of-striking.json b/packs/_source/items/weapon/staff-of-striking.json
index d8de2c49af..6d97d40f0d 100644
--- a/packs/_source/items/weapon/staff-of-striking.json
+++ b/packs/_source/items/weapon/staff-of-striking.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 21000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233677,
- "modifiedTime": 1709659527749,
+ "modifiedTime": 1715374611975,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!URun3vYrXKJJdAJe"
diff --git a/packs/_source/items/weapon/staff-of-swarming-insects.json b/packs/_source/items/weapon/staff-of-swarming-insects.json
index f5b4ddfd94..9e5876711f 100644
--- a/packs/_source/items/weapon/staff-of-swarming-insects.json
+++ b/packs/_source/items/weapon/staff-of-swarming-insects.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233733,
- "modifiedTime": 1709659528570,
+ "modifiedTime": 1715374623341,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!bod1dKzbAkAm21Ho"
diff --git a/packs/_source/items/weapon/staff-of-the-magi.json b/packs/_source/items/weapon/staff-of-the-magi.json
index 794497478b..8e7be64d4e 100644
--- a/packs/_source/items/weapon/staff-of-the-magi.json
+++ b/packs/_source/items/weapon/staff-of-the-magi.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 350000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233842,
- "modifiedTime": 1709659529943,
+ "modifiedTime": 1715374638909,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!l3V7V8VCXpmAAysQ"
diff --git a/packs/_source/items/weapon/staff-of-the-python.json b/packs/_source/items/weapon/staff-of-the-python.json
index 5eece337d1..bca4f7dd0f 100644
--- a/packs/_source/items/weapon/staff-of-the-python.json
+++ b/packs/_source/items/weapon/staff-of-the-python.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 2000,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233626,
- "modifiedTime": 1709659526908,
+ "modifiedTime": 1715374601724,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!MOeFq5MLAQzVQC7z"
diff --git a/packs/_source/items/weapon/staff-of-the-woodlands.json b/packs/_source/items/weapon/staff-of-the-woodlands.json
index b5c4fd6065..3313fc8fb8 100644
--- a/packs/_source/items/weapon/staff-of-the-woodlands.json
+++ b/packs/_source/items/weapon/staff-of-the-woodlands.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 44000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233738,
- "modifiedTime": 1709659528625,
+ "modifiedTime": 1715374624270,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!caEn3ixCUFBnHTx6"
diff --git a/packs/_source/items/weapon/staff-of-thunder-and-lightning.json b/packs/_source/items/weapon/staff-of-thunder-and-lightning.json
index ef1adcb5bd..46b6018021 100644
--- a/packs/_source/items/weapon/staff-of-thunder-and-lightning.json
+++ b/packs/_source/items/weapon/staff-of-thunder-and-lightning.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 10000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233541,
- "modifiedTime": 1709659526122,
+ "modifiedTime": 1715374590385,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!F6v3Q7dz1SlpLTMf"
diff --git a/packs/_source/items/weapon/staff-of-withering.json b/packs/_source/items/weapon/staff-of-withering.json
index 2d3bcd2cf8..1887990092 100644
--- a/packs/_source/items/weapon/staff-of-withering.json
+++ b/packs/_source/items/weapon/staff-of-withering.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 3000,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233917,
- "modifiedTime": 1709659531379,
+ "modifiedTime": 1715374653724,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!uHL99JKLUpTKAbz8"
diff --git a/packs/_source/items/weapon/staff.json b/packs/_source/items/weapon/staff.json
index 48cc8ef43a..f73d0ea821 100644
--- a/packs/_source/items/weapon/staff.json
+++ b/packs/_source/items/weapon/staff.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233511,
- "modifiedTime": 1709659525686,
+ "modifiedTime": 1715374584661,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!BeKIrNIvNHRPQ4t5"
diff --git a/packs/_source/items/weapon/sun-blade.json b/packs/_source/items/weapon/sun-blade.json
index ab4e756ca4..c1b1f845db 100644
--- a/packs/_source/items/weapon/sun-blade.json
+++ b/packs/_source/items/weapon/sun-blade.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 12000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233970,
- "modifiedTime": 1709659531816,
+ "modifiedTime": 1715374659494,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!yiYCqmD5n08NftYk"
diff --git a/packs/_source/items/weapon/totem.json b/packs/_source/items/weapon/totem.json
index 8f8e0f8688..0ccf558aae 100644
--- a/packs/_source/items/weapon/totem.json
+++ b/packs/_source/items/weapon/totem.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 1,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233643,
- "modifiedTime": 1709659527225,
+ "modifiedTime": 1715374605476,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!PGL6aaM0wE5h0VN5"
diff --git a/packs/_source/items/weapon/trident-1.json b/packs/_source/items/weapon/trident-1.json
index a2ec3752f2..4bbe8e552d 100644
--- a/packs/_source/items/weapon/trident-1.json
+++ b/packs/_source/items/weapon/trident-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233954,
- "modifiedTime": 1709659531528,
+ "modifiedTime": 1715374655824,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!vuThcmO7MYlw5b9f"
diff --git a/packs/_source/items/weapon/trident-2.json b/packs/_source/items/weapon/trident-2.json
index b9fa3872f5..979e2b326a 100644
--- a/packs/_source/items/weapon/trident-2.json
+++ b/packs/_source/items/weapon/trident-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233537,
- "modifiedTime": 1709659525998,
+ "modifiedTime": 1715374589557,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!EkTpM4Wbsrdqflzl"
diff --git a/packs/_source/items/weapon/trident-3.json b/packs/_source/items/weapon/trident-3.json
index b9d018b7e8..04776ba4f0 100644
--- a/packs/_source/items/weapon/trident-3.json
+++ b/packs/_source/items/weapon/trident-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233975,
- "modifiedTime": 1709659531921,
+ "modifiedTime": 1715374660412,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!z9fFB1uaGJvcXTf7"
diff --git a/packs/_source/items/weapon/trident-of-fish-command.json b/packs/_source/items/weapon/trident-of-fish-command.json
index 530174951f..b3426716de 100644
--- a/packs/_source/items/weapon/trident-of-fish-command.json
+++ b/packs/_source/items/weapon/trident-of-fish-command.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 800,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233866,
- "modifiedTime": 1709659530395,
+ "modifiedTime": 1715374644068,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!o4Irx3hHiD3FnPbL"
diff --git a/packs/_source/items/weapon/trident.json b/packs/_source/items/weapon/trident.json
index f947cd643c..16f90894c1 100644
--- a/packs/_source/items/weapon/trident.json
+++ b/packs/_source/items/weapon/trident.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233540,
- "modifiedTime": 1709659526097,
+ "modifiedTime": 1715374590180,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!F65ANO66ckP8FDMa"
diff --git a/packs/_source/items/weapon/unarmed-strike.json b/packs/_source/items/weapon/unarmed-strike.json
index 8fbd763578..cbba1808e8 100644
--- a/packs/_source/items/weapon/unarmed-strike.json
+++ b/packs/_source/items/weapon/unarmed-strike.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 0,
"denomination": "gp"
@@ -105,15 +108,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -124,10 +121,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233557,
- "modifiedTime": 1709659526357,
+ "modifiedTime": 1715374593281,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!GsuvwoekKZatfKwF"
diff --git a/packs/_source/items/weapon/vicious-battleaxe.json b/packs/_source/items/weapon/vicious-battleaxe.json
index c92c5f4a1d..3bf88c8349 100644
--- a/packs/_source/items/weapon/vicious-battleaxe.json
+++ b/packs/_source/items/weapon/vicious-battleaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233741,
- "modifiedTime": 1709659528703,
+ "modifiedTime": 1715374624922,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!dG7iFak1YH1nXRpC"
diff --git a/packs/_source/items/weapon/vicious-blowgun.json b/packs/_source/items/weapon/vicious-blowgun.json
index 435a298162..1e86832989 100644
--- a/packs/_source/items/weapon/vicious-blowgun.json
+++ b/packs/_source/items/weapon/vicious-blowgun.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233872,
- "modifiedTime": 1709659530508,
+ "modifiedTime": 1715374645561,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ozYrQ5N4s81h35Fa"
diff --git a/packs/_source/items/weapon/vicious-club.json b/packs/_source/items/weapon/vicious-club.json
index 6b6e21af3f..1731aa0daf 100644
--- a/packs/_source/items/weapon/vicious-club.json
+++ b/packs/_source/items/weapon/vicious-club.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233678,
- "modifiedTime": 1709659527780,
+ "modifiedTime": 1715374612188,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!UctSPehpKb4lJQGr"
diff --git a/packs/_source/items/weapon/vicious-dagger.json b/packs/_source/items/weapon/vicious-dagger.json
index 480f8c7fda..b05805aada 100644
--- a/packs/_source/items/weapon/vicious-dagger.json
+++ b/packs/_source/items/weapon/vicious-dagger.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233469,
- "modifiedTime": 1709659525132,
+ "modifiedTime": 1715374576418,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5Jz5w7XJxgtlsx6K"
diff --git a/packs/_source/items/weapon/vicious-dart.json b/packs/_source/items/weapon/vicious-dart.json
index 4cf8cae48a..8be0ee0ee1 100644
--- a/packs/_source/items/weapon/vicious-dart.json
+++ b/packs/_source/items/weapon/vicious-dart.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0.25,
+ "weight": {
+ "value": 0.25,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233830,
- "modifiedTime": 1709659529683,
+ "modifiedTime": 1715374636523,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jeoZmDD9fuQdvC77"
diff --git a/packs/_source/items/weapon/vicious-flail.json b/packs/_source/items/weapon/vicious-flail.json
index aceb3f4e65..9d6d151b5c 100644
--- a/packs/_source/items/weapon/vicious-flail.json
+++ b/packs/_source/items/weapon/vicious-flail.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233886,
- "modifiedTime": 1709659530878,
+ "modifiedTime": 1715374648253,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qmuOeNsOKwkn6K8W"
diff --git a/packs/_source/items/weapon/vicious-glaive.json b/packs/_source/items/weapon/vicious-glaive.json
index 721d74e0de..ccf78e9358 100644
--- a/packs/_source/items/weapon/vicious-glaive.json
+++ b/packs/_source/items/weapon/vicious-glaive.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 20,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233782,
- "modifiedTime": 1709659528936,
+ "modifiedTime": 1715374627450,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!eKip69fExSYN661B"
diff --git a/packs/_source/items/weapon/vicious-greataxe.json b/packs/_source/items/weapon/vicious-greataxe.json
index 3d1903aa69..2dd73c2fb8 100644
--- a/packs/_source/items/weapon/vicious-greataxe.json
+++ b/packs/_source/items/weapon/vicious-greataxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 7,
+ "weight": {
+ "value": 7,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233862,
- "modifiedTime": 1709659530275,
+ "modifiedTime": 1715374643199,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nY6CnKEHyJ5STgt5"
diff --git a/packs/_source/items/weapon/vicious-greatclub.json b/packs/_source/items/weapon/vicious-greatclub.json
index 455e5b10ce..b461aca636 100644
--- a/packs/_source/items/weapon/vicious-greatclub.json
+++ b/packs/_source/items/weapon/vicious-greatclub.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233874,
- "modifiedTime": 1709659530569,
+ "modifiedTime": 1715374645876,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!p9dtQU9wEZGumHSb"
diff --git a/packs/_source/items/weapon/vicious-greatsword.json b/packs/_source/items/weapon/vicious-greatsword.json
index b8dfc15890..03d13a3cd3 100644
--- a/packs/_source/items/weapon/vicious-greatsword.json
+++ b/packs/_source/items/weapon/vicious-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233551,
- "modifiedTime": 1709659526306,
+ "modifiedTime": 1715374591846,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FpLaviCom3XR1ckP"
diff --git a/packs/_source/items/weapon/vicious-halberd.json b/packs/_source/items/weapon/vicious-halberd.json
index dd5eb74795..1e8c7c4204 100644
--- a/packs/_source/items/weapon/vicious-halberd.json
+++ b/packs/_source/items/weapon/vicious-halberd.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233828,
- "modifiedTime": 1709659529603,
+ "modifiedTime": 1715374635791,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!isKR904LkLaH4i6M"
diff --git a/packs/_source/items/weapon/vicious-hand-crossbow.json b/packs/_source/items/weapon/vicious-hand-crossbow.json
index e3edaf91f6..abde5e19d5 100644
--- a/packs/_source/items/weapon/vicious-hand-crossbow.json
+++ b/packs/_source/items/weapon/vicious-hand-crossbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233583,
- "modifiedTime": 1709659526684,
+ "modifiedTime": 1715374598144,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!K7h4LT03SNt2807z"
diff --git a/packs/_source/items/weapon/vicious-handaxe.json b/packs/_source/items/weapon/vicious-handaxe.json
index 71fd4c04d8..14035422ba 100644
--- a/packs/_source/items/weapon/vicious-handaxe.json
+++ b/packs/_source/items/weapon/vicious-handaxe.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233650,
- "modifiedTime": 1709659527323,
+ "modifiedTime": 1715374606759,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QM3gdsL0eaAus7XT"
diff --git a/packs/_source/items/weapon/vicious-heavy-crossbow.json b/packs/_source/items/weapon/vicious-heavy-crossbow.json
index 6ba3202c9d..bdb44a3c9b 100644
--- a/packs/_source/items/weapon/vicious-heavy-crossbow.json
+++ b/packs/_source/items/weapon/vicious-heavy-crossbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -111,15 +114,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -130,10 +127,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233550,
- "modifiedTime": 1709659526282,
+ "modifiedTime": 1715374591646,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Fk78kNmp3OLX5EMC"
diff --git a/packs/_source/items/weapon/vicious-javelin.json b/packs/_source/items/weapon/vicious-javelin.json
index 63ddd2f19b..125169e086 100644
--- a/packs/_source/items/weapon/vicious-javelin.json
+++ b/packs/_source/items/weapon/vicious-javelin.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233844,
- "modifiedTime": 1709659529993,
+ "modifiedTime": 1715374639507,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lM5uo6R4gy8rJG5Y"
diff --git a/packs/_source/items/weapon/vicious-lance.json b/packs/_source/items/weapon/vicious-lance.json
index 8def0a46a2..c263ac9583 100644
--- a/packs/_source/items/weapon/vicious-lance.json
+++ b/packs/_source/items/weapon/vicious-lance.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233887,
- "modifiedTime": 1709659530907,
+ "modifiedTime": 1715374648476,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!r8yK6SrWOz4hqF01"
diff --git a/packs/_source/items/weapon/vicious-light-crossbow.json b/packs/_source/items/weapon/vicious-light-crossbow.json
index fbaa303c5b..66a461a5cd 100644
--- a/packs/_source/items/weapon/vicious-light-crossbow.json
+++ b/packs/_source/items/weapon/vicious-light-crossbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 5,
+ "weight": {
+ "value": 5,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233685,
- "modifiedTime": 1709659527888,
+ "modifiedTime": 1715374613442,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!VQAUcjn1qdwW3MeU"
diff --git a/packs/_source/items/weapon/vicious-light-hammer.json b/packs/_source/items/weapon/vicious-light-hammer.json
index b48baaeaa3..07076ebfed 100644
--- a/packs/_source/items/weapon/vicious-light-hammer.json
+++ b/packs/_source/items/weapon/vicious-light-hammer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233464,
- "modifiedTime": 1709659525077,
+ "modifiedTime": 1715374575780,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!4MeSq8KcF7KK7emF"
diff --git a/packs/_source/items/weapon/vicious-longbow.json b/packs/_source/items/weapon/vicious-longbow.json
index a34db462ea..5be80e6cd5 100644
--- a/packs/_source/items/weapon/vicious-longbow.json
+++ b/packs/_source/items/weapon/vicious-longbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233806,
- "modifiedTime": 1709659529297,
+ "modifiedTime": 1715374631865,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gVo3UbvwjFIiFR0c"
diff --git a/packs/_source/items/weapon/vicious-longsword.json b/packs/_source/items/weapon/vicious-longsword.json
index 62a62f74cc..5deb1d10d9 100644
--- a/packs/_source/items/weapon/vicious-longsword.json
+++ b/packs/_source/items/weapon/vicious-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233875,
- "modifiedTime": 1709659530596,
+ "modifiedTime": 1715374645990,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!pC3202gDTy8G5i4r"
diff --git a/packs/_source/items/weapon/vicious-mace.json b/packs/_source/items/weapon/vicious-mace.json
index 9bf586466c..58221d5197 100644
--- a/packs/_source/items/weapon/vicious-mace.json
+++ b/packs/_source/items/weapon/vicious-mace.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233804,
- "modifiedTime": 1709659529247,
+ "modifiedTime": 1715374631556,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!gSwpQacBLOJeLWrK"
diff --git a/packs/_source/items/weapon/vicious-maul.json b/packs/_source/items/weapon/vicious-maul.json
index 1f022a41f5..cb98295880 100644
--- a/packs/_source/items/weapon/vicious-maul.json
+++ b/packs/_source/items/weapon/vicious-maul.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 10,
+ "weight": {
+ "value": 10,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233477,
- "modifiedTime": 1709659525208,
+ "modifiedTime": 1715374578005,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!6JbrdSg5YYbs9ANm"
diff --git a/packs/_source/items/weapon/vicious-morningstar.json b/packs/_source/items/weapon/vicious-morningstar.json
index 9c4759945e..15f106dfc5 100644
--- a/packs/_source/items/weapon/vicious-morningstar.json
+++ b/packs/_source/items/weapon/vicious-morningstar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233686,
- "modifiedTime": 1709659527916,
+ "modifiedTime": 1715374613757,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Vm6SuX6TkDvSIVGr"
diff --git a/packs/_source/items/weapon/vicious-pike.json b/packs/_source/items/weapon/vicious-pike.json
index c9ffcc6d40..93d136381f 100644
--- a/packs/_source/items/weapon/vicious-pike.json
+++ b/packs/_source/items/weapon/vicious-pike.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 18,
+ "weight": {
+ "value": 18,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -110,15 +113,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -129,10 +126,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233979,
- "modifiedTime": 1709659532005,
+ "modifiedTime": 1715374661240,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!zibIgdxPz8QHSCg6"
diff --git a/packs/_source/items/weapon/vicious-quarterstaff.json b/packs/_source/items/weapon/vicious-quarterstaff.json
index 834a793b8a..9a61411ca0 100644
--- a/packs/_source/items/weapon/vicious-quarterstaff.json
+++ b/packs/_source/items/weapon/vicious-quarterstaff.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233713,
- "modifiedTime": 1709659528246,
+ "modifiedTime": 1715374619166,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Z7xno2zMzRtqqUIQ"
diff --git a/packs/_source/items/weapon/vicious-rapier.json b/packs/_source/items/weapon/vicious-rapier.json
index bd4e5b75f6..f39d0a5048 100644
--- a/packs/_source/items/weapon/vicious-rapier.json
+++ b/packs/_source/items/weapon/vicious-rapier.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233809,
- "modifiedTime": 1709659529423,
+ "modifiedTime": 1715374632474,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!h0XLhuUQ0vSnW3DU"
diff --git a/packs/_source/items/weapon/vicious-scimitar.json b/packs/_source/items/weapon/vicious-scimitar.json
index a8fedb870a..0da62fc402 100644
--- a/packs/_source/items/weapon/vicious-scimitar.json
+++ b/packs/_source/items/weapon/vicious-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233544,
- "modifiedTime": 1709659526204,
+ "modifiedTime": 1715374590805,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FHUDEygUW7EWCDgA"
diff --git a/packs/_source/items/weapon/vicious-shortbow.json b/packs/_source/items/weapon/vicious-shortbow.json
index 2085359059..4a7da400e3 100644
--- a/packs/_source/items/weapon/vicious-shortbow.json
+++ b/packs/_source/items/weapon/vicious-shortbow.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233712,
- "modifiedTime": 1709659528222,
+ "modifiedTime": 1715374619057,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Z0eO3TTpYA2hjwdd"
diff --git a/packs/_source/items/weapon/vicious-shortsword.json b/packs/_source/items/weapon/vicious-shortsword.json
index 0daa118704..326e57992a 100644
--- a/packs/_source/items/weapon/vicious-shortsword.json
+++ b/packs/_source/items/weapon/vicious-shortsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233441,
- "modifiedTime": 1709659524745,
+ "modifiedTime": 1715374571265,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!1PMaZR6CX8fUnOZd"
diff --git a/packs/_source/items/weapon/vicious-sickle.json b/packs/_source/items/weapon/vicious-sickle.json
index b599d46f80..7a3d0f2203 100644
--- a/packs/_source/items/weapon/vicious-sickle.json
+++ b/packs/_source/items/weapon/vicious-sickle.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233506,
- "modifiedTime": 1709659525605,
+ "modifiedTime": 1715374583795,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!AChuumAYmts5uGFT"
diff --git a/packs/_source/items/weapon/vicious-sling.json b/packs/_source/items/weapon/vicious-sling.json
index 31443c7585..8d81f3ef4b 100644
--- a/packs/_source/items/weapon/vicious-sling.json
+++ b/packs/_source/items/weapon/vicious-sling.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 0,
+ "weight": {
+ "value": 0,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233879,
- "modifiedTime": 1709659530737,
+ "modifiedTime": 1715374647024,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!qGRN4wvZLJ8uITf2"
diff --git a/packs/_source/items/weapon/vicious-spear.json b/packs/_source/items/weapon/vicious-spear.json
index b7a8104c9a..2cc18c41f8 100644
--- a/packs/_source/items/weapon/vicious-spear.json
+++ b/packs/_source/items/weapon/vicious-spear.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233779,
- "modifiedTime": 1709659528905,
+ "modifiedTime": 1715374626803,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!e7JpVX2549vp9mgF"
diff --git a/packs/_source/items/weapon/vicious-trident.json b/packs/_source/items/weapon/vicious-trident.json
index 77dc120159..7d250129cf 100644
--- a/packs/_source/items/weapon/vicious-trident.json
+++ b/packs/_source/items/weapon/vicious-trident.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233669,
- "modifiedTime": 1709659527643,
+ "modifiedTime": 1715374610201,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!TMqS62qjBCveT1Ss"
diff --git a/packs/_source/items/weapon/vicious-war-pick.json b/packs/_source/items/weapon/vicious-war-pick.json
index 5c0529b74c..b23a0646d2 100644
--- a/packs/_source/items/weapon/vicious-war-pick.json
+++ b/packs/_source/items/weapon/vicious-war-pick.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233802,
- "modifiedTime": 1709659529222,
+ "modifiedTime": 1715374631029,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!g8DG0jXlvfP3uTtZ"
diff --git a/packs/_source/items/weapon/vicious-warhammer.json b/packs/_source/items/weapon/vicious-warhammer.json
index 1724ad1f3e..7636e5e690 100644
--- a/packs/_source/items/weapon/vicious-warhammer.json
+++ b/packs/_source/items/weapon/vicious-warhammer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233566,
- "modifiedTime": 1709659526483,
+ "modifiedTime": 1715374594968,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HnJqfKkYXIWo2sp9"
diff --git a/packs/_source/items/weapon/vicious-whip.json b/packs/_source/items/weapon/vicious-whip.json
index 2e6e757326..2516d31738 100644
--- a/packs/_source/items/weapon/vicious-whip.json
+++ b/packs/_source/items/weapon/vicious-whip.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 350,
"denomination": "gp"
@@ -109,15 +112,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233850,
- "modifiedTime": 1709659530067,
+ "modifiedTime": 1715374640610,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!luTJgPXN5n0EN7iy"
diff --git a/packs/_source/items/weapon/vorpal-greatsword.json b/packs/_source/items/weapon/vorpal-greatsword.json
index 9edac2124c..d1face7587 100644
--- a/packs/_source/items/weapon/vorpal-greatsword.json
+++ b/packs/_source/items/weapon/vorpal-greatsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 6,
+ "weight": {
+ "value": 6,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233452,
- "modifiedTime": 1709659524911,
+ "modifiedTime": 1715374573574,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!3FNyS6DeCBZzFbqU"
diff --git a/packs/_source/items/weapon/vorpal-longsword.json b/packs/_source/items/weapon/vorpal-longsword.json
index 6eb8c3f382..851cf652eb 100644
--- a/packs/_source/items/weapon/vorpal-longsword.json
+++ b/packs/_source/items/weapon/vorpal-longsword.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233567,
- "modifiedTime": 1709659526508,
+ "modifiedTime": 1715374595080,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!HokQ1loVJTFxt27u"
diff --git a/packs/_source/items/weapon/vorpal-scimitar.json b/packs/_source/items/weapon/vorpal-scimitar.json
index 671743c73a..3cfbca1f30 100644
--- a/packs/_source/items/weapon/vorpal-scimitar.json
+++ b/packs/_source/items/weapon/vorpal-scimitar.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 24000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233570,
- "modifiedTime": 1709659526585,
+ "modifiedTime": 1715374595609,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!I7cOsXsklWkzouHA"
diff --git a/packs/_source/items/weapon/wand.json b/packs/_source/items/weapon/wand.json
index 06ca34da6a..23feb55693 100644
--- a/packs/_source/items/weapon/wand.json
+++ b/packs/_source/items/weapon/wand.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233610,
- "modifiedTime": 1709659526708,
+ "modifiedTime": 1715374598249,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KA2P6I48iOWlnboO"
diff --git a/packs/_source/items/weapon/war-pick-1.json b/packs/_source/items/weapon/war-pick-1.json
index 2a6b72c8ab..976ef1a418 100644
--- a/packs/_source/items/weapon/war-pick-1.json
+++ b/packs/_source/items/weapon/war-pick-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233841,
- "modifiedTime": 1709659529917,
+ "modifiedTime": 1715374638785,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!l2T46xCqUbJvKE7A"
diff --git a/packs/_source/items/weapon/war-pick-2.json b/packs/_source/items/weapon/war-pick-2.json
index f4687ea3d4..f90d816f67 100644
--- a/packs/_source/items/weapon/war-pick-2.json
+++ b/packs/_source/items/weapon/war-pick-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233656,
- "modifiedTime": 1709659527405,
+ "modifiedTime": 1715374607850,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!RbC0UCqAnQcIPIXZ"
diff --git a/packs/_source/items/weapon/war-pick-3.json b/packs/_source/items/weapon/war-pick-3.json
index 3fc274cfea..f7e1a53203 100644
--- a/packs/_source/items/weapon/war-pick-3.json
+++ b/packs/_source/items/weapon/war-pick-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -108,14 +111,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233864,
- "modifiedTime": 1709659530366,
+ "modifiedTime": 1715374643742,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!nrvAo3TznyQrHS1t"
diff --git a/packs/_source/items/weapon/war-pick.json b/packs/_source/items/weapon/war-pick.json
index e4ed08940c..d4545e14f1 100644
--- a/packs/_source/items/weapon/war-pick.json
+++ b/packs/_source/items/weapon/war-pick.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -105,15 +108,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -124,10 +121,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233447,
- "modifiedTime": 1709659524859,
+ "modifiedTime": 1715374572646,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!2YdfjN1PIIrSHZii"
diff --git a/packs/_source/items/weapon/warhammer-1.json b/packs/_source/items/weapon/warhammer-1.json
index 2f3fecd018..d41906a93f 100644
--- a/packs/_source/items/weapon/warhammer-1.json
+++ b/packs/_source/items/weapon/warhammer-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233490,
- "modifiedTime": 1709659525422,
+ "modifiedTime": 1715374580960,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!8N1GqcdroUpmM9dS"
diff --git a/packs/_source/items/weapon/warhammer-2.json b/packs/_source/items/weapon/warhammer-2.json
index 70118e7a42..fa53a212ca 100644
--- a/packs/_source/items/weapon/warhammer-2.json
+++ b/packs/_source/items/weapon/warhammer-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233613,
- "modifiedTime": 1709659526760,
+ "modifiedTime": 1715374598879,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!KvIlZssYEtQ4bvSE"
diff --git a/packs/_source/items/weapon/warhammer-3.json b/packs/_source/items/weapon/warhammer-3.json
index 3435ea0848..ad9ad20d58 100644
--- a/packs/_source/items/weapon/warhammer-3.json
+++ b/packs/_source/items/weapon/warhammer-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -109,14 +112,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233899,
- "modifiedTime": 1709659531090,
+ "modifiedTime": 1715374650736,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!setcTdSZ09rmsqMn"
diff --git a/packs/_source/items/weapon/warhammer.json b/packs/_source/items/weapon/warhammer.json
index 9679936854..20df3de783 100644
--- a/packs/_source/items/weapon/warhammer.json
+++ b/packs/_source/items/weapon/warhammer.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 2,
+ "weight": {
+ "value": 2,
+ "units": "lb"
+ },
"price": {
"value": 15,
"denomination": "gp"
@@ -107,15 +110,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -126,10 +123,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233539,
- "modifiedTime": 1709659526048,
+ "modifiedTime": 1715374589974,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!F0Df164Xv1gWcYt0"
diff --git a/packs/_source/items/weapon/whip-1.json b/packs/_source/items/weapon/whip-1.json
index 003c5e95dc..bec08c1a88 100644
--- a/packs/_source/items/weapon/whip-1.json
+++ b/packs/_source/items/weapon/whip-1.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 1000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233848,
- "modifiedTime": 1709659530018,
+ "modifiedTime": 1715374640209,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!lcqqW2vGF6P8nJ77"
diff --git a/packs/_source/items/weapon/whip-2.json b/packs/_source/items/weapon/whip-2.json
index 38f4ee9a41..cad0fd3116 100644
--- a/packs/_source/items/weapon/whip-2.json
+++ b/packs/_source/items/weapon/whip-2.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 4000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233693,
- "modifiedTime": 1709659528017,
+ "modifiedTime": 1715374615144,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!WlPzuxaVnYzxzDEC"
diff --git a/packs/_source/items/weapon/whip-3.json b/packs/_source/items/weapon/whip-3.json
index 477ef76082..162b9b6fcc 100644
--- a/packs/_source/items/weapon/whip-3.json
+++ b/packs/_source/items/weapon/whip-3.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 16000,
"denomination": "gp"
@@ -110,14 +113,8 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- }
+ "summons": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -128,10 +125,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233830,
- "modifiedTime": 1709659529659,
+ "modifiedTime": 1715374636413,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!jcQqI0pxLD2nNNQ4"
diff --git a/packs/_source/items/weapon/whip.json b/packs/_source/items/weapon/whip.json
index 1b4521bb7d..f313753528 100644
--- a/packs/_source/items/weapon/whip.json
+++ b/packs/_source/items/weapon/whip.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 3,
+ "weight": {
+ "value": 3,
+ "units": "lb"
+ },
"price": {
"value": 2,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233649,
- "modifiedTime": 1709659527299,
+ "modifiedTime": 1715374606643,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!QKTyxoO0YDnAsbYe"
diff --git a/packs/_source/items/weapon/wooden-staff.json b/packs/_source/items/weapon/wooden-staff.json
index 5f7c281508..97909d83d7 100644
--- a/packs/_source/items/weapon/wooden-staff.json
+++ b/packs/_source/items/weapon/wooden-staff.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 4,
+ "weight": {
+ "value": 4,
+ "units": "lb"
+ },
"price": {
"value": 5,
"denomination": "gp"
@@ -108,15 +111,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -127,10 +124,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233543,
- "modifiedTime": 1709659526177,
+ "modifiedTime": 1715374590699,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!FF1ktpb2YSiyv896"
diff --git a/packs/_source/items/weapon/yew-wand.json b/packs/_source/items/weapon/yew-wand.json
index 330cc0cfc3..cb9271911f 100644
--- a/packs/_source/items/weapon/yew-wand.json
+++ b/packs/_source/items/weapon/yew-wand.json
@@ -15,7 +15,10 @@
"license": "CC-BY-4.0"
},
"quantity": 1,
- "weight": 1,
+ "weight": {
+ "value": 1,
+ "units": "lb"
+ },
"price": {
"value": 10,
"denomination": "gp"
@@ -102,15 +105,9 @@
"bonus": "",
"flat": false
},
- "summons": {
- "match": {
- "attacks": false,
- "proficiency": false,
- "saves": false
- },
- "profiles": []
- },
- "magicalBonus": null
+ "summons": null,
+ "magicalBonus": null,
+ "enchantment": null
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
@@ -121,10 +118,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.1.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233904,
- "modifiedTime": 1709659531197,
+ "modifiedTime": 1715374651663,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!t5yP0d7YaKwuKKiH"
diff --git a/packs/_source/monsters/humanoid/cult-fanatic.json b/packs/_source/monsters/humanoid/cult-fanatic.json
index 462230c42f..de8d7c6f74 100644
--- a/packs/_source/monsters/humanoid/cult-fanatic.json
+++ b/packs/_source/monsters/humanoid/cult-fanatic.json
@@ -1926,7 +1926,7 @@
"damage": {
"parts": [
[
- "floor(@item.level / 2)d8 + @mod",
+ "(floor(@item.level / 2))d8 + @mod",
"force"
]
],
@@ -1979,10 +1979,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "2.0.0",
- "coreVersion": "10.279",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": 1661787234115,
- "modifiedTime": 1661791116932,
+ "modifiedTime": 1713903765041,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!actors.items!tYfQIxCJT0WaaKmc.JbxsYXxSOTZbf9I0"
@@ -1997,10 +1997,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787233223,
- "modifiedTime": 1704847054445,
+ "modifiedTime": 1713903765041,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!actors!tYfQIxCJT0WaaKmc"
diff --git a/packs/_source/monsters/humanoid/priest.json b/packs/_source/monsters/humanoid/priest.json
index 482493a2b2..4ec4584d22 100644
--- a/packs/_source/monsters/humanoid/priest.json
+++ b/packs/_source/monsters/humanoid/priest.json
@@ -1585,7 +1585,7 @@
"damage": {
"parts": [
[
- "floor(@item.level / 2)d8 + @mod",
+ "(floor(@item.level / 2))d8 + @mod",
"force"
]
],
@@ -1638,10 +1638,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "2.0.0",
- "coreVersion": "10.279",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": 1661787234115,
- "modifiedTime": 1661791116514,
+ "modifiedTime": 1713903779111,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!actors.items!PVD5wRdyO7iCJPs1.JbxsYXxSOTZbf9I0"
@@ -2142,10 +2142,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787232808,
- "modifiedTime": 1704847047405,
+ "modifiedTime": 1713903779111,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!actors!PVD5wRdyO7iCJPs1"
diff --git a/packs/_source/monsters/summons/_folder.json b/packs/_source/monsters/summons/_folder.json
new file mode 100644
index 0000000000..4350a00989
--- /dev/null
+++ b/packs/_source/monsters/summons/_folder.json
@@ -0,0 +1,19 @@
+{
+ "name": "Summons",
+ "sorting": "a",
+ "folder": null,
+ "type": "Actor",
+ "_id": "89daM0oezivxN75Y",
+ "sort": 0,
+ "color": null,
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086228673,
+ "modifiedTime": 1712086228673,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!folders!89daM0oezivxN75Y"
+}
diff --git a/packs/_source/monsters/summons/arcane-eye.json b/packs/_source/monsters/summons/arcane-eye.json
new file mode 100644
index 0000000000..8e1f7dcce8
--- /dev/null
+++ b/packs/_source/monsters/summons/arcane-eye.json
@@ -0,0 +1,629 @@
+{
+ "folder": "89daM0oezivxN75Y",
+ "name": "Arcane Eye",
+ "type": "npc",
+ "_id": "tuHyePQ9GazMTyc0",
+ "img": null,
+ "system": {
+ "currency": {
+ "pp": 0,
+ "gp": 0,
+ "ep": 0,
+ "sp": 0,
+ "cp": 0
+ },
+ "abilities": {
+ "str": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "dex": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "con": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "int": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "wis": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "cha": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ }
+ },
+ "bonuses": {
+ "mwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "msak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rsak": {
+ "attack": "",
+ "damage": ""
+ },
+ "abilities": {
+ "check": "",
+ "save": "",
+ "skill": ""
+ },
+ "spell": {
+ "dc": ""
+ }
+ },
+ "skills": {
+ "acr": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ani": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "arc": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ath": {
+ "ability": "str",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "dec": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "his": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ins": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "itm": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "inv": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "med": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "nat": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prc": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prf": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "per": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "rel": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "slt": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ste": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "sur": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ }
+ },
+ "tools": {},
+ "spells": {
+ "spell1": {
+ "value": 0,
+ "override": null
+ },
+ "spell2": {
+ "value": 0,
+ "override": null
+ },
+ "spell3": {
+ "value": 0,
+ "override": null
+ },
+ "spell4": {
+ "value": 0,
+ "override": null
+ },
+ "spell5": {
+ "value": 0,
+ "override": null
+ },
+ "spell6": {
+ "value": 0,
+ "override": null
+ },
+ "spell7": {
+ "value": 0,
+ "override": null
+ },
+ "spell8": {
+ "value": 0,
+ "override": null
+ },
+ "spell9": {
+ "value": 0,
+ "override": null
+ },
+ "pact": {
+ "value": 0,
+ "override": null
+ }
+ },
+ "attributes": {
+ "init": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonus": ""
+ },
+ "movement": {
+ "burrow": null,
+ "climb": null,
+ "fly": 30,
+ "swim": null,
+ "walk": null,
+ "units": null,
+ "hover": true
+ },
+ "attunement": {
+ "max": 3
+ },
+ "senses": {
+ "darkvision": null,
+ "blindsight": null,
+ "tremorsense": null,
+ "truesight": null,
+ "units": null,
+ "special": ""
+ },
+ "spellcasting": "int",
+ "exhaustion": 0,
+ "concentration": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonuses": {
+ "save": ""
+ },
+ "limit": 1
+ },
+ "ac": {
+ "flat": 0,
+ "calc": "flat"
+ },
+ "hd": {
+ "spent": 0
+ },
+ "hp": {
+ "value": 0,
+ "max": 0,
+ "temp": 0,
+ "tempmax": 0,
+ "formula": ""
+ },
+ "death": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "success": 0,
+ "failure": 0
+ }
+ },
+ "details": {
+ "biography": {
+ "value": "",
+ "public": ""
+ },
+ "alignment": "",
+ "race": null,
+ "type": {},
+ "environment": "",
+ "cr": 0,
+ "spellLevel": 0,
+ "source": {}
+ },
+ "resources": {
+ "legact": {
+ "value": 0,
+ "max": 0
+ },
+ "legres": {
+ "value": 0,
+ "max": 0
+ },
+ "lair": {
+ "value": false,
+ "initiative": null
+ }
+ },
+ "traits": {
+ "size": "med",
+ "di": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dr": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dv": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dm": {
+ "amount": {},
+ "bypasses": []
+ },
+ "ci": {
+ "value": [],
+ "custom": ""
+ },
+ "languages": {
+ "value": [],
+ "custom": ""
+ }
+ }
+ },
+ "prototypeToken": {
+ "name": "Arcane Eye",
+ "displayName": 0,
+ "actorLink": false,
+ "appendNumber": false,
+ "prependAdjective": false,
+ "texture": {
+ "src": null,
+ "scaleX": 1,
+ "scaleY": 1,
+ "offsetX": 0,
+ "offsetY": 0,
+ "rotation": 0,
+ "tint": null
+ },
+ "width": 1,
+ "height": 1,
+ "lockRotation": false,
+ "rotation": 0,
+ "alpha": 1,
+ "disposition": -1,
+ "displayBars": 0,
+ "bar1": {
+ "attribute": "attributes.hp"
+ },
+ "bar2": {
+ "attribute": null
+ },
+ "light": {
+ "alpha": 0.5,
+ "angle": 360,
+ "bright": 0,
+ "coloration": 1,
+ "dim": 0,
+ "attenuation": 0.5,
+ "luminosity": 0.5,
+ "saturation": 0,
+ "contrast": 0,
+ "shadows": 0,
+ "animation": {
+ "type": null,
+ "speed": 5,
+ "intensity": 5,
+ "reverse": false
+ },
+ "darkness": {
+ "min": 0,
+ "max": 1
+ },
+ "color": null
+ },
+ "sight": {
+ "enabled": true,
+ "range": 30,
+ "angle": 360,
+ "visionMode": "basic",
+ "attenuation": 0.1,
+ "brightness": 0,
+ "saturation": 0,
+ "contrast": 0,
+ "color": null
+ },
+ "detectionModes": [],
+ "flags": {
+ "dnd5e": {
+ "tokenRing": {
+ "enabled": false,
+ "textures": {
+ "subject": ""
+ },
+ "scaleCorrection": 1,
+ "colors": {
+ "ring": "",
+ "background": ""
+ },
+ "effects": 1
+ }
+ }
+ },
+ "randomImg": false
+ },
+ "items": [],
+ "effects": [
+ {
+ "name": "Invisible",
+ "_id": "VUI3PxyI4LH2J8tm",
+ "icon": "systems/dnd5e/icons/svg/statuses/invisible.svg",
+ "statuses": [
+ "invisible"
+ ],
+ "description": "- An invisible creature is impossible to see without the aid of magic or a special sense. For the purpose of hiding, the creature is heavily obscured. The creature's location can be detected by any noise it makes or any tracks it leaves.
- Attack rolls against the creature have disadvantage, and the creature's attack rolls have advantage.
",
+ "changes": [],
+ "disabled": false,
+ "duration": {
+ "startTime": 0,
+ "seconds": null,
+ "combat": null,
+ "rounds": null,
+ "turns": null,
+ "startRound": null,
+ "startTurn": null
+ },
+ "origin": null,
+ "transfer": false,
+ "flags": {
+ "core": {
+ "sourceId": "Actor.eIQIKf1xngnKcRpg.ActiveEffect.dnd5einvisible00"
+ }
+ },
+ "_key": "!actors.effects!tuHyePQ9GazMTyc0.VUI3PxyI4LH2J8tm"
+ }
+ ],
+ "sort": 500000,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086234744,
+ "modifiedTime": 1714077048621,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors!tuHyePQ9GazMTyc0"
+}
diff --git a/packs/_source/monsters/summons/arcane-hand.json b/packs/_source/monsters/summons/arcane-hand.json
new file mode 100644
index 0000000000..f14926fadb
--- /dev/null
+++ b/packs/_source/monsters/summons/arcane-hand.json
@@ -0,0 +1,1010 @@
+{
+ "folder": "89daM0oezivxN75Y",
+ "name": "Arcane Hand",
+ "type": "npc",
+ "_id": "iHj5Tkm6HRgXuaWP",
+ "img": null,
+ "system": {
+ "currency": {
+ "pp": 0,
+ "gp": 0,
+ "ep": 0,
+ "sp": 0,
+ "cp": 0
+ },
+ "abilities": {
+ "str": {
+ "value": 26,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "dex": {
+ "value": 10,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "con": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "int": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "wis": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "cha": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ }
+ },
+ "bonuses": {
+ "mwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "msak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rsak": {
+ "attack": "",
+ "damage": ""
+ },
+ "abilities": {
+ "check": "",
+ "save": "",
+ "skill": ""
+ },
+ "spell": {
+ "dc": ""
+ }
+ },
+ "skills": {
+ "acr": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ani": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "arc": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ath": {
+ "ability": "str",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "dec": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "his": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ins": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "itm": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "inv": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "med": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "nat": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prc": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prf": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "per": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "rel": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "slt": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ste": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "sur": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ }
+ },
+ "tools": {},
+ "spells": {
+ "spell1": {
+ "value": 0,
+ "override": null
+ },
+ "spell2": {
+ "value": 0,
+ "override": null
+ },
+ "spell3": {
+ "value": 0,
+ "override": null
+ },
+ "spell4": {
+ "value": 0,
+ "override": null
+ },
+ "spell5": {
+ "value": 0,
+ "override": null
+ },
+ "spell6": {
+ "value": 0,
+ "override": null
+ },
+ "spell7": {
+ "value": 0,
+ "override": null
+ },
+ "spell8": {
+ "value": 0,
+ "override": null
+ },
+ "spell9": {
+ "value": 0,
+ "override": null
+ },
+ "pact": {
+ "value": 0,
+ "override": null
+ }
+ },
+ "attributes": {
+ "init": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonus": ""
+ },
+ "movement": {
+ "burrow": null,
+ "climb": null,
+ "fly": 60,
+ "swim": null,
+ "walk": null,
+ "units": null,
+ "hover": true
+ },
+ "attunement": {
+ "max": 3
+ },
+ "senses": {
+ "darkvision": null,
+ "blindsight": null,
+ "tremorsense": null,
+ "truesight": null,
+ "units": null,
+ "special": ""
+ },
+ "spellcasting": "int",
+ "exhaustion": 0,
+ "concentration": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonuses": {
+ "save": ""
+ },
+ "limit": 1
+ },
+ "ac": {
+ "flat": 20,
+ "calc": "flat"
+ },
+ "hd": {
+ "spent": 0
+ },
+ "hp": {
+ "value": 0,
+ "max": 0,
+ "temp": 0,
+ "tempmax": 0,
+ "formula": ""
+ },
+ "death": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "success": 0,
+ "failure": 0
+ }
+ },
+ "details": {
+ "biography": {
+ "value": "",
+ "public": ""
+ },
+ "alignment": "",
+ "race": null,
+ "type": {},
+ "environment": "",
+ "cr": 0,
+ "spellLevel": 0,
+ "source": {}
+ },
+ "resources": {
+ "legact": {
+ "value": 0,
+ "max": 0
+ },
+ "legres": {
+ "value": 0,
+ "max": 0
+ },
+ "lair": {
+ "value": false,
+ "initiative": null
+ }
+ },
+ "traits": {
+ "size": "lg",
+ "di": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dr": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dv": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dm": {
+ "amount": {},
+ "bypasses": []
+ },
+ "ci": {
+ "value": [],
+ "custom": ""
+ },
+ "languages": {
+ "value": [],
+ "custom": ""
+ }
+ }
+ },
+ "prototypeToken": {
+ "name": "Arcane Hand",
+ "displayName": 0,
+ "actorLink": false,
+ "appendNumber": false,
+ "prependAdjective": false,
+ "texture": {
+ "src": null,
+ "scaleX": 1,
+ "scaleY": 1,
+ "offsetX": 0,
+ "offsetY": 0,
+ "rotation": 0
+ },
+ "width": 2,
+ "height": 2,
+ "lockRotation": false,
+ "rotation": 0,
+ "alpha": 1,
+ "disposition": -1,
+ "displayBars": 0,
+ "bar1": {
+ "attribute": "attributes.hp"
+ },
+ "bar2": {
+ "attribute": null
+ },
+ "light": {
+ "alpha": 0.5,
+ "angle": 360,
+ "bright": 0,
+ "coloration": 1,
+ "dim": 0,
+ "attenuation": 0.5,
+ "luminosity": 0.5,
+ "saturation": 0,
+ "contrast": 0,
+ "shadows": 0,
+ "animation": {
+ "type": null,
+ "speed": 5,
+ "intensity": 5,
+ "reverse": false
+ },
+ "darkness": {
+ "min": 0,
+ "max": 1
+ }
+ },
+ "sight": {
+ "enabled": false,
+ "range": 0,
+ "angle": 360,
+ "visionMode": "basic",
+ "attenuation": 0.1,
+ "brightness": 0,
+ "saturation": 0,
+ "contrast": 0
+ },
+ "detectionModes": [],
+ "flags": {},
+ "randomImg": false
+ },
+ "items": [
+ {
+ "name": "Clenched Fist",
+ "type": "weapon",
+ "system": {
+ "type": {
+ "value": "natural",
+ "baseItem": ""
+ },
+ "description": {
+ "value": "The hand strikes one creature or object within 5 feet of it. Make a melee spell Attack for the hand using your game Statistics. On a hit, the target takes 4d8 force damage.
",
+ "chat": ""
+ },
+ "source": {},
+ "identified": true,
+ "unidentified": {
+ "description": ""
+ },
+ "container": null,
+ "quantity": 1,
+ "weight": 0,
+ "price": {
+ "value": 0,
+ "denomination": "gp"
+ },
+ "rarity": "",
+ "attunement": 0,
+ "equipped": true,
+ "activation": {
+ "type": "bonus",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": 1,
+ "width": null,
+ "units": "",
+ "type": "creatureOrObject",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ },
+ "ability": "",
+ "actionType": "msak",
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "chatFlavor": "",
+ "critical": {
+ "threshold": null,
+ "damage": ""
+ },
+ "damage": {
+ "parts": [
+ [
+ "(4 + 2 * (@flags.dnd5e.summon.level - 5))d8",
+ "force"
+ ]
+ ],
+ "versatile": ""
+ },
+ "formula": "",
+ "save": {
+ "ability": "",
+ "dc": null,
+ "scaling": "spell"
+ },
+ "summons": null,
+ "armor": {
+ "value": null
+ },
+ "hp": {
+ "value": null,
+ "max": null,
+ "dt": null,
+ "conditions": ""
+ },
+ "magicalBonus": null,
+ "properties": [],
+ "proficient": null
+ },
+ "_id": "flSMgvK8J2USFtGo",
+ "img": "systems/dnd5e/icons/svg/items/weapon.svg",
+ "effects": [],
+ "folder": null,
+ "sort": 0,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086481956,
+ "modifiedTime": 1712086570667,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors.items!iHj5Tkm6HRgXuaWP.flSMgvK8J2USFtGo"
+ },
+ {
+ "name": "Forceful Hand",
+ "type": "feat",
+ "system": {
+ "activation": {
+ "type": "bonus",
+ "cost": null,
+ "condition": ""
+ },
+ "description": {
+ "value": "The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's [[/check strength]] contested by the [[/skill strength athletics]] check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your Spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.
",
+ "chat": ""
+ },
+ "source": {},
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": 1,
+ "width": null,
+ "units": "",
+ "type": "creature",
+ "prompt": true
+ },
+ "range": {
+ "value": 5,
+ "long": null,
+ "units": "ft"
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ },
+ "ability": "str",
+ "actionType": "abil",
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "chatFlavor": "",
+ "critical": {
+ "threshold": null,
+ "damage": ""
+ },
+ "damage": {
+ "parts": [],
+ "versatile": ""
+ },
+ "formula": "",
+ "save": {
+ "ability": "",
+ "dc": null,
+ "scaling": "spell"
+ },
+ "summons": null,
+ "type": {
+ "value": "monster",
+ "subtype": ""
+ },
+ "prerequisites": {
+ "level": null
+ },
+ "properties": [],
+ "requirements": "",
+ "recharge": {
+ "value": null,
+ "charged": false
+ }
+ },
+ "_id": "kKg1WU7qO2fLSB0e",
+ "img": "systems/dnd5e/icons/svg/items/feature.svg",
+ "effects": [],
+ "folder": null,
+ "sort": 0,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086582444,
+ "modifiedTime": 1712086650968,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors.items!iHj5Tkm6HRgXuaWP.kKg1WU7qO2fLSB0e"
+ },
+ {
+ "name": "Grasping Hand",
+ "type": "feat",
+ "system": {
+ "activation": {
+ "type": "bonus",
+ "cost": null,
+ "condition": ""
+ },
+ "description": {
+ "value": "The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is Grappling the target, you can use a Bonus Action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your Spellcasting ability modifier.
",
+ "chat": ""
+ },
+ "source": {},
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": 1,
+ "width": null,
+ "units": "",
+ "type": "creature",
+ "prompt": true
+ },
+ "range": {
+ "value": 5,
+ "long": null,
+ "units": "ft"
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ },
+ "ability": "",
+ "actionType": "other",
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "chatFlavor": "",
+ "critical": {
+ "threshold": null,
+ "damage": ""
+ },
+ "damage": {
+ "parts": [
+ [
+ "(2 + 2 * (@flags.dnd5e.summon.level - 5))d6",
+ "bludgeoning"
+ ]
+ ],
+ "versatile": ""
+ },
+ "formula": "",
+ "save": {
+ "ability": "",
+ "dc": null,
+ "scaling": "spell"
+ },
+ "summons": null,
+ "type": {
+ "value": "monster",
+ "subtype": ""
+ },
+ "prerequisites": {
+ "level": null
+ },
+ "properties": [],
+ "requirements": "",
+ "recharge": {
+ "value": null,
+ "charged": false
+ }
+ },
+ "_id": "rne03sCadusyP3Yg",
+ "img": "systems/dnd5e/icons/svg/items/feature.svg",
+ "effects": [],
+ "folder": null,
+ "sort": 0,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086583134,
+ "modifiedTime": 1712086787357,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors.items!iHj5Tkm6HRgXuaWP.rne03sCadusyP3Yg"
+ },
+ {
+ "name": "Interposing Hand",
+ "type": "feat",
+ "system": {
+ "activation": {
+ "type": "bonus",
+ "cost": null,
+ "condition": ""
+ },
+ "description": {
+ "value": "The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.
",
+ "chat": ""
+ },
+ "source": {},
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": 1,
+ "width": null,
+ "units": "",
+ "type": "creature",
+ "prompt": true
+ },
+ "range": {
+ "value": null,
+ "long": null,
+ "units": ""
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ },
+ "ability": null,
+ "actionType": "",
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "chatFlavor": "",
+ "critical": {
+ "threshold": null,
+ "damage": ""
+ },
+ "damage": {
+ "parts": [],
+ "versatile": ""
+ },
+ "formula": "",
+ "save": {
+ "ability": "",
+ "dc": null,
+ "scaling": "spell"
+ },
+ "summons": null,
+ "type": {
+ "value": "monster",
+ "subtype": ""
+ },
+ "prerequisites": {
+ "level": null
+ },
+ "properties": [],
+ "requirements": "",
+ "recharge": {
+ "value": null,
+ "charged": false
+ }
+ },
+ "_id": "vgK74YR1Lv2WrGCx",
+ "img": "systems/dnd5e/icons/svg/items/feature.svg",
+ "effects": [],
+ "folder": null,
+ "sort": 0,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086583316,
+ "modifiedTime": 1712086823286,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors.items!iHj5Tkm6HRgXuaWP.vgK74YR1Lv2WrGCx"
+ }
+ ],
+ "effects": [],
+ "sort": 400000,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086409403,
+ "modifiedTime": 1714077048621,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors!iHj5Tkm6HRgXuaWP"
+}
diff --git a/packs/_source/monsters/summons/arcane-sword.json b/packs/_source/monsters/summons/arcane-sword.json
new file mode 100644
index 0000000000..9034f78292
--- /dev/null
+++ b/packs/_source/monsters/summons/arcane-sword.json
@@ -0,0 +1,705 @@
+{
+ "folder": "89daM0oezivxN75Y",
+ "name": "Arcane Sword",
+ "type": "npc",
+ "_id": "Tac7eq0AXJco0nml",
+ "img": null,
+ "system": {
+ "currency": {
+ "pp": 0,
+ "gp": 0,
+ "ep": 0,
+ "sp": 0,
+ "cp": 0
+ },
+ "abilities": {
+ "str": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "dex": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "con": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "int": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "wis": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "cha": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ }
+ },
+ "bonuses": {
+ "mwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "msak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rsak": {
+ "attack": "",
+ "damage": ""
+ },
+ "abilities": {
+ "check": "",
+ "save": "",
+ "skill": ""
+ },
+ "spell": {
+ "dc": ""
+ }
+ },
+ "skills": {
+ "acr": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ani": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "arc": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ath": {
+ "ability": "str",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "dec": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "his": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ins": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "itm": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "inv": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "med": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "nat": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prc": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prf": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "per": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "rel": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "slt": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ste": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "sur": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ }
+ },
+ "tools": {},
+ "spells": {
+ "spell1": {
+ "value": 0,
+ "override": null
+ },
+ "spell2": {
+ "value": 0,
+ "override": null
+ },
+ "spell3": {
+ "value": 0,
+ "override": null
+ },
+ "spell4": {
+ "value": 0,
+ "override": null
+ },
+ "spell5": {
+ "value": 0,
+ "override": null
+ },
+ "spell6": {
+ "value": 0,
+ "override": null
+ },
+ "spell7": {
+ "value": 0,
+ "override": null
+ },
+ "spell8": {
+ "value": 0,
+ "override": null
+ },
+ "spell9": {
+ "value": 0,
+ "override": null
+ },
+ "pact": {
+ "value": 0,
+ "override": null
+ }
+ },
+ "attributes": {
+ "init": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonus": ""
+ },
+ "movement": {
+ "burrow": null,
+ "climb": null,
+ "fly": 20,
+ "swim": null,
+ "walk": null,
+ "units": null,
+ "hover": true
+ },
+ "attunement": {
+ "max": 3
+ },
+ "senses": {
+ "darkvision": null,
+ "blindsight": null,
+ "tremorsense": null,
+ "truesight": null,
+ "units": null,
+ "special": ""
+ },
+ "spellcasting": "int",
+ "exhaustion": 0,
+ "concentration": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonuses": {
+ "save": ""
+ },
+ "limit": 1
+ },
+ "ac": {
+ "flat": 0,
+ "calc": "flat"
+ },
+ "hd": {
+ "spent": 0
+ },
+ "hp": {
+ "value": 0,
+ "max": 0,
+ "temp": 0,
+ "tempmax": 0,
+ "formula": ""
+ },
+ "death": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "success": 0,
+ "failure": 0
+ }
+ },
+ "details": {
+ "biography": {
+ "value": "",
+ "public": ""
+ },
+ "alignment": "",
+ "race": null,
+ "type": {},
+ "environment": "",
+ "cr": 0,
+ "spellLevel": 0,
+ "source": {}
+ },
+ "resources": {
+ "legact": {
+ "value": 0,
+ "max": 0
+ },
+ "legres": {
+ "value": 0,
+ "max": 0
+ },
+ "lair": {
+ "value": false,
+ "initiative": null
+ }
+ },
+ "traits": {
+ "size": "med",
+ "di": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dr": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dv": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dm": {
+ "amount": {},
+ "bypasses": []
+ },
+ "ci": {
+ "value": [],
+ "custom": ""
+ },
+ "languages": {
+ "value": [],
+ "custom": ""
+ }
+ }
+ },
+ "prototypeToken": {
+ "name": "Acane Sword",
+ "displayName": 0,
+ "actorLink": false,
+ "appendNumber": false,
+ "prependAdjective": false,
+ "texture": {
+ "src": null,
+ "scaleX": 1,
+ "scaleY": 1,
+ "offsetX": 0,
+ "offsetY": 0,
+ "rotation": 0
+ },
+ "width": 1,
+ "height": 1,
+ "lockRotation": false,
+ "rotation": 0,
+ "alpha": 1,
+ "disposition": -1,
+ "displayBars": 0,
+ "bar1": {
+ "attribute": "attributes.hp"
+ },
+ "bar2": {
+ "attribute": null
+ },
+ "light": {
+ "alpha": 0.5,
+ "angle": 360,
+ "bright": 0,
+ "coloration": 1,
+ "dim": 0,
+ "attenuation": 0.5,
+ "luminosity": 0.5,
+ "saturation": 0,
+ "contrast": 0,
+ "shadows": 0,
+ "animation": {
+ "type": null,
+ "speed": 5,
+ "intensity": 5,
+ "reverse": false
+ },
+ "darkness": {
+ "min": 0,
+ "max": 1
+ }
+ },
+ "sight": {
+ "enabled": false,
+ "range": 0,
+ "angle": 360,
+ "visionMode": "basic",
+ "attenuation": 0.1,
+ "brightness": 0,
+ "saturation": 0,
+ "contrast": 0
+ },
+ "detectionModes": [],
+ "flags": {},
+ "randomImg": false
+ },
+ "items": [
+ {
+ "name": "Attack",
+ "type": "weapon",
+ "system": {
+ "type": {
+ "value": "natural",
+ "baseItem": ""
+ },
+ "description": {
+ "value": "",
+ "chat": ""
+ },
+ "source": {},
+ "identified": true,
+ "unidentified": {
+ "description": ""
+ },
+ "container": null,
+ "quantity": 1,
+ "weight": 0,
+ "price": {
+ "value": 0,
+ "denomination": "gp"
+ },
+ "rarity": "",
+ "attunement": 0,
+ "equipped": true,
+ "activation": {
+ "type": "bonus",
+ "cost": null,
+ "condition": ""
+ },
+ "duration": {
+ "value": "",
+ "units": ""
+ },
+ "cover": null,
+ "crewed": false,
+ "target": {
+ "value": 1,
+ "width": null,
+ "units": "",
+ "type": "any",
+ "prompt": true
+ },
+ "range": {
+ "value": 5,
+ "long": null,
+ "units": "ft"
+ },
+ "uses": {
+ "value": null,
+ "max": "",
+ "per": null,
+ "recovery": "",
+ "prompt": true
+ },
+ "consume": {
+ "type": "",
+ "target": null,
+ "amount": null,
+ "scale": false
+ },
+ "ability": "",
+ "actionType": "msak",
+ "attack": {
+ "bonus": "",
+ "flat": false
+ },
+ "chatFlavor": "",
+ "critical": {
+ "threshold": null,
+ "damage": ""
+ },
+ "damage": {
+ "parts": [
+ [
+ "3d10",
+ "force"
+ ]
+ ],
+ "versatile": ""
+ },
+ "formula": "",
+ "save": {
+ "ability": "",
+ "dc": null,
+ "scaling": "spell"
+ },
+ "summons": null,
+ "armor": {
+ "value": null
+ },
+ "hp": {
+ "value": null,
+ "max": null,
+ "dt": null,
+ "conditions": ""
+ },
+ "magicalBonus": null,
+ "properties": [],
+ "proficient": null
+ },
+ "_id": "znq8nSm5Xeej3juY",
+ "img": "icons/weapons/swords/sword-flanged-lightning.webp",
+ "effects": [],
+ "folder": null,
+ "sort": 0,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712087042876,
+ "modifiedTime": 1712087104960,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors.items!Tac7eq0AXJco0nml.znq8nSm5Xeej3juY"
+ }
+ ],
+ "effects": [],
+ "sort": 200000,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712086414546,
+ "modifiedTime": 1714077048621,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors!Tac7eq0AXJco0nml"
+}
diff --git a/packs/_source/monsters/summons/dancing-lights-medium.json b/packs/_source/monsters/summons/dancing-lights-medium.json
new file mode 100644
index 0000000000..b0bc051de4
--- /dev/null
+++ b/packs/_source/monsters/summons/dancing-lights-medium.json
@@ -0,0 +1,600 @@
+{
+ "folder": "89daM0oezivxN75Y",
+ "name": "Dancing Lights (medium)",
+ "type": "npc",
+ "img": "",
+ "system": {
+ "currency": {
+ "pp": 0,
+ "gp": 0,
+ "ep": 0,
+ "sp": 0,
+ "cp": 0
+ },
+ "abilities": {
+ "str": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "dex": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "con": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "int": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "wis": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "cha": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ }
+ },
+ "bonuses": {
+ "mwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "msak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rsak": {
+ "attack": "",
+ "damage": ""
+ },
+ "abilities": {
+ "check": "",
+ "save": "",
+ "skill": ""
+ },
+ "spell": {
+ "dc": ""
+ }
+ },
+ "skills": {
+ "acr": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ani": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "arc": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ath": {
+ "ability": "str",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "dec": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "his": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ins": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "itm": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "inv": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "med": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "nat": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prc": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prf": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "per": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "rel": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "slt": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ste": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "sur": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ }
+ },
+ "tools": {},
+ "spells": {
+ "spell1": {
+ "value": 0,
+ "override": null
+ },
+ "spell2": {
+ "value": 0,
+ "override": null
+ },
+ "spell3": {
+ "value": 0,
+ "override": null
+ },
+ "spell4": {
+ "value": 0,
+ "override": null
+ },
+ "spell5": {
+ "value": 0,
+ "override": null
+ },
+ "spell6": {
+ "value": 0,
+ "override": null
+ },
+ "spell7": {
+ "value": 0,
+ "override": null
+ },
+ "spell8": {
+ "value": 0,
+ "override": null
+ },
+ "spell9": {
+ "value": 0,
+ "override": null
+ },
+ "pact": {
+ "value": 0,
+ "override": null
+ }
+ },
+ "attributes": {
+ "init": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonus": ""
+ },
+ "movement": {
+ "burrow": null,
+ "climb": null,
+ "fly": 60,
+ "swim": null,
+ "walk": null,
+ "units": null,
+ "hover": true
+ },
+ "attunement": {
+ "max": 3
+ },
+ "senses": {
+ "darkvision": null,
+ "blindsight": null,
+ "tremorsense": null,
+ "truesight": null,
+ "units": null,
+ "special": ""
+ },
+ "spellcasting": "int",
+ "exhaustion": 0,
+ "concentration": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonuses": {
+ "save": ""
+ },
+ "limit": 1
+ },
+ "ac": {
+ "flat": 0,
+ "calc": "flat"
+ },
+ "hd": {
+ "spent": 0
+ },
+ "hp": {
+ "value": 0,
+ "max": 0,
+ "temp": 0,
+ "tempmax": 0,
+ "formula": ""
+ },
+ "death": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "success": 0,
+ "failure": 0
+ }
+ },
+ "details": {
+ "biography": {
+ "value": "",
+ "public": ""
+ },
+ "alignment": "",
+ "race": null,
+ "type": {},
+ "environment": "",
+ "cr": 0,
+ "spellLevel": 0,
+ "source": {}
+ },
+ "resources": {
+ "legact": {
+ "value": 0,
+ "max": 0
+ },
+ "legres": {
+ "value": 0,
+ "max": 0
+ },
+ "lair": {
+ "value": false,
+ "initiative": null
+ }
+ },
+ "traits": {
+ "size": "med",
+ "di": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dr": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dv": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dm": {
+ "amount": {},
+ "bypasses": []
+ },
+ "ci": {
+ "value": [],
+ "custom": ""
+ },
+ "languages": {
+ "value": [],
+ "custom": ""
+ }
+ }
+ },
+ "prototypeToken": {
+ "name": "Dancing Lights",
+ "displayName": 0,
+ "actorLink": false,
+ "appendNumber": false,
+ "prependAdjective": false,
+ "texture": {
+ "src": "",
+ "scaleX": 1,
+ "scaleY": 1,
+ "offsetX": 0,
+ "offsetY": 0,
+ "rotation": 0,
+ "tint": null
+ },
+ "width": 1,
+ "height": 1,
+ "lockRotation": false,
+ "rotation": 0,
+ "alpha": 1,
+ "disposition": -1,
+ "displayBars": 0,
+ "bar1": {
+ "attribute": "attributes.hp"
+ },
+ "bar2": {
+ "attribute": null
+ },
+ "light": {
+ "alpha": 0.5,
+ "angle": 360,
+ "bright": 0,
+ "coloration": 1,
+ "dim": 10,
+ "attenuation": 0.5,
+ "luminosity": 0.5,
+ "saturation": 0,
+ "contrast": 0,
+ "shadows": 0,
+ "animation": {
+ "type": null,
+ "speed": 5,
+ "intensity": 5,
+ "reverse": false
+ },
+ "darkness": {
+ "min": 0,
+ "max": 1
+ },
+ "color": null
+ },
+ "sight": {
+ "enabled": false,
+ "range": 0,
+ "angle": 360,
+ "visionMode": "basic",
+ "attenuation": 0.1,
+ "brightness": 0,
+ "saturation": 0,
+ "contrast": 0,
+ "color": null
+ },
+ "detectionModes": [],
+ "flags": {
+ "dnd5e": {
+ "tokenRing": {
+ "enabled": false,
+ "textures": {
+ "subject": ""
+ },
+ "scaleCorrection": 1,
+ "colors": {
+ "ring": "",
+ "background": ""
+ },
+ "effects": 1
+ }
+ }
+ },
+ "randomImg": false
+ },
+ "items": [],
+ "effects": [],
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1714076980309,
+ "modifiedTime": 1714077051730,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_id": "JNmHqTwkWayvkH37",
+ "sort": 300000,
+ "_key": "!actors!JNmHqTwkWayvkH37"
+}
diff --git a/packs/_source/monsters/summons/dancing-lights-tiny.json b/packs/_source/monsters/summons/dancing-lights-tiny.json
new file mode 100644
index 0000000000..8e99cc1cc7
--- /dev/null
+++ b/packs/_source/monsters/summons/dancing-lights-tiny.json
@@ -0,0 +1,600 @@
+{
+ "folder": "89daM0oezivxN75Y",
+ "name": "Dancing Lights (tiny)",
+ "type": "npc",
+ "_id": "UrXp9O9N7DvdH9nL",
+ "img": "",
+ "system": {
+ "currency": {
+ "pp": 0,
+ "gp": 0,
+ "ep": 0,
+ "sp": 0,
+ "cp": 0
+ },
+ "abilities": {
+ "str": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "dex": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "con": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "int": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "wis": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "cha": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ }
+ },
+ "bonuses": {
+ "mwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "msak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rsak": {
+ "attack": "",
+ "damage": ""
+ },
+ "abilities": {
+ "check": "",
+ "save": "",
+ "skill": ""
+ },
+ "spell": {
+ "dc": ""
+ }
+ },
+ "skills": {
+ "acr": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ani": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "arc": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ath": {
+ "ability": "str",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "dec": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "his": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ins": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "itm": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "inv": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "med": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "nat": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prc": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prf": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "per": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "rel": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "slt": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ste": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "sur": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ }
+ },
+ "tools": {},
+ "spells": {
+ "spell1": {
+ "value": 0,
+ "override": null
+ },
+ "spell2": {
+ "value": 0,
+ "override": null
+ },
+ "spell3": {
+ "value": 0,
+ "override": null
+ },
+ "spell4": {
+ "value": 0,
+ "override": null
+ },
+ "spell5": {
+ "value": 0,
+ "override": null
+ },
+ "spell6": {
+ "value": 0,
+ "override": null
+ },
+ "spell7": {
+ "value": 0,
+ "override": null
+ },
+ "spell8": {
+ "value": 0,
+ "override": null
+ },
+ "spell9": {
+ "value": 0,
+ "override": null
+ },
+ "pact": {
+ "value": 0,
+ "override": null
+ }
+ },
+ "attributes": {
+ "init": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonus": ""
+ },
+ "movement": {
+ "burrow": null,
+ "climb": null,
+ "fly": 60,
+ "swim": null,
+ "walk": null,
+ "units": null,
+ "hover": true
+ },
+ "attunement": {
+ "max": 3
+ },
+ "senses": {
+ "darkvision": null,
+ "blindsight": null,
+ "tremorsense": null,
+ "truesight": null,
+ "units": null,
+ "special": ""
+ },
+ "spellcasting": "int",
+ "exhaustion": 0,
+ "concentration": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonuses": {
+ "save": ""
+ },
+ "limit": 1
+ },
+ "ac": {
+ "flat": 0,
+ "calc": "flat"
+ },
+ "hd": {
+ "spent": 0
+ },
+ "hp": {
+ "value": 0,
+ "max": 0,
+ "temp": 0,
+ "tempmax": 0,
+ "formula": ""
+ },
+ "death": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "success": 0,
+ "failure": 0
+ }
+ },
+ "details": {
+ "biography": {
+ "value": "",
+ "public": ""
+ },
+ "alignment": "",
+ "race": null,
+ "type": {},
+ "environment": "",
+ "cr": 0,
+ "spellLevel": 0,
+ "source": {}
+ },
+ "resources": {
+ "legact": {
+ "value": 0,
+ "max": 0
+ },
+ "legres": {
+ "value": 0,
+ "max": 0
+ },
+ "lair": {
+ "value": false,
+ "initiative": null
+ }
+ },
+ "traits": {
+ "size": "tiny",
+ "di": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dr": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dv": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dm": {
+ "amount": {},
+ "bypasses": []
+ },
+ "ci": {
+ "value": [],
+ "custom": ""
+ },
+ "languages": {
+ "value": [],
+ "custom": ""
+ }
+ }
+ },
+ "prototypeToken": {
+ "name": "Dancing Lights",
+ "displayName": 0,
+ "actorLink": false,
+ "appendNumber": false,
+ "prependAdjective": false,
+ "texture": {
+ "src": "",
+ "scaleX": 1,
+ "scaleY": 1,
+ "offsetX": 0,
+ "offsetY": 0,
+ "rotation": 0,
+ "tint": null
+ },
+ "width": 0.5,
+ "height": 0.5,
+ "lockRotation": false,
+ "rotation": 0,
+ "alpha": 1,
+ "disposition": -1,
+ "displayBars": 0,
+ "bar1": {
+ "attribute": "attributes.hp"
+ },
+ "bar2": {
+ "attribute": null
+ },
+ "light": {
+ "alpha": 0.5,
+ "angle": 360,
+ "bright": 0,
+ "coloration": 1,
+ "dim": 10,
+ "attenuation": 0.5,
+ "luminosity": 0.5,
+ "saturation": 0,
+ "contrast": 0,
+ "shadows": 0,
+ "animation": {
+ "type": null,
+ "speed": 5,
+ "intensity": 5,
+ "reverse": false
+ },
+ "darkness": {
+ "min": 0,
+ "max": 1
+ },
+ "color": null
+ },
+ "sight": {
+ "enabled": false,
+ "range": 0,
+ "angle": 360,
+ "visionMode": "basic",
+ "attenuation": 0.1,
+ "brightness": 0,
+ "saturation": 0,
+ "contrast": 0,
+ "color": null
+ },
+ "detectionModes": [],
+ "flags": {
+ "dnd5e": {
+ "tokenRing": {
+ "enabled": false,
+ "textures": {
+ "subject": ""
+ },
+ "scaleCorrection": 1,
+ "colors": {
+ "ring": "",
+ "background": ""
+ },
+ "effects": 1
+ }
+ }
+ },
+ "randomImg": false
+ },
+ "items": [],
+ "effects": [],
+ "sort": 700000,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1714076980309,
+ "modifiedTime": 1714077054767,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors!UrXp9O9N7DvdH9nL"
+}
diff --git a/packs/_source/monsters/summons/mage-hand.json b/packs/_source/monsters/summons/mage-hand.json
new file mode 100644
index 0000000000..ec32de6232
--- /dev/null
+++ b/packs/_source/monsters/summons/mage-hand.json
@@ -0,0 +1,582 @@
+{
+ "folder": "89daM0oezivxN75Y",
+ "name": "Mage Hand",
+ "type": "npc",
+ "_id": "zwT2WjWo7cTm2631",
+ "img": null,
+ "system": {
+ "currency": {
+ "pp": 0,
+ "gp": 0,
+ "ep": 0,
+ "sp": 0,
+ "cp": 0
+ },
+ "abilities": {
+ "str": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "dex": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "con": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "int": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "wis": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "cha": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ }
+ },
+ "bonuses": {
+ "mwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "msak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rsak": {
+ "attack": "",
+ "damage": ""
+ },
+ "abilities": {
+ "check": "",
+ "save": "",
+ "skill": ""
+ },
+ "spell": {
+ "dc": ""
+ }
+ },
+ "skills": {
+ "acr": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ani": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "arc": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ath": {
+ "ability": "str",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "dec": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "his": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ins": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "itm": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "inv": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "med": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "nat": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prc": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prf": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "per": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "rel": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "slt": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ste": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "sur": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ }
+ },
+ "tools": {},
+ "spells": {
+ "spell1": {
+ "value": 0,
+ "override": null
+ },
+ "spell2": {
+ "value": 0,
+ "override": null
+ },
+ "spell3": {
+ "value": 0,
+ "override": null
+ },
+ "spell4": {
+ "value": 0,
+ "override": null
+ },
+ "spell5": {
+ "value": 0,
+ "override": null
+ },
+ "spell6": {
+ "value": 0,
+ "override": null
+ },
+ "spell7": {
+ "value": 0,
+ "override": null
+ },
+ "spell8": {
+ "value": 0,
+ "override": null
+ },
+ "spell9": {
+ "value": 0,
+ "override": null
+ },
+ "pact": {
+ "value": 0,
+ "override": null
+ }
+ },
+ "attributes": {
+ "init": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonus": ""
+ },
+ "movement": {
+ "burrow": null,
+ "climb": null,
+ "fly": 30,
+ "swim": null,
+ "walk": null,
+ "units": null,
+ "hover": true
+ },
+ "attunement": {
+ "max": 3
+ },
+ "senses": {
+ "darkvision": null,
+ "blindsight": null,
+ "tremorsense": null,
+ "truesight": null,
+ "units": null,
+ "special": ""
+ },
+ "spellcasting": "int",
+ "exhaustion": 0,
+ "concentration": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonuses": {
+ "save": ""
+ },
+ "limit": 1
+ },
+ "ac": {
+ "flat": 0,
+ "calc": "flat"
+ },
+ "hd": {
+ "spent": 0
+ },
+ "hp": {
+ "value": 0,
+ "max": 0,
+ "temp": 0,
+ "tempmax": 0,
+ "formula": ""
+ },
+ "death": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "success": 0,
+ "failure": 0
+ }
+ },
+ "details": {
+ "biography": {
+ "value": "",
+ "public": ""
+ },
+ "alignment": "",
+ "race": null,
+ "type": {},
+ "environment": "",
+ "cr": 0,
+ "spellLevel": 0,
+ "source": {}
+ },
+ "resources": {
+ "legact": {
+ "value": 0,
+ "max": 0
+ },
+ "legres": {
+ "value": 0,
+ "max": 0
+ },
+ "lair": {
+ "value": false,
+ "initiative": null
+ }
+ },
+ "traits": {
+ "size": "med",
+ "di": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dr": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dv": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dm": {
+ "amount": {},
+ "bypasses": []
+ },
+ "ci": {
+ "value": [],
+ "custom": ""
+ },
+ "languages": {
+ "value": [],
+ "custom": ""
+ }
+ }
+ },
+ "prototypeToken": {
+ "name": "Mage Hand",
+ "displayName": 0,
+ "actorLink": false,
+ "appendNumber": false,
+ "prependAdjective": false,
+ "texture": {
+ "src": null,
+ "scaleX": 1,
+ "scaleY": 1,
+ "offsetX": 0,
+ "offsetY": 0,
+ "rotation": 0
+ },
+ "width": 1,
+ "height": 1,
+ "lockRotation": false,
+ "rotation": 0,
+ "alpha": 1,
+ "disposition": -1,
+ "displayBars": 0,
+ "bar1": {
+ "attribute": "attributes.hp"
+ },
+ "bar2": {
+ "attribute": null
+ },
+ "light": {
+ "alpha": 0.5,
+ "angle": 360,
+ "bright": 0,
+ "coloration": 1,
+ "dim": 0,
+ "attenuation": 0.5,
+ "luminosity": 0.5,
+ "saturation": 0,
+ "contrast": 0,
+ "shadows": 0,
+ "animation": {
+ "type": null,
+ "speed": 5,
+ "intensity": 5,
+ "reverse": false
+ },
+ "darkness": {
+ "min": 0,
+ "max": 1
+ }
+ },
+ "sight": {
+ "enabled": false,
+ "range": 0,
+ "angle": 360,
+ "visionMode": "basic",
+ "attenuation": 0.1,
+ "brightness": 0,
+ "saturation": 0,
+ "contrast": 0
+ },
+ "detectionModes": [],
+ "flags": {},
+ "randomImg": false
+ },
+ "items": [],
+ "effects": [],
+ "sort": 600000,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712088725222,
+ "modifiedTime": 1714077048621,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors!zwT2WjWo7cTm2631"
+}
diff --git a/packs/_source/monsters/summons/unseen-servant.json b/packs/_source/monsters/summons/unseen-servant.json
new file mode 100644
index 0000000000..83904dd9a7
--- /dev/null
+++ b/packs/_source/monsters/summons/unseen-servant.json
@@ -0,0 +1,611 @@
+{
+ "folder": "89daM0oezivxN75Y",
+ "name": "Unseen Servant",
+ "type": "npc",
+ "_id": "BTQz2q4JJVQn8W5W",
+ "img": null,
+ "system": {
+ "currency": {
+ "pp": 0,
+ "gp": 0,
+ "ep": 0,
+ "sp": 0,
+ "cp": 0
+ },
+ "abilities": {
+ "str": {
+ "value": 2,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "dex": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "con": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "int": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "wis": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ },
+ "cha": {
+ "value": 0,
+ "proficient": 0,
+ "max": null,
+ "bonuses": {
+ "check": "",
+ "save": ""
+ }
+ }
+ },
+ "bonuses": {
+ "mwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rwak": {
+ "attack": "",
+ "damage": ""
+ },
+ "msak": {
+ "attack": "",
+ "damage": ""
+ },
+ "rsak": {
+ "attack": "",
+ "damage": ""
+ },
+ "abilities": {
+ "check": "",
+ "save": "",
+ "skill": ""
+ },
+ "spell": {
+ "dc": ""
+ }
+ },
+ "skills": {
+ "acr": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ani": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "arc": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ath": {
+ "ability": "str",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "dec": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "his": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ins": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "itm": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "inv": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "med": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "nat": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prc": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "prf": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "per": {
+ "ability": "cha",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "rel": {
+ "ability": "int",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "slt": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "ste": {
+ "ability": "dex",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ },
+ "sur": {
+ "ability": "wis",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "value": 0,
+ "bonuses": {
+ "check": "",
+ "passive": ""
+ }
+ }
+ },
+ "tools": {},
+ "spells": {
+ "spell1": {
+ "value": 0,
+ "override": null
+ },
+ "spell2": {
+ "value": 0,
+ "override": null
+ },
+ "spell3": {
+ "value": 0,
+ "override": null
+ },
+ "spell4": {
+ "value": 0,
+ "override": null
+ },
+ "spell5": {
+ "value": 0,
+ "override": null
+ },
+ "spell6": {
+ "value": 0,
+ "override": null
+ },
+ "spell7": {
+ "value": 0,
+ "override": null
+ },
+ "spell8": {
+ "value": 0,
+ "override": null
+ },
+ "spell9": {
+ "value": 0,
+ "override": null
+ },
+ "pact": {
+ "value": 0,
+ "override": null
+ }
+ },
+ "attributes": {
+ "init": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonus": ""
+ },
+ "movement": {
+ "burrow": null,
+ "climb": null,
+ "fly": null,
+ "swim": null,
+ "walk": 15,
+ "units": null,
+ "hover": false
+ },
+ "attunement": {
+ "max": 3
+ },
+ "senses": {
+ "darkvision": null,
+ "blindsight": null,
+ "tremorsense": null,
+ "truesight": null,
+ "units": null,
+ "special": ""
+ },
+ "spellcasting": "int",
+ "exhaustion": 0,
+ "concentration": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "bonuses": {
+ "save": ""
+ },
+ "limit": 1
+ },
+ "ac": {
+ "flat": 10,
+ "calc": "flat"
+ },
+ "hd": {
+ "spent": 0
+ },
+ "hp": {
+ "value": 1,
+ "max": 1,
+ "temp": 0,
+ "tempmax": 0,
+ "formula": ""
+ },
+ "death": {
+ "ability": "",
+ "roll": {
+ "min": null,
+ "max": null,
+ "mode": 0
+ },
+ "success": 0,
+ "failure": 0
+ }
+ },
+ "details": {
+ "biography": {
+ "value": "",
+ "public": ""
+ },
+ "alignment": "",
+ "race": null,
+ "type": {},
+ "environment": "",
+ "cr": 0,
+ "spellLevel": 0,
+ "source": {}
+ },
+ "resources": {
+ "legact": {
+ "value": 0,
+ "max": 0
+ },
+ "legres": {
+ "value": 0,
+ "max": 0
+ },
+ "lair": {
+ "value": false,
+ "initiative": null
+ }
+ },
+ "traits": {
+ "size": "med",
+ "di": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dr": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dv": {
+ "bypasses": [],
+ "value": [],
+ "custom": ""
+ },
+ "dm": {
+ "amount": {},
+ "bypasses": []
+ },
+ "ci": {
+ "value": [],
+ "custom": ""
+ },
+ "languages": {
+ "value": [],
+ "custom": ""
+ }
+ }
+ },
+ "prototypeToken": {
+ "name": "Unseen Servant",
+ "displayName": 0,
+ "actorLink": false,
+ "appendNumber": false,
+ "prependAdjective": false,
+ "texture": {
+ "src": null,
+ "scaleX": 1,
+ "scaleY": 1,
+ "offsetX": 0,
+ "offsetY": 0,
+ "rotation": 0
+ },
+ "width": 1,
+ "height": 1,
+ "lockRotation": false,
+ "rotation": 0,
+ "alpha": 1,
+ "disposition": -1,
+ "displayBars": 0,
+ "bar1": {
+ "attribute": "attributes.hp"
+ },
+ "bar2": {
+ "attribute": null
+ },
+ "light": {
+ "alpha": 0.5,
+ "angle": 360,
+ "bright": 0,
+ "coloration": 1,
+ "dim": 0,
+ "attenuation": 0.5,
+ "luminosity": 0.5,
+ "saturation": 0,
+ "contrast": 0,
+ "shadows": 0,
+ "animation": {
+ "type": null,
+ "speed": 5,
+ "intensity": 5,
+ "reverse": false
+ },
+ "darkness": {
+ "min": 0,
+ "max": 1
+ }
+ },
+ "sight": {
+ "enabled": false,
+ "range": 0,
+ "angle": 360,
+ "visionMode": "basic",
+ "attenuation": 0.1,
+ "brightness": 0,
+ "saturation": 0,
+ "contrast": 0
+ },
+ "detectionModes": [],
+ "flags": {},
+ "randomImg": false
+ },
+ "items": [],
+ "effects": [
+ {
+ "name": "Invisible",
+ "_id": "huO2iAgLJJHGXWix",
+ "icon": "systems/dnd5e/icons/svg/statuses/invisible.svg",
+ "statuses": [
+ "invisible"
+ ],
+ "description": "- An invisible creature is impossible to see without the aid of magic or a special sense. For the purpose of hiding, the creature is heavily obscured. The creature's location can be detected by any noise it makes or any tracks it leaves.
- Attack rolls against the creature have disadvantage, and the creature's attack rolls have advantage.
",
+ "changes": [],
+ "disabled": false,
+ "duration": {
+ "startTime": 0,
+ "seconds": null,
+ "combat": null,
+ "rounds": null,
+ "turns": null,
+ "startRound": null,
+ "startTurn": null
+ },
+ "origin": null,
+ "transfer": false,
+ "flags": {
+ "core": {
+ "sourceId": "Actor.eIQIKf1xngnKcRpg.ActiveEffect.dnd5einvisible00"
+ }
+ },
+ "_key": "!actors.effects!BTQz2q4JJVQn8W5W.huO2iAgLJJHGXWix"
+ }
+ ],
+ "sort": 100000,
+ "ownership": {
+ "default": 0
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1712088776020,
+ "modifiedTime": 1714077048621,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!actors!BTQz2q4JJVQn8W5W"
+}
diff --git a/packs/_source/monsters/undead/mummy-lord.json b/packs/_source/monsters/undead/mummy-lord.json
index e501a9f7b0..ae542c4e1c 100644
--- a/packs/_source/monsters/undead/mummy-lord.json
+++ b/packs/_source/monsters/undead/mummy-lord.json
@@ -69,7 +69,7 @@
"hp": {
"value": 97,
"max": 97,
- "temp": null,
+ "temp": 0,
"tempmax": 0,
"formula": "13d8 + 39"
},
@@ -2831,7 +2831,7 @@
"damage": {
"parts": [
[
- "floor(@item.level / 2)d8 + @mod",
+ "(floor(@item.level / 2))d8 + @mod",
"force"
]
],
@@ -2884,10 +2884,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "2.0.0",
- "coreVersion": "10.279",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": 1661787234115,
- "modifiedTime": 1661791116569,
+ "modifiedTime": 1713903749927,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!actors.items!UFW8M3JHzHkxUEGM.JbxsYXxSOTZbf9I0"
@@ -3751,10 +3751,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787232849,
- "modifiedTime": 1704847048406,
+ "modifiedTime": 1713903751812,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!actors!UFW8M3JHzHkxUEGM"
diff --git a/packs/_source/rules/appendix-e-rules.json b/packs/_source/rules/appendix-e-rules.json
index a450b2975e..32741f4e51 100644
--- a/packs/_source/rules/appendix-e-rules.json
+++ b/packs/_source/rules/appendix-e-rules.json
@@ -10830,6 +10830,84 @@
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!NizgRXLNUqtdlC1s.qKmqbRFE9n2Up5bF"
+ },
+ {
+ "sort": 20675000,
+ "name": "Spell Scroll",
+ "type": "rule",
+ "_id": "gi8IKhtOlBVhMJrN",
+ "title": {
+ "show": true,
+ "level": 2
+ },
+ "image": {},
+ "text": {
+ "format": 1,
+ "content": "A spell scroll bears the words of a single spell, written in a mystical cipher. If the spell is on your class’s spell list, you can read the scroll and cast its spell without providing any material components. Otherwise, the scroll is unintelligible. Casting the spell by reading the scroll requires the spell’s normal casting time. Once the spell is cast, the words on the scroll fade, and it crumbles to dust. If the casting is interrupted, the scroll is not lost.
If the spell is on your class’s spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell’s level. On a failed check, the spell disappears from the scroll with no other effect.
The level of the spell on the scroll determines the spell’s saving throw DC and attack bonus, as well as the scroll’s rarity, as shown in the Spell Scroll table.
Spell ScrollSpell Level | Rarity | Save DC | Attack Bonus |
---|
Cantrip | Common | 13 | +5 |
---|
1st | Common | 13 | +5 |
---|
2nd | Uncommon | 13 | +5 |
---|
3rd | Uncommon | 15 | +7 |
---|
4th | Rare | 15 | +7 |
---|
5th | Rare | 17 | +9 |
---|
6th | Very rare | 17 | +9 |
---|
7th | Very rare | 18 | +10 |
---|
8th | Very rare | 18 | +10 |
---|
9th | Legendary | 19 | +11 |
---|
A wizard spell on a spell scroll can be copied just as spells in spellbooks can be copied. When a spell is copied from a spell scroll, the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell’s level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the spell scroll is destroyed.
",
+ "markdown": ""
+ },
+ "video": {
+ "controls": true,
+ "volume": 0.5
+ },
+ "src": null,
+ "system": {
+ "tooltip": "",
+ "type": "rule"
+ },
+ "ownership": {
+ "default": -1
+ },
+ "flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": 1711217829430,
+ "modifiedTime": 1711218278065,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!journal.pages!NizgRXLNUqtdlC1s.gi8IKhtOlBVhMJrN"
+ },
+ {
+ "sort": 18350000,
+ "name": "Diseases",
+ "type": "rule",
+ "_id": "oNQWvyRZkTOJ8PBq",
+ "system": {
+ "tooltip": "A disease that does more than infect a few party members is primarily a plot device. The rules help describe the effects of the disease and how it can be cured, but the specifics of how a disease works aren't bound by a common set of rules. Diseases can affect any creature, and a given illness might or might not pass from one race or kind of creature to another. A plague might affect only constructs or undead, or sweep through a halfling neighborhood but leave other races untouched. What matters is the story you want to tell.
",
+ "type": "rule"
+ },
+ "title": {
+ "show": true,
+ "level": 1
+ },
+ "image": {},
+ "text": {
+ "format": 1,
+ "content": "A plague ravages the kingdom, setting the adventurers on a quest to find a cure. An adventurer emerges from an ancient tomb, unopened for centuries, and soon finds herself suffering from a wasting illness. A warlock offends some dark power and contracts a strange affliction that spreads whenever he casts spells.
A simple outbreak might amount to little more than a small drain on party resources, curable by a casting of @UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration}. A more complicated outbreak can form the basis of one or more adventures as characters search for a cure, stop the spread of the disease, and deal with the consequences.
A disease that does more than infect a few party members is primarily a plot device. The rules help describe the effects of the disease and how it can be cured, but the specifics of how a disease works aren't bound by a common set of rules. Diseases can affect any creature, and a given illness might or might not pass from one race or kind of creature to another. A plague might affect only constructs or undead, or sweep through a halfling neighborhood but leave other races untouched. What matters is the story you want to tell.
",
+ "markdown": ""
+ },
+ "video": {
+ "controls": true,
+ "volume": 0.5
+ },
+ "src": null,
+ "ownership": {
+ "default": -1
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "coreVersion": "11.315",
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "createdTime": 1713798086261,
+ "modifiedTime": 1713798194558,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
+ "_key": "!journal.pages!NizgRXLNUqtdlC1s.oNQWvyRZkTOJ8PBq"
}
],
"folder": null,
@@ -10839,10 +10917,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1704059808409,
- "modifiedTime": 1706217746263,
+ "modifiedTime": 1711218278065,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_id": "NizgRXLNUqtdlC1s",
diff --git a/packs/_source/rules/chapter-10-spellcasting.json b/packs/_source/rules/chapter-10-spellcasting.json
index 68fcec870e..8b7a3e146e 100644
--- a/packs/_source/rules/chapter-10-spellcasting.json
+++ b/packs/_source/rules/chapter-10-spellcasting.json
@@ -107,14 +107,14 @@
},
{
"name": "Bard Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "Cantrips (0 Level)
\n@UUID[Compendium.dnd5e.spells.Item.CAxSzHWizrafT033]{Dancing Lights}
\n@UUID[Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi]{Light}
\n@UUID[Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3]{Mage Hand}
\n@UUID[Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL]{Mending}
\n@UUID[Compendium.dnd5e.spells.Item.icZokbgV1jIMpNCv]{Message}
\n@UUID[Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU]{Minor Illusion}
\n@UUID[Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ]{Prestidigitation}
\n@UUID[Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG]{True Strike}
\n@UUID[Compendium.dnd5e.spells.Item.cdrYKaFi98YWaBMw]{Vicious Mockery}
\n1st Level
\n@UUID[Compendium.dnd5e.spells.Item.hDOENzjuj5WpLq7B]{Animal Friendship}
\n@UUID[Compendium.dnd5e.spells.Item.95K2aUhAGV9qXjnf]{Bane}
\n@UUID[Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs]{Charm Person}
\n@UUID[Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}
\n@UUID[Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP]{Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8]{Detect Magic}
\n@UUID[Compendium.dnd5e.spells.Item.A3q2gTNqG6fvNGrv]{Disguise Self}
\n@UUID[Compendium.dnd5e.spells.Item.nqBDWkVOfcGZt4YU]{Faerie Fire}
\n@UUID[Compendium.dnd5e.spells.Item.pub0OWVEB71XQx1n]{Feather Fall}
\n@UUID[Compendium.dnd5e.spells.Item.o8Dh7fblk1d16tnO]{Healing Word}
\n@UUID[Compendium.dnd5e.spells.Item.ge3Saet9zPTDyaoL]{Heroism}
\n@UUID[Compendium.dnd5e.spells.Item.BQk5Row4NymMnUQl]{Hideous Laughter}
\n@UUID[Compendium.dnd5e.spells.Item.3OZnNhunvRtPOQmH]{Identify}
\n@UUID[Compendium.dnd5e.spells.Item.82jM6qD9axLJsTrH]{Illusory Script}
\n@UUID[Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8]{Longstrider}
\n@UUID[Compendium.dnd5e.spells.Item.BrBZdCCrJRIVg7YX]{Silent Image}
\n@UUID[Compendium.dnd5e.spells.Item.KhwiSi9fwVfUPtku]{Sleep}
\n@UUID[Compendium.dnd5e.spells.Item.aL1F8fvYLtNzUbKu]{Speak with Animals}
\n@UUID[Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ]{Thunderwave}
\n@UUID[Compendium.dnd5e.spells.Item.ccduLIvutyNqvkgv]{Unseen Servant}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.X8w9EzYLGc4vQ1H2]{Animal Messenger}
\n@UUID[Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3]{Blindness/Deafness}
\n@UUID[Compendium.dnd5e.spells.Item.3MYDjS6k9IYL0aTj]{Calm Emotions}
\n@UUID[Compendium.dnd5e.spells.Item.ppWAAEul0QHtm4er]{Detect Thoughts}
\n@UUID[Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ]{Enhance Ability}
\n@UUID[Compendium.dnd5e.spells.Item.30ZgXtijJVCxQk5N]{Enthrall}
\n@UUID[Compendium.dnd5e.spells.Item.2yHXEcrRbadZDr5M]{Heat Metal}
\n@UUID[Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4]{Hold Person}
\n@UUID[Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B]{Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.1nhIxh0DsJsntCfj]{Knock}
\n@UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants}
\n@UUID[Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV]{Locate Object}
\n@UUID[Compendium.dnd5e.spells.Item.7v06rdmUakoTk1LQ]{Magic Mouth}
\n@UUID[Compendium.dnd5e.spells.Item.DQzlB5Y3k791W5bH]{See Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb]{Shatter}
\n@UUID[Compendium.dnd5e.spells.Item.5VhqFROQYjr1P9lp]{Silence}
\n@UUID[Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4]{Suggestion}
\n@UUID[Compendium.dnd5e.spells.Item.CylBa7jR8DSbo8Z3]{Zone of Truth}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.pO4zGe5LmFIYqJiL]{Bestow Curse}
\n@UUID[Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL]{Clairvoyance}
\n@UUID[Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8]{Dispel Magic}
\n@UUID[Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0]{Fear}
\n@UUID[Compendium.dnd5e.spells.Item.pB7XVYwdGNcUG935]{Glyph of Warding}
\n@UUID[Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}
\n@UUID[Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp]{Major Image}
\n@UUID[Compendium.dnd5e.spells.Item.aU62xVUBYkAQWIHv]{Nondetection}
\n@UUID[Compendium.dnd5e.spells.Item.YWtwzp6ZnQJMEmVW]{Plant Growth}
\n@UUID[Compendium.dnd5e.spells.Item.GtGjNjPBgUHxGYAD]{Sending}
\n@UUID[Compendium.dnd5e.spells.Item.I2LUSF5ogc7Bj62e]{Speak with Dead}
\n@UUID[Compendium.dnd5e.spells.Item.2VXGS206tuChoeXy]{Speak with Plants}
\n@UUID[Compendium.dnd5e.spells.Item.TwlD4PLcltv7Xh7j]{Stinking Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.NXWWWgHtWb7Nv21F]{Tiny Hut}
\n@UUID[Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8]{Tongues}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.P6f1PPKPd9BCb742]{Compulsion}
\n@UUID[Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe]{Confusion}
\n@UUID[Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j]{Dimension Door}
\n@UUID[Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT]{Freedom of Movement}
\n@UUID[Compendium.dnd5e.spells.Item.tEpDmYZNGc9f5OhJ]{Greater Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}
\n@UUID[Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4]{Locate Creature}
\n@UUID[Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY]{Polymorph}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.ATo0Eb63TDtnu6iA]{Animate Objects}
\n@UUID[Compendium.dnd5e.spells.Item.MCEpGpvovcXagwQS]{Awaken}
\n@UUID[Compendium.dnd5e.spells.Item.91Sw6vOIaO7U8DvM]{Dominate Person}
\n@UUID[Compendium.dnd5e.spells.Item.kSPRpeIx3w3nihrF]{Dream}
\n@UUID[Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b]{Geas}
\n@UUID[Compendium.dnd5e.spells.Item.WzvJ7G3cqvIubsLk]{Greater Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm]{Hold Monster}
\n@UUID[Compendium.dnd5e.spells.Item.W4Qx5z0id6da0vqg]{Legend Lore}
\n@UUID[Compendium.dnd5e.spells.Item.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.MBMaQLwoy05qzMJ3]{Mislead}
\n@UUID[Compendium.dnd5e.spells.Item.r3243JU4AyQJyfX4]{Modify Memory}
\n@UUID[Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL]{Planar Binding}
\n@UUID[Compendium.dnd5e.spells.Item.AGFMPAmuzwWO6Dfz]{Raise Dead}
\n@UUID[Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20]{Scrying}
\n@UUID[Compendium.dnd5e.spells.Item.mbFw57uyfLkyiw5k]{Seeming}
\n@UUID[Compendium.dnd5e.spells.Item.8aWtP5hcrmcEesBW]{Teleportation Circle}
\n6th Level
\n@UUID[Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy]{Eyebite}
\n@UUID[Compendium.dnd5e.spells.Item.cYI4RNNjI5GAmLhy]{Find the Path}
\n@UUID[Compendium.dnd5e.spells.Item.yw0tYQkOMCgKZ8Ur]{Guards and Wards}
\n@UUID[Compendium.dnd5e.spells.Item.TfRzwEgBHHkCc6Ql]{Irresistible Dance}
\n@UUID[Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6]{Mass Suggestion}
\n@UUID[Compendium.dnd5e.spells.Item.bA2sk9eMKBeY7EPD]{Programmed Illusion}
\n@UUID[Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD]{True Seeing}
\n7th Level
\n@UUID[Compendium.dnd5e.spells.Item.LTDNWoFVJNLjiiNa]{Arcane Sword}
\n@UUID[Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN]{Etherealness}
\n@UUID[Compendium.dnd5e.spells.Item.Y7uWUO4yqUN0JKl0]{Forcecage}
\n@UUID[Compendium.dnd5e.spells.Item.pn4SnsFDvYDiE6rC]{Magnificent Mansion}
\n@UUID[Compendium.dnd5e.spells.Item.f38w5rd9SgdmWc6F]{Mirage Arcane}
\n@UUID[Compendium.dnd5e.spells.Item.ePhRKHXRE7l1sEoQ]{Project Image}
\n@UUID[Compendium.dnd5e.spells.Item.9kGrFXnLiRg3Xnbo]{Regenerate}
\n@UUID[Compendium.dnd5e.spells.Item.jhhT9PsHy5A7EojO]{Resurrection}
\n@UUID[Compendium.dnd5e.spells.Item.B2kbmgbA2WQR00kx]{Symbol}
\n@UUID[Compendium.dnd5e.spells.Item.L4J89JXqbKs6puEV]{Teleport}
\n8th Level
\n@UUID[Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp]{Dominate Monster}
\n@UUID[Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB]{Feeblemind}
\n@UUID[Compendium.dnd5e.spells.Item.1RzxKZzkQOoioxPj]{Glibness}
\n@UUID[Compendium.dnd5e.spells.Item.bllEWfm9xfEKynhv]{Mind Blank}
\n@UUID[Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj]{Power Word Stun}
\n9th Level
\n@UUID[Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js]{Foresight}
\n@UUID[Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S]{Power Word Kill}
\n@UUID[Compendium.dnd5e.spells.Item.QbQZKoXOgHWN06aa]{True Polymorph}
"
+ "content": ""
},
"_id": "ziBzRlrpBm1KVV0j",
"image": {},
@@ -123,32 +123,148 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "identifier": "bard",
+ "spells": [
+ "Compendium.dnd5e.spells.Item.CAxSzHWizrafT033",
+ "Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi",
+ "Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3",
+ "Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL",
+ "Compendium.dnd5e.spells.Item.icZokbgV1jIMpNCv",
+ "Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU",
+ "Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ",
+ "Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG",
+ "Compendium.dnd5e.spells.Item.cdrYKaFi98YWaBMw",
+ "Compendium.dnd5e.spells.Item.hDOENzjuj5WpLq7B",
+ "Compendium.dnd5e.spells.Item.95K2aUhAGV9qXjnf",
+ "Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs",
+ "Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k",
+ "Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP",
+ "Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8",
+ "Compendium.dnd5e.spells.Item.A3q2gTNqG6fvNGrv",
+ "Compendium.dnd5e.spells.Item.nqBDWkVOfcGZt4YU",
+ "Compendium.dnd5e.spells.Item.pub0OWVEB71XQx1n",
+ "Compendium.dnd5e.spells.Item.o8Dh7fblk1d16tnO",
+ "Compendium.dnd5e.spells.Item.ge3Saet9zPTDyaoL",
+ "Compendium.dnd5e.spells.Item.BQk5Row4NymMnUQl",
+ "Compendium.dnd5e.spells.Item.3OZnNhunvRtPOQmH",
+ "Compendium.dnd5e.spells.Item.82jM6qD9axLJsTrH",
+ "Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8",
+ "Compendium.dnd5e.spells.Item.BrBZdCCrJRIVg7YX",
+ "Compendium.dnd5e.spells.Item.KhwiSi9fwVfUPtku",
+ "Compendium.dnd5e.spells.Item.aL1F8fvYLtNzUbKu",
+ "Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ",
+ "Compendium.dnd5e.spells.Item.ccduLIvutyNqvkgv",
+ "Compendium.dnd5e.spells.Item.X8w9EzYLGc4vQ1H2",
+ "Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3",
+ "Compendium.dnd5e.spells.Item.3MYDjS6k9IYL0aTj",
+ "Compendium.dnd5e.spells.Item.ppWAAEul0QHtm4er",
+ "Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ",
+ "Compendium.dnd5e.spells.Item.30ZgXtijJVCxQk5N",
+ "Compendium.dnd5e.spells.Item.2yHXEcrRbadZDr5M",
+ "Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4",
+ "Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B",
+ "Compendium.dnd5e.spells.Item.1nhIxh0DsJsntCfj",
+ "Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV",
+ "Compendium.dnd5e.spells.Item.Iv2qqSAT7OkXKPFx",
+ "Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV",
+ "Compendium.dnd5e.spells.Item.7v06rdmUakoTk1LQ",
+ "Compendium.dnd5e.spells.Item.DQzlB5Y3k791W5bH",
+ "Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb",
+ "Compendium.dnd5e.spells.Item.5VhqFROQYjr1P9lp",
+ "Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4",
+ "Compendium.dnd5e.spells.Item.CylBa7jR8DSbo8Z3",
+ "Compendium.dnd5e.spells.Item.pO4zGe5LmFIYqJiL",
+ "Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL",
+ "Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8",
+ "Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0",
+ "Compendium.dnd5e.spells.Item.pB7XVYwdGNcUG935",
+ "Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd",
+ "Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp",
+ "Compendium.dnd5e.spells.Item.aU62xVUBYkAQWIHv",
+ "Compendium.dnd5e.spells.Item.YWtwzp6ZnQJMEmVW",
+ "Compendium.dnd5e.spells.Item.GtGjNjPBgUHxGYAD",
+ "Compendium.dnd5e.spells.Item.I2LUSF5ogc7Bj62e",
+ "Compendium.dnd5e.spells.Item.2VXGS206tuChoeXy",
+ "Compendium.dnd5e.spells.Item.TwlD4PLcltv7Xh7j",
+ "Compendium.dnd5e.spells.Item.NXWWWgHtWb7Nv21F",
+ "Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8",
+ "Compendium.dnd5e.spells.Item.P6f1PPKPd9BCb742",
+ "Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe",
+ "Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j",
+ "Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT",
+ "Compendium.dnd5e.spells.Item.tEpDmYZNGc9f5OhJ",
+ "Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C",
+ "Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4",
+ "Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY",
+ "Compendium.dnd5e.spells.Item.ATo0Eb63TDtnu6iA",
+ "Compendium.dnd5e.spells.Item.MCEpGpvovcXagwQS",
+ "Compendium.dnd5e.spells.Item.91Sw6vOIaO7U8DvM",
+ "Compendium.dnd5e.spells.Item.kSPRpeIx3w3nihrF",
+ "Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b",
+ "Compendium.dnd5e.spells.Item.WzvJ7G3cqvIubsLk",
+ "Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm",
+ "Compendium.dnd5e.spells.Item.W4Qx5z0id6da0vqg",
+ "Compendium.dnd5e.spells.Item.Pyzmm8R7rVsNAPsd",
+ "Compendium.dnd5e.spells.Item.MBMaQLwoy05qzMJ3",
+ "Compendium.dnd5e.spells.Item.r3243JU4AyQJyfX4",
+ "Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL",
+ "Compendium.dnd5e.spells.Item.AGFMPAmuzwWO6Dfz",
+ "Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20",
+ "Compendium.dnd5e.spells.Item.mbFw57uyfLkyiw5k",
+ "Compendium.dnd5e.spells.Item.8aWtP5hcrmcEesBW",
+ "Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy",
+ "Compendium.dnd5e.spells.Item.cYI4RNNjI5GAmLhy",
+ "Compendium.dnd5e.spells.Item.yw0tYQkOMCgKZ8Ur",
+ "Compendium.dnd5e.spells.Item.TfRzwEgBHHkCc6Ql",
+ "Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6",
+ "Compendium.dnd5e.spells.Item.bA2sk9eMKBeY7EPD",
+ "Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD",
+ "Compendium.dnd5e.spells.Item.LTDNWoFVJNLjiiNa",
+ "Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN",
+ "Compendium.dnd5e.spells.Item.Y7uWUO4yqUN0JKl0",
+ "Compendium.dnd5e.spells.Item.pn4SnsFDvYDiE6rC",
+ "Compendium.dnd5e.spells.Item.f38w5rd9SgdmWc6F",
+ "Compendium.dnd5e.spells.Item.ePhRKHXRE7l1sEoQ",
+ "Compendium.dnd5e.spells.Item.9kGrFXnLiRg3Xnbo",
+ "Compendium.dnd5e.spells.Item.jhhT9PsHy5A7EojO",
+ "Compendium.dnd5e.spells.Item.B2kbmgbA2WQR00kx",
+ "Compendium.dnd5e.spells.Item.L4J89JXqbKs6puEV",
+ "Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp",
+ "Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB",
+ "Compendium.dnd5e.spells.Item.1RzxKZzkQOoioxPj",
+ "Compendium.dnd5e.spells.Item.bllEWfm9xfEKynhv",
+ "Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj",
+ "Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js",
+ "Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S",
+ "Compendium.dnd5e.spells.Item.QbQZKoXOgHWN06aa"
+ ]
+ },
"sort": 400000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712156945682,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.ziBzRlrpBm1KVV0j"
},
{
"name": "Cleric Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "Cantrips (0 Level)
\n@UUID[Compendium.dnd5e.spells.Item.P7mF2MxSuVJwHRRY]{Guidance}
\n@UUID[Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi]{Light}
\n@UUID[Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL]{Mending}
\n@UUID[Compendium.dnd5e.spells.Item.dl8YwvMboBqX2OC4]{Resistance}
\n@UUID[Compendium.dnd5e.spells.Item.n9pJzTDsAwQxJVRl]{Sacred Flame}
\n@UUID[Compendium.dnd5e.spells.Item.8zT7njvqbpXs4Cel]{Spare the Dying}
\n@UUID[Compendium.dnd5e.spells.Item.MUO1uYN7JR1hm4dR]{Thaumaturgy}
\n1st Level
\n@UUID[Compendium.dnd5e.spells.Item.95K2aUhAGV9qXjnf]{Bane}
\n@UUID[Compendium.dnd5e.spells.Item.8dzaICjGy6mTUaUr]{Bless}
\n@UUID[Compendium.dnd5e.spells.Item.arzCrMRgcNiQuh43]{Command}
\n@UUID[Compendium.dnd5e.spells.Item.a3XtAO5n2GrqiAh5]{Create or Destroy Water}
\n@UUID[Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP]{Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.Mzh95utKDPIrjiH8]{Detect Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8]{Detect Magic}
\n@UUID[Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l]{Detect Poison and Disease}
\n@UUID[Compendium.dnd5e.spells.Item.7buEm5KhI5lP8m1z]{Guiding Bolt}
\n@UUID[Compendium.dnd5e.spells.Item.o8Dh7fblk1d16tnO]{Healing Word}
\n@UUID[Compendium.dnd5e.spells.Item.ksaaTxIbKx2sJfia]{Inflict Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.Kn7K5PtYUJAKZTTp]{Purify Food and Drink}
\n@UUID[Compendium.dnd5e.spells.Item.gvdA9nPuWLck4tBl]{Sanctuary}
\n@UUID[Compendium.dnd5e.spells.Item.jZ6JNykRtdQ90MOo]{Shield of Faith}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.Opwh2PdX4runSBlm]{Aid}
\n@UUID[Compendium.dnd5e.spells.Item.4v2H3hHb3Ph9XLNd]{Augury}
\n@UUID[Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3]{Blindness/Deafness}
\n@UUID[Compendium.dnd5e.spells.Item.3MYDjS6k9IYL0aTj]{Calm Emotions}
\n@UUID[Compendium.dnd5e.spells.Item.MK6gpQMeDFo0cP9f]{Continual Flame}
\n@UUID[Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ]{Enhance Ability}
\n@UUID[Compendium.dnd5e.spells.Item.KrM3oHVv13RAALrS]{Find Traps}
\n@UUID[Compendium.dnd5e.spells.Item.n4JDcFKe5ikzYmAc]{Gentle Repose}
\n@UUID[Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4]{Hold Person}
\n@UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV]{Locate Object}
\n@UUID[Compendium.dnd5e.spells.Item.MOEmz9N0j0QPkKEE]{Prayer of Healing}
\n@UUID[Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ]{Protection from Poison}
\n@UUID[Compendium.dnd5e.spells.Item.5VhqFROQYjr1P9lp]{Silence}
\n@UUID[Compendium.dnd5e.spells.Item.JbxsYXxSOTZbf9I0]{Spiritual Weapon}
\n@UUID[Compendium.dnd5e.spells.Item.JVhKeanAXZH62DrF]{Warding Bond}
\n@UUID[Compendium.dnd5e.spells.Item.CylBa7jR8DSbo8Z3]{Zone of Truth}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.oyE5nVppa5mde5gT]{Animate Dead}
\n@UUID[Compendium.dnd5e.spells.Item.ZU9d6woBdUP8pIPt]{Beacon of Hope}
\n@UUID[Compendium.dnd5e.spells.Item.pO4zGe5LmFIYqJiL]{Bestow Curse}
\n@UUID[Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL]{Clairvoyance}
\n@UUID[Compendium.dnd5e.spells.Item.BV0mpbHh29IbbIj5]{Create Food and Water}
\n@UUID[Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG]{Daylight}
\n@UUID[Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8]{Dispel Magic}
\n@UUID[Compendium.dnd5e.spells.Item.pB7XVYwdGNcUG935]{Glyph of Warding}
\n@UUID[Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz]{Magic Circle}
\n@UUID[Compendium.dnd5e.spells.Item.34ddoYIrnOZ2GFYi]{Mass Healing Word}
\n@UUID[Compendium.dnd5e.spells.Item.64uo4fHriHLjRUrX]{Meld into Stone}
\n@UUID[Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I]{Protection from Energy}
\n@UUID[Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl]{Remove Curse}
\n@UUID[Compendium.dnd5e.spells.Item.LmRHHMtplpxr9fX6]{Revivify}
\n@UUID[Compendium.dnd5e.spells.Item.GtGjNjPBgUHxGYAD]{Sending}
\n@UUID[Compendium.dnd5e.spells.Item.I2LUSF5ogc7Bj62e]{Speak with Dead}
\n@UUID[Compendium.dnd5e.spells.Item.uCud2s4TjMfjiXUb]{Spirit Guardians}
\n@UUID[Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8]{Tongues}
\n@UUID[Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS]{Water Walk}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf]{Banishment}
\n@UUID[Compendium.dnd5e.spells.Item.7fFHlBk3UNX8gPKL]{Control Water}
\n@UUID[Compendium.dnd5e.spells.Item.VtCXMdyM6mAdIJZb]{Death Ward}
\n@UUID[Compendium.dnd5e.spells.Item.XqzXSKNR75ZdYTA9]{Divination}
\n@UUID[Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT]{Freedom of Movement}
\n@UUID[Compendium.dnd5e.spells.Item.TgHsuhNasPbhu8MO]{Guardian of Faith}
\n@UUID[Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4]{Locate Creature}
\n@UUID[Compendium.dnd5e.spells.Item.QvGcdRUSNRKEQJlK]{Stone Shape}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.d54VDyFulD9xxY7J]{Commune}
\n@UUID[Compendium.dnd5e.spells.Item.CjIq8Ed7bu3vVwT1]{Contagion}
\n@UUID[Compendium.dnd5e.spells.Item.TkJ8Wtg1L7TZtspm]{Dispel Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.5e1xTohkzqFqbYH4]{Flame Strike}
\n@UUID[Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b]{Geas}
\n@UUID[Compendium.dnd5e.spells.Item.WzvJ7G3cqvIubsLk]{Greater Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.SLxA9QhrggTz0taU]{Hallow}
\n@UUID[Compendium.dnd5e.spells.Item.OVikYmSdHliAG2YD]{Insect Plague}
\n@UUID[Compendium.dnd5e.spells.Item.W4Qx5z0id6da0vqg]{Legend Lore}
\n@UUID[Compendium.dnd5e.spells.Item.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL]{Planar Binding}
\n@UUID[Compendium.dnd5e.spells.Item.AGFMPAmuzwWO6Dfz]{Raise Dead}
\n@UUID[Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20]{Scrying}
\n6th Level
\n@UUID[Compendium.dnd5e.spells.Item.dLJhxDfeyOsc3zsY]{Blade Barrier}
\n@UUID[Compendium.dnd5e.spells.Item.E4NXux0RHvME1XgP]{Create Undead}
\n@UUID[Compendium.dnd5e.spells.Item.cYI4RNNjI5GAmLhy]{Find the Path}
\n@UUID[Compendium.dnd5e.spells.Item.64D1gNZ4hx7SWG2x]{Forbiddance}
\n@UUID[Compendium.dnd5e.spells.Item.tMH6Ivn4GmE1naMj]{Harm}
\n@UUID[Compendium.dnd5e.spells.Item.qcYitWoSMTnKkzM1]{Heal}
\n@UUID[Compendium.dnd5e.spells.Item.mgFqi0ev8f7Ut19y]{Heroes' Feast}
\n@UUID[Compendium.dnd5e.spells.Item.fkREcytuZ8sngWtC]{Planar Ally}
\n@UUID[Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD]{True Seeing}
\n@UUID[Compendium.dnd5e.spells.Item.76C0FdcxlU8F9Rl2]{Word of Recall}
\n7th Level
\n@UUID[Compendium.dnd5e.spells.Item.XT7nzJmVGgv73uaf]{Conjure Celestial}
\n@UUID[Compendium.dnd5e.spells.Item.T1vpZLam7LezjToj]{Divine Word}
\n@UUID[Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN]{Etherealness}
\n@UUID[Compendium.dnd5e.spells.Item.J3uILDYS7MiOfmTJ]{Fire Storm}
\n@UUID[Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz]{Plane Shift}
\n@UUID[Compendium.dnd5e.spells.Item.9kGrFXnLiRg3Xnbo]{Regenerate}
\n@UUID[Compendium.dnd5e.spells.Item.jhhT9PsHy5A7EojO]{Resurrection}
\n@UUID[Compendium.dnd5e.spells.Item.B2kbmgbA2WQR00kx]{Symbol}
\n8th Level
\n@UUID[Compendium.dnd5e.spells.Item.Eon0jzGzQRNluTPQ]{Antimagic Field}
\n@UUID[Compendium.dnd5e.spells.Item.ZPd73HtKF3At11jh]{Control Weather}
\n@UUID[Compendium.dnd5e.spells.Item.x5JNBSyIBBZsjcGT]{Earthquake}
\n@UUID[Compendium.dnd5e.spells.Item.j8S49Rea8b1640Zi]{Holy Aura}
\n9th Level
\n@UUID[Compendium.dnd5e.spells.Item.TIoadMIsUKD4edXi]{Astral Projection}
\n@UUID[Compendium.dnd5e.spells.Item.XbwGq5kDJNvAxNXV]{Gate}
\n@UUID[Compendium.dnd5e.spells.Item.Y6oItIuhOJZ0i0FC]{Mass Heal}
\n@UUID[Compendium.dnd5e.spells.Item.qLeEXZDbW5y4bmLY]{True Resurrection}
"
+ "content": ""
},
"_id": "cuG9d7J9fQH9InYT",
"image": {},
@@ -157,32 +273,141 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "spells": [
+ "Compendium.dnd5e.spells.Item.P7mF2MxSuVJwHRRY",
+ "Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi",
+ "Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL",
+ "Compendium.dnd5e.spells.Item.dl8YwvMboBqX2OC4",
+ "Compendium.dnd5e.spells.Item.n9pJzTDsAwQxJVRl",
+ "Compendium.dnd5e.spells.Item.8zT7njvqbpXs4Cel",
+ "Compendium.dnd5e.spells.Item.MUO1uYN7JR1hm4dR",
+ "Compendium.dnd5e.spells.Item.95K2aUhAGV9qXjnf",
+ "Compendium.dnd5e.spells.Item.8dzaICjGy6mTUaUr",
+ "Compendium.dnd5e.spells.Item.arzCrMRgcNiQuh43",
+ "Compendium.dnd5e.spells.Item.a3XtAO5n2GrqiAh5",
+ "Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP",
+ "Compendium.dnd5e.spells.Item.Mzh95utKDPIrjiH8",
+ "Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8",
+ "Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l",
+ "Compendium.dnd5e.spells.Item.7buEm5KhI5lP8m1z",
+ "Compendium.dnd5e.spells.Item.o8Dh7fblk1d16tnO",
+ "Compendium.dnd5e.spells.Item.ksaaTxIbKx2sJfia",
+ "Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2",
+ "Compendium.dnd5e.spells.Item.Kn7K5PtYUJAKZTTp",
+ "Compendium.dnd5e.spells.Item.gvdA9nPuWLck4tBl",
+ "Compendium.dnd5e.spells.Item.jZ6JNykRtdQ90MOo",
+ "Compendium.dnd5e.spells.Item.Opwh2PdX4runSBlm",
+ "Compendium.dnd5e.spells.Item.4v2H3hHb3Ph9XLNd",
+ "Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3",
+ "Compendium.dnd5e.spells.Item.3MYDjS6k9IYL0aTj",
+ "Compendium.dnd5e.spells.Item.MK6gpQMeDFo0cP9f",
+ "Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ",
+ "Compendium.dnd5e.spells.Item.KrM3oHVv13RAALrS",
+ "Compendium.dnd5e.spells.Item.n4JDcFKe5ikzYmAc",
+ "Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4",
+ "Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV",
+ "Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV",
+ "Compendium.dnd5e.spells.Item.MOEmz9N0j0QPkKEE",
+ "Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ",
+ "Compendium.dnd5e.spells.Item.5VhqFROQYjr1P9lp",
+ "Compendium.dnd5e.spells.Item.JbxsYXxSOTZbf9I0",
+ "Compendium.dnd5e.spells.Item.JVhKeanAXZH62DrF",
+ "Compendium.dnd5e.spells.Item.CylBa7jR8DSbo8Z3",
+ "Compendium.dnd5e.spells.Item.oyE5nVppa5mde5gT",
+ "Compendium.dnd5e.spells.Item.ZU9d6woBdUP8pIPt",
+ "Compendium.dnd5e.spells.Item.pO4zGe5LmFIYqJiL",
+ "Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL",
+ "Compendium.dnd5e.spells.Item.BV0mpbHh29IbbIj5",
+ "Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG",
+ "Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8",
+ "Compendium.dnd5e.spells.Item.pB7XVYwdGNcUG935",
+ "Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz",
+ "Compendium.dnd5e.spells.Item.34ddoYIrnOZ2GFYi",
+ "Compendium.dnd5e.spells.Item.64uo4fHriHLjRUrX",
+ "Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I",
+ "Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl",
+ "Compendium.dnd5e.spells.Item.LmRHHMtplpxr9fX6",
+ "Compendium.dnd5e.spells.Item.GtGjNjPBgUHxGYAD",
+ "Compendium.dnd5e.spells.Item.I2LUSF5ogc7Bj62e",
+ "Compendium.dnd5e.spells.Item.uCud2s4TjMfjiXUb",
+ "Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8",
+ "Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS",
+ "Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf",
+ "Compendium.dnd5e.spells.Item.7fFHlBk3UNX8gPKL",
+ "Compendium.dnd5e.spells.Item.VtCXMdyM6mAdIJZb",
+ "Compendium.dnd5e.spells.Item.XqzXSKNR75ZdYTA9",
+ "Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT",
+ "Compendium.dnd5e.spells.Item.TgHsuhNasPbhu8MO",
+ "Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4",
+ "Compendium.dnd5e.spells.Item.QvGcdRUSNRKEQJlK",
+ "Compendium.dnd5e.spells.Item.d54VDyFulD9xxY7J",
+ "Compendium.dnd5e.spells.Item.CjIq8Ed7bu3vVwT1",
+ "Compendium.dnd5e.spells.Item.TkJ8Wtg1L7TZtspm",
+ "Compendium.dnd5e.spells.Item.5e1xTohkzqFqbYH4",
+ "Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b",
+ "Compendium.dnd5e.spells.Item.WzvJ7G3cqvIubsLk",
+ "Compendium.dnd5e.spells.Item.SLxA9QhrggTz0taU",
+ "Compendium.dnd5e.spells.Item.OVikYmSdHliAG2YD",
+ "Compendium.dnd5e.spells.Item.W4Qx5z0id6da0vqg",
+ "Compendium.dnd5e.spells.Item.Pyzmm8R7rVsNAPsd",
+ "Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL",
+ "Compendium.dnd5e.spells.Item.AGFMPAmuzwWO6Dfz",
+ "Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20",
+ "Compendium.dnd5e.spells.Item.dLJhxDfeyOsc3zsY",
+ "Compendium.dnd5e.spells.Item.E4NXux0RHvME1XgP",
+ "Compendium.dnd5e.spells.Item.cYI4RNNjI5GAmLhy",
+ "Compendium.dnd5e.spells.Item.64D1gNZ4hx7SWG2x",
+ "Compendium.dnd5e.spells.Item.tMH6Ivn4GmE1naMj",
+ "Compendium.dnd5e.spells.Item.qcYitWoSMTnKkzM1",
+ "Compendium.dnd5e.spells.Item.mgFqi0ev8f7Ut19y",
+ "Compendium.dnd5e.spells.Item.fkREcytuZ8sngWtC",
+ "Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD",
+ "Compendium.dnd5e.spells.Item.76C0FdcxlU8F9Rl2",
+ "Compendium.dnd5e.spells.Item.XT7nzJmVGgv73uaf",
+ "Compendium.dnd5e.spells.Item.T1vpZLam7LezjToj",
+ "Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN",
+ "Compendium.dnd5e.spells.Item.J3uILDYS7MiOfmTJ",
+ "Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz",
+ "Compendium.dnd5e.spells.Item.9kGrFXnLiRg3Xnbo",
+ "Compendium.dnd5e.spells.Item.jhhT9PsHy5A7EojO",
+ "Compendium.dnd5e.spells.Item.B2kbmgbA2WQR00kx",
+ "Compendium.dnd5e.spells.Item.Eon0jzGzQRNluTPQ",
+ "Compendium.dnd5e.spells.Item.ZPd73HtKF3At11jh",
+ "Compendium.dnd5e.spells.Item.x5JNBSyIBBZsjcGT",
+ "Compendium.dnd5e.spells.Item.j8S49Rea8b1640Zi",
+ "Compendium.dnd5e.spells.Item.TIoadMIsUKD4edXi",
+ "Compendium.dnd5e.spells.Item.XbwGq5kDJNvAxNXV",
+ "Compendium.dnd5e.spells.Item.Y6oItIuhOJZ0i0FC",
+ "Compendium.dnd5e.spells.Item.qLeEXZDbW5y4bmLY"
+ ],
+ "identifier": "cleric"
+ },
"sort": 500000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712157244920,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.cuG9d7J9fQH9InYT"
},
{
"name": "Druid Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "Cantrips (0 Level)
\n@UUID[Compendium.dnd5e.spells.Item.SbSvZKkJASyk8jKo]{Druidcraft}
\n@UUID[Compendium.dnd5e.spells.Item.P7mF2MxSuVJwHRRY]{Guidance}
\n@UUID[Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL]{Mending}
\n@UUID[Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI]{Poison Spray}
\n@UUID[Compendium.dnd5e.spells.Item.eCPQuQkIabFKTl9u]{Produce Flame}
\n@UUID[Compendium.dnd5e.spells.Item.dl8YwvMboBqX2OC4]{Resistance}
\n@UUID[Compendium.dnd5e.spells.Item.VzgFzcmocr1X1cp4]{Shillelagh}
\n1st Level
\n@UUID[Compendium.dnd5e.spells.Item.hDOENzjuj5WpLq7B]{Animal Friendship}
\n@UUID[Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs]{Charm Person}
\n@UUID[Compendium.dnd5e.spells.Item.a3XtAO5n2GrqiAh5]{Create or Destroy Water}
\n@UUID[Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP]{Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8]{Detect Magic}
\n@UUID[Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l]{Detect Poison and Disease}
\n@UUID[Compendium.dnd5e.spells.Item.gMrWeG8fMDPRFiVe]{Entangle}
\n@UUID[Compendium.dnd5e.spells.Item.nqBDWkVOfcGZt4YU]{Faerie Fire}
\n@UUID[Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX]{Fog Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.Qf6CAZkc7ms4ZY3e]{Goodberry}
\n@UUID[Compendium.dnd5e.spells.Item.o8Dh7fblk1d16tnO]{Healing Word}
\n@UUID[Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h]{Jump}
\n@UUID[Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8]{Longstrider}
\n@UUID[Compendium.dnd5e.spells.Item.Kn7K5PtYUJAKZTTp]{Purify Food and Drink}
\n@UUID[Compendium.dnd5e.spells.Item.aL1F8fvYLtNzUbKu]{Speak with Animals}
\n@UUID[Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ]{Thunderwave}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.X8w9EzYLGc4vQ1H2]{Animal Messenger}
\n@UUID[Compendium.dnd5e.spells.Item.JPwIEfgUPVebr5AH]{Barkskin}
\n@UUID[Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp]{Darkvision}
\n@UUID[Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ]{Enhance Ability}
\n@UUID[Compendium.dnd5e.spells.Item.KrM3oHVv13RAALrS]{Find Traps}
\n@UUID[Compendium.dnd5e.spells.Item.Advtckpz1B733bu9]{Flame Blade}
\n@UUID[Compendium.dnd5e.spells.Item.FjYE214HTERCRZNm]{Flaming Sphere}
\n@UUID[Compendium.dnd5e.spells.Item.FSMy6VAjDnXY9vWz]{Gust of Wind}
\n@UUID[Compendium.dnd5e.spells.Item.2yHXEcrRbadZDr5M]{Heat Metal}
\n@UUID[Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4]{Hold Person}
\n@UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants}
\n@UUID[Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV]{Locate Object}
\n@UUID[Compendium.dnd5e.spells.Item.bV3yun6MIuFj71Er]{Moonbeam}
\n@UUID[Compendium.dnd5e.spells.Item.pRMvmknwLf2tdMTj]{Pass without Trace}
\n@UUID[Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ]{Protection from Poison}
\n@UUID[Compendium.dnd5e.spells.Item.9gYGkrL6qFTsE6fw]{Spike Growth}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.ehvmg9U9fcMEhE4z]{Call Lightning}
\n@UUID[Compendium.dnd5e.spells.Item.1Drt0SHxbEAHxprN]{Conjure Animals}
\n@UUID[Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG]{Daylight}
\n@UUID[Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8]{Dispel Magic}
\n@UUID[Compendium.dnd5e.spells.Item.64uo4fHriHLjRUrX]{Meld into Stone}
\n@UUID[Compendium.dnd5e.spells.Item.YWtwzp6ZnQJMEmVW]{Plant Growth}
\n@UUID[Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I]{Protection from Energy}
\n@UUID[Compendium.dnd5e.spells.Item.dhqBY4TvVjxVmOZd]{Sleet Storm}
\n@UUID[Compendium.dnd5e.spells.Item.2VXGS206tuChoeXy]{Speak with Plants}
\n@UUID[Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC]{Water Breathing}
\n@UUID[Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS]{Water Walk}
\n@UUID[Compendium.dnd5e.spells.Item.ew6GA8dJy2spQmFW]{Wind Wall}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y]{Blight}
\n@UUID[Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe]{Confusion}
\n@UUID[Compendium.dnd5e.spells.Item.KgEw3sDr39C6g8nY]{Conjure Minor Elementals}
\n@UUID[Compendium.dnd5e.spells.Item.dEfSELiY1eO3cpX9]{Conjure Woodland Beings}
\n@UUID[Compendium.dnd5e.spells.Item.7fFHlBk3UNX8gPKL]{Control Water}
\n@UUID[Compendium.dnd5e.spells.Item.LrPvWHBPmiMQQsKB]{Dominate Beast}
\n@UUID[Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT]{Freedom of Movement}
\n@UUID[Compendium.dnd5e.spells.Item.czXrVRx6XYRWsHAi]{Giant Insect}
\n@UUID[Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}
\n@UUID[Compendium.dnd5e.spells.Item.WN2LWEljYU6QqnRH]{Ice Storm}
\n@UUID[Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4]{Locate Creature}
\n@UUID[Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY]{Polymorph}
\n@UUID[Compendium.dnd5e.spells.Item.QvGcdRUSNRKEQJlK]{Stone Shape}
\n@UUID[Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79]{Stoneskin}
\n@UUID[Compendium.dnd5e.spells.Item.X3DrXgxjwI2dvkD6]{Wall of Fire}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.wXzkqpeFP8eWgJzK]{Antilife Shell}
\n@UUID[Compendium.dnd5e.spells.Item.MCEpGpvovcXagwQS]{Awaken}
\n@UUID[Compendium.dnd5e.spells.Item.dp6xny4v8PDoIGjh]{Commune with Nature}
\n@UUID[Compendium.dnd5e.spells.Item.1LkZvINag7KqBmDR]{Conjure Elemental}
\n@UUID[Compendium.dnd5e.spells.Item.CjIq8Ed7bu3vVwT1]{Contagion}
\n@UUID[Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b]{Geas}
\n@UUID[Compendium.dnd5e.spells.Item.WzvJ7G3cqvIubsLk]{Greater Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.OVikYmSdHliAG2YD]{Insect Plague}
\n@UUID[Compendium.dnd5e.spells.Item.Pyzmm8R7rVsNAPsd]{Mass Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL]{Planar Binding}
\n@UUID[Compendium.dnd5e.spells.Item.zMEo5DKK8uxsuWnq]{Reincarnate}
\n@UUID[Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20]{Scrying}
\n@UUID[Compendium.dnd5e.spells.Item.DUBgwHPakcLDkB6W]{Tree Stride}
\n@UUID[Compendium.dnd5e.spells.Item.NmoRmM1mhuM3pqnY]{Wall of Stone}
\n6th Level
\n@UUID[Compendium.dnd5e.spells.Item.yN3XZZujhR4aVvPa]{Conjure Fey}
\n@UUID[Compendium.dnd5e.spells.Item.cYI4RNNjI5GAmLhy]{Find the Path}
\n@UUID[Compendium.dnd5e.spells.Item.qcYitWoSMTnKkzM1]{Heal}
\n@UUID[Compendium.dnd5e.spells.Item.mgFqi0ev8f7Ut19y]{Heroes' Feast}
\n@UUID[Compendium.dnd5e.spells.Item.yI0XWIgI0IGGsR3R]{Move Earth}
\n@UUID[Compendium.dnd5e.spells.Item.2RC0EyvBLPH88PZF]{Sunbeam}
\n@UUID[Compendium.dnd5e.spells.Item.s7nXgot5gGZVcMrv]{Transport via Plants}
\n@UUID[Compendium.dnd5e.spells.Item.AQsBc94ES7W7s7iG]{Wall of Thorns}
\n@UUID[Compendium.dnd5e.spells.Item.8PJAsHmbu6UgDHC0]{Wind Walk}
\n7th Level
\n@UUID[Compendium.dnd5e.spells.Item.J3uILDYS7MiOfmTJ]{Fire Storm}
\n@UUID[Compendium.dnd5e.spells.Item.f38w5rd9SgdmWc6F]{Mirage Arcane}
\n@UUID[Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz]{Plane Shift}
\n@UUID[Compendium.dnd5e.spells.Item.9kGrFXnLiRg3Xnbo]{Regenerate}
\n@UUID[Compendium.dnd5e.spells.Item.ERCv7yuRkQ0YjGx6]{Reverse Gravity}
\n8th Level
\n@UUID[Compendium.dnd5e.spells.Item.ohqAIBg6de989CIo]{Animal Shapes}
\n@UUID[Compendium.dnd5e.spells.Item.GJ2WYm3SQFR0winH]{Antipathy/Sympathy}
\n@UUID[Compendium.dnd5e.spells.Item.ZPd73HtKF3At11jh]{Control Weather}
\n@UUID[Compendium.dnd5e.spells.Item.x5JNBSyIBBZsjcGT]{Earthquake}
\n@UUID[Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB]{Feeblemind}
\n@UUID[Compendium.dnd5e.spells.Item.hzK7FQya0BDjSmLE]{Sunburst}
\n9th Level
\n@UUID[Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js]{Foresight}
\n@UUID[Compendium.dnd5e.spells.Item.N2UEFq8X5LRsLcOZ]{Shapechange}
\n@UUID[Compendium.dnd5e.spells.Item.7KjExw0kmuqERa7C]{Storm of Vengeance}
\n@UUID[Compendium.dnd5e.spells.Item.qLeEXZDbW5y4bmLY]{True Resurrection}
"
+ "content": ""
},
"_id": "MWiN7ILEO0Vd3zAZ",
"image": {},
@@ -191,32 +416,141 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "spells": [
+ "Compendium.dnd5e.spells.Item.SbSvZKkJASyk8jKo",
+ "Compendium.dnd5e.spells.Item.P7mF2MxSuVJwHRRY",
+ "Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL",
+ "Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI",
+ "Compendium.dnd5e.spells.Item.eCPQuQkIabFKTl9u",
+ "Compendium.dnd5e.spells.Item.dl8YwvMboBqX2OC4",
+ "Compendium.dnd5e.spells.Item.VzgFzcmocr1X1cp4",
+ "Compendium.dnd5e.spells.Item.hDOENzjuj5WpLq7B",
+ "Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs",
+ "Compendium.dnd5e.spells.Item.a3XtAO5n2GrqiAh5",
+ "Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP",
+ "Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8",
+ "Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l",
+ "Compendium.dnd5e.spells.Item.gMrWeG8fMDPRFiVe",
+ "Compendium.dnd5e.spells.Item.nqBDWkVOfcGZt4YU",
+ "Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX",
+ "Compendium.dnd5e.spells.Item.Qf6CAZkc7ms4ZY3e",
+ "Compendium.dnd5e.spells.Item.o8Dh7fblk1d16tnO",
+ "Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h",
+ "Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8",
+ "Compendium.dnd5e.spells.Item.Kn7K5PtYUJAKZTTp",
+ "Compendium.dnd5e.spells.Item.aL1F8fvYLtNzUbKu",
+ "Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ",
+ "Compendium.dnd5e.spells.Item.X8w9EzYLGc4vQ1H2",
+ "Compendium.dnd5e.spells.Item.JPwIEfgUPVebr5AH",
+ "Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp",
+ "Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ",
+ "Compendium.dnd5e.spells.Item.KrM3oHVv13RAALrS",
+ "Compendium.dnd5e.spells.Item.Advtckpz1B733bu9",
+ "Compendium.dnd5e.spells.Item.FjYE214HTERCRZNm",
+ "Compendium.dnd5e.spells.Item.FSMy6VAjDnXY9vWz",
+ "Compendium.dnd5e.spells.Item.2yHXEcrRbadZDr5M",
+ "Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4",
+ "Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV",
+ "Compendium.dnd5e.spells.Item.Iv2qqSAT7OkXKPFx",
+ "Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV",
+ "Compendium.dnd5e.spells.Item.bV3yun6MIuFj71Er",
+ "Compendium.dnd5e.spells.Item.pRMvmknwLf2tdMTj",
+ "Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ",
+ "Compendium.dnd5e.spells.Item.9gYGkrL6qFTsE6fw",
+ "Compendium.dnd5e.spells.Item.ehvmg9U9fcMEhE4z",
+ "Compendium.dnd5e.spells.Item.1Drt0SHxbEAHxprN",
+ "Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG",
+ "Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8",
+ "Compendium.dnd5e.spells.Item.64uo4fHriHLjRUrX",
+ "Compendium.dnd5e.spells.Item.YWtwzp6ZnQJMEmVW",
+ "Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I",
+ "Compendium.dnd5e.spells.Item.dhqBY4TvVjxVmOZd",
+ "Compendium.dnd5e.spells.Item.2VXGS206tuChoeXy",
+ "Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC",
+ "Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS",
+ "Compendium.dnd5e.spells.Item.ew6GA8dJy2spQmFW",
+ "Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y",
+ "Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe",
+ "Compendium.dnd5e.spells.Item.KgEw3sDr39C6g8nY",
+ "Compendium.dnd5e.spells.Item.dEfSELiY1eO3cpX9",
+ "Compendium.dnd5e.spells.Item.7fFHlBk3UNX8gPKL",
+ "Compendium.dnd5e.spells.Item.LrPvWHBPmiMQQsKB",
+ "Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT",
+ "Compendium.dnd5e.spells.Item.czXrVRx6XYRWsHAi",
+ "Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C",
+ "Compendium.dnd5e.spells.Item.WN2LWEljYU6QqnRH",
+ "Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4",
+ "Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY",
+ "Compendium.dnd5e.spells.Item.QvGcdRUSNRKEQJlK",
+ "Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79",
+ "Compendium.dnd5e.spells.Item.X3DrXgxjwI2dvkD6",
+ "Compendium.dnd5e.spells.Item.wXzkqpeFP8eWgJzK",
+ "Compendium.dnd5e.spells.Item.MCEpGpvovcXagwQS",
+ "Compendium.dnd5e.spells.Item.dp6xny4v8PDoIGjh",
+ "Compendium.dnd5e.spells.Item.1LkZvINag7KqBmDR",
+ "Compendium.dnd5e.spells.Item.CjIq8Ed7bu3vVwT1",
+ "Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b",
+ "Compendium.dnd5e.spells.Item.WzvJ7G3cqvIubsLk",
+ "Compendium.dnd5e.spells.Item.OVikYmSdHliAG2YD",
+ "Compendium.dnd5e.spells.Item.Pyzmm8R7rVsNAPsd",
+ "Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL",
+ "Compendium.dnd5e.spells.Item.zMEo5DKK8uxsuWnq",
+ "Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20",
+ "Compendium.dnd5e.spells.Item.DUBgwHPakcLDkB6W",
+ "Compendium.dnd5e.spells.Item.NmoRmM1mhuM3pqnY",
+ "Compendium.dnd5e.spells.Item.yN3XZZujhR4aVvPa",
+ "Compendium.dnd5e.spells.Item.cYI4RNNjI5GAmLhy",
+ "Compendium.dnd5e.spells.Item.qcYitWoSMTnKkzM1",
+ "Compendium.dnd5e.spells.Item.yI0XWIgI0IGGsR3R",
+ "Compendium.dnd5e.spells.Item.2RC0EyvBLPH88PZF",
+ "Compendium.dnd5e.spells.Item.s7nXgot5gGZVcMrv",
+ "Compendium.dnd5e.spells.Item.AQsBc94ES7W7s7iG",
+ "Compendium.dnd5e.spells.Item.8PJAsHmbu6UgDHC0",
+ "Compendium.dnd5e.spells.Item.J3uILDYS7MiOfmTJ",
+ "Compendium.dnd5e.spells.Item.f38w5rd9SgdmWc6F",
+ "Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz",
+ "Compendium.dnd5e.spells.Item.9kGrFXnLiRg3Xnbo",
+ "Compendium.dnd5e.spells.Item.ERCv7yuRkQ0YjGx6",
+ "Compendium.dnd5e.spells.Item.ohqAIBg6de989CIo",
+ "Compendium.dnd5e.spells.Item.GJ2WYm3SQFR0winH",
+ "Compendium.dnd5e.spells.Item.ZPd73HtKF3At11jh",
+ "Compendium.dnd5e.spells.Item.x5JNBSyIBBZsjcGT",
+ "Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB",
+ "Compendium.dnd5e.spells.Item.hzK7FQya0BDjSmLE",
+ "Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js",
+ "Compendium.dnd5e.spells.Item.N2UEFq8X5LRsLcOZ",
+ "Compendium.dnd5e.spells.Item.7KjExw0kmuqERa7C",
+ "Compendium.dnd5e.spells.Item.qLeEXZDbW5y4bmLY",
+ "Compendium.dnd5e.spells.Item.mgFqi0ev8f7Ut19y"
+ ],
+ "identifier": "druid"
+ },
"sort": 600000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712157623554,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.MWiN7ILEO0Vd3zAZ"
},
{
"name": "Paladin Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "1st Level
\n@UUID[Compendium.dnd5e.spells.Item.8dzaICjGy6mTUaUr]{Bless}
\n@UUID[Compendium.dnd5e.spells.Item.arzCrMRgcNiQuh43]{Command}
\n@UUID[Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP]{Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.Mzh95utKDPIrjiH8]{Detect Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8]{Detect Magic}
\n@UUID[Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l]{Detect Poison and Disease}
\n@UUID[Compendium.dnd5e.spells.Item.8MICCMeOXT3aJUy9]{Divine Favor}
\n@UUID[Compendium.dnd5e.spells.Item.ge3Saet9zPTDyaoL]{Heroism}
\n@UUID[Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.Kn7K5PtYUJAKZTTp]{Purify Food and Drink}
\n@UUID[Compendium.dnd5e.spells.Item.jZ6JNykRtdQ90MOo]{Shield of Faith}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.Opwh2PdX4runSBlm]{Aid}
\n@UUID[Compendium.dnd5e.spells.Item.7UwUjJ6owIQkEPrs]{Branding Smite}
\n@UUID[Compendium.dnd5e.spells.Item.5eh2HFbS13078Y3H]{Find Steed}
\n@UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV]{Locate Object}
\n@UUID[Compendium.dnd5e.spells.Item.Sgjrf8qqv97CCWM4]{Magic Weapon}
\n@UUID[Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ]{Protection from Poison}
\n@UUID[Compendium.dnd5e.spells.Item.CylBa7jR8DSbo8Z3]{Zone of Truth}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.BV0mpbHh29IbbIj5]{Create Food and Water}
\n@UUID[Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG]{Daylight}
\n@UUID[Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8]{Dispel Magic}
\n@UUID[Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz]{Magic Circle}
\n@UUID[Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl]{Remove Curse}
\n@UUID[Compendium.dnd5e.spells.Item.LmRHHMtplpxr9fX6]{Revivify}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf]{Banishment}
\n@UUID[Compendium.dnd5e.spells.Item.VtCXMdyM6mAdIJZb]{Death Ward}
\n@UUID[Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4]{Locate Creature}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.TkJ8Wtg1L7TZtspm]{Dispel Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b]{Geas}
\n@UUID[Compendium.dnd5e.spells.Item.AGFMPAmuzwWO6Dfz]{Raise Dead}
"
+ "content": ""
},
"_id": "FhucONA0yRZQjMmb",
"image": {},
@@ -225,32 +559,67 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "identifier": "paladin",
+ "spells": [
+ "Compendium.dnd5e.spells.Item.8dzaICjGy6mTUaUr",
+ "Compendium.dnd5e.spells.Item.arzCrMRgcNiQuh43",
+ "Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP",
+ "Compendium.dnd5e.spells.Item.Mzh95utKDPIrjiH8",
+ "Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8",
+ "Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l",
+ "Compendium.dnd5e.spells.Item.8MICCMeOXT3aJUy9",
+ "Compendium.dnd5e.spells.Item.ge3Saet9zPTDyaoL",
+ "Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2",
+ "Compendium.dnd5e.spells.Item.Kn7K5PtYUJAKZTTp",
+ "Compendium.dnd5e.spells.Item.jZ6JNykRtdQ90MOo",
+ "Compendium.dnd5e.spells.Item.Opwh2PdX4runSBlm",
+ "Compendium.dnd5e.spells.Item.7UwUjJ6owIQkEPrs",
+ "Compendium.dnd5e.spells.Item.5eh2HFbS13078Y3H",
+ "Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV",
+ "Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV",
+ "Compendium.dnd5e.spells.Item.Sgjrf8qqv97CCWM4",
+ "Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ",
+ "Compendium.dnd5e.spells.Item.CylBa7jR8DSbo8Z3",
+ "Compendium.dnd5e.spells.Item.BV0mpbHh29IbbIj5",
+ "Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG",
+ "Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8",
+ "Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz",
+ "Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl",
+ "Compendium.dnd5e.spells.Item.LmRHHMtplpxr9fX6",
+ "Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf",
+ "Compendium.dnd5e.spells.Item.VtCXMdyM6mAdIJZb",
+ "Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4",
+ "Compendium.dnd5e.spells.Item.TkJ8Wtg1L7TZtspm",
+ "Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b",
+ "Compendium.dnd5e.spells.Item.AGFMPAmuzwWO6Dfz"
+ ]
+ },
"sort": 700000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712157680920,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.FhucONA0yRZQjMmb"
},
{
"name": "Ranger Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "1st Level
\n@UUID[Compendium.dnd5e.spells.Item.7p9IuWrSWFgfyQo2]{Alarm}
\n@UUID[Compendium.dnd5e.spells.Item.hDOENzjuj5WpLq7B]{Animal Friendship}
\n@UUID[Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP]{Cure Wounds}
\n@UUID[Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8]{Detect Magic}
\n@UUID[Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l]{Detect Poison and Disease}
\n@UUID[Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX]{Fog Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.Qf6CAZkc7ms4ZY3e]{Goodberry}
\n@UUID[Compendium.dnd5e.spells.Item.0xmXiPiuYws1OGcX]{Hunter's Mark}
\n@UUID[Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h]{Jump}
\n@UUID[Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8]{Longstrider}
\n@UUID[Compendium.dnd5e.spells.Item.aL1F8fvYLtNzUbKu]{Speak with Animals}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.X8w9EzYLGc4vQ1H2]{Animal Messenger}
\n@UUID[Compendium.dnd5e.spells.Item.JPwIEfgUPVebr5AH]{Barkskin}
\n@UUID[Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp]{Darkvision}
\n@UUID[Compendium.dnd5e.spells.Item.KrM3oHVv13RAALrS]{Find Traps}
\n@UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration}
\n@UUID[Compendium.dnd5e.spells.Item.Iv2qqSAT7OkXKPFx]{Locate Animals or Plants}
\n@UUID[Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV]{Locate Object}
\n@UUID[Compendium.dnd5e.spells.Item.pRMvmknwLf2tdMTj]{Pass without Trace}
\n@UUID[Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ]{Protection from Poison}
\n@UUID[Compendium.dnd5e.spells.Item.5VhqFROQYjr1P9lp]{Silence}
\n@UUID[Compendium.dnd5e.spells.Item.9gYGkrL6qFTsE6fw]{Spike Growth}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.1Drt0SHxbEAHxprN]{Conjure Animals}
\n@UUID[Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG]{Daylight}
\n@UUID[Compendium.dnd5e.spells.Item.aU62xVUBYkAQWIHv]{Nondetection}
\n@UUID[Compendium.dnd5e.spells.Item.YWtwzp6ZnQJMEmVW]{Plant Growth}
\n@UUID[Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I]{Protection from Energy}
\n@UUID[Compendium.dnd5e.spells.Item.2VXGS206tuChoeXy]{Speak with Plants}
\n@UUID[Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC]{Water Breathing}
\n@UUID[Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS]{Water Walk}
\n@UUID[Compendium.dnd5e.spells.Item.ew6GA8dJy2spQmFW]{Wind Wall}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.dEfSELiY1eO3cpX9]{Conjure Woodland Beings}
\n@UUID[Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT]{Freedom of Movement}
\n@UUID[Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4]{Locate Creature}
\n@UUID[Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79]{Stoneskin}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.dp6xny4v8PDoIGjh]{Commune with Nature}
\n@UUID[Compendium.dnd5e.spells.Item.DUBgwHPakcLDkB6W]{Tree Stride}
"
+ "content": ""
},
"_id": "sANq9JMycfSq3A5d",
"image": {},
@@ -259,32 +628,73 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "identifier": "ranger",
+ "spells": [
+ "Compendium.dnd5e.spells.Item.7p9IuWrSWFgfyQo2",
+ "Compendium.dnd5e.spells.Item.hDOENzjuj5WpLq7B",
+ "Compendium.dnd5e.spells.Item.uUWb1wZgtMou0TVP",
+ "Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8",
+ "Compendium.dnd5e.spells.Item.2skfDtglk1mGrb3l",
+ "Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX",
+ "Compendium.dnd5e.spells.Item.Qf6CAZkc7ms4ZY3e",
+ "Compendium.dnd5e.spells.Item.0xmXiPiuYws1OGcX",
+ "Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h",
+ "Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8",
+ "Compendium.dnd5e.spells.Item.aL1F8fvYLtNzUbKu",
+ "Compendium.dnd5e.spells.Item.X8w9EzYLGc4vQ1H2",
+ "Compendium.dnd5e.spells.Item.JPwIEfgUPVebr5AH",
+ "Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp",
+ "Compendium.dnd5e.spells.Item.KrM3oHVv13RAALrS",
+ "Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV",
+ "Compendium.dnd5e.spells.Item.Iv2qqSAT7OkXKPFx",
+ "Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV",
+ "Compendium.dnd5e.spells.Item.pRMvmknwLf2tdMTj",
+ "Compendium.dnd5e.spells.Item.MAxM77CDUu8dgIRQ",
+ "Compendium.dnd5e.spells.Item.5VhqFROQYjr1P9lp",
+ "Compendium.dnd5e.spells.Item.9gYGkrL6qFTsE6fw",
+ "Compendium.dnd5e.spells.Item.1Drt0SHxbEAHxprN",
+ "Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG",
+ "Compendium.dnd5e.spells.Item.aU62xVUBYkAQWIHv",
+ "Compendium.dnd5e.spells.Item.YWtwzp6ZnQJMEmVW",
+ "Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I",
+ "Compendium.dnd5e.spells.Item.2VXGS206tuChoeXy",
+ "Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC",
+ "Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS",
+ "Compendium.dnd5e.spells.Item.ew6GA8dJy2spQmFW",
+ "Compendium.dnd5e.spells.Item.dEfSELiY1eO3cpX9",
+ "Compendium.dnd5e.spells.Item.da0a1t2FqaTjRZGT",
+ "Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4",
+ "Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79",
+ "Compendium.dnd5e.spells.Item.dp6xny4v8PDoIGjh",
+ "Compendium.dnd5e.spells.Item.DUBgwHPakcLDkB6W"
+ ]
+ },
"sort": 800000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712157764641,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.sANq9JMycfSq3A5d"
},
{
"name": "Sorcerer Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "Cantrips (0 Level)
\n@UUID[Compendium.dnd5e.spells.Item.JLTQyqXEaJDrTXyW]{Acid Splash}
\n@UUID[Compendium.dnd5e.spells.Item.vrN18tbTw7io5MWd]{Chill Touch}
\n@UUID[Compendium.dnd5e.spells.Item.CAxSzHWizrafT033]{Dancing Lights}
\n@UUID[Compendium.dnd5e.spells.Item.EOmsUcFQJTfG2oio]{Fire Bolt}
\n@UUID[Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi]{Light}
\n@UUID[Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3]{Mage Hand}
\n@UUID[Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL]{Mending}
\n@UUID[Compendium.dnd5e.spells.Item.icZokbgV1jIMpNCv]{Message}
\n@UUID[Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU]{Minor Illusion}
\n@UUID[Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI]{Poison Spray}
\n@UUID[Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ]{Prestidigitation}
\n@UUID[Compendium.dnd5e.spells.Item.ctW81uiX56xZR2c5]{Ray of Frost}
\n@UUID[Compendium.dnd5e.spells.Item.XvbiNhNqXXIFisIy]{Shocking Grasp}
\n@UUID[Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG]{True Strike}
\n1st Level
\n@UUID[Compendium.dnd5e.spells.Item.5SuJewoa1CRWaj1F]{Burning Hands}
\n@UUID[Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs]{Charm Person}
\n@UUID[Compendium.dnd5e.spells.Item.LWTUqKkUQdMAmOe0]{Color Spray}
\n@UUID[Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}
\n@UUID[Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8]{Detect Magic}
\n@UUID[Compendium.dnd5e.spells.Item.A3q2gTNqG6fvNGrv]{Disguise Self}
\n@UUID[Compendium.dnd5e.spells.Item.zPGohqJRir6MyQ3U]{Expeditious Retreat}
\n@UUID[Compendium.dnd5e.spells.Item.7e3QXF10hLNDEdr6]{False Life}
\n@UUID[Compendium.dnd5e.spells.Item.pub0OWVEB71XQx1n]{Feather Fall}
\n@UUID[Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX]{Fog Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h]{Jump}
\n@UUID[Compendium.dnd5e.spells.Item.CKZTpZlxj7hjjo2H]{Mage Armor}
\n@UUID[Compendium.dnd5e.spells.Item.41JIhpDyM9Anm7cs]{Magic Missile}]
\n@UUID[Compendium.dnd5e.spells.Item.z1mx84ONwkXKUZd7]{Shield}
\n@UUID[Compendium.dnd5e.spells.Item.BrBZdCCrJRIVg7YX]{Silent Image}
\n@UUID[Compendium.dnd5e.spells.Item.KhwiSi9fwVfUPtku]{Sleep}
\n@UUID[Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ]{Thunderwave}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.8RTDOt80u8aBv9qx]{Alter Self}
\n@UUID[Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3]{Blindness/Deafness}
\n@UUID[Compendium.dnd5e.spells.Item.UDUnlfPsOAbq2RSE]{Blur}
\n@UUID[Compendium.dnd5e.spells.Item.S7VbUetIfVT7B6Eq]{Darkness}
\n@UUID[Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp]{Darkvision}
\n@UUID[Compendium.dnd5e.spells.Item.ppWAAEul0QHtm4er]{Detect Thoughts}
\n@UUID[Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ]{Enhance Ability}
\n@UUID[Compendium.dnd5e.spells.Item.WahI41a3goVUg0x1]{Enlarge/Reduce}
\n@UUID[Compendium.dnd5e.spells.Item.FSMy6VAjDnXY9vWz]{Gust of Wind}
\n@UUID[Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4]{Hold Person}
\n@UUID[Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B]{Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.1nhIxh0DsJsntCfj]{Knock}
\n@UUID[Compendium.dnd5e.spells.Item.MRxldJd6C4bsBo3O]{Levitate}
\n@UUID[Compendium.dnd5e.spells.Item.X4c8xCkmF8U9HUMz]{Mirror Image}
\n@UUID[Compendium.dnd5e.spells.Item.wqfAVANuQonNBgnL]{Misty Step}
\n@UUID[Compendium.dnd5e.spells.Item.7u2obDvuvtZBkTfq]{Scorching Ray}
\n@UUID[Compendium.dnd5e.spells.Item.DQzlB5Y3k791W5bH]{See Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb]{Shatter}
\n@UUID[Compendium.dnd5e.spells.Item.KJRVzeMQXPj8Gtyx]{Spider Climb}
\n@UUID[Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4]{Suggestion}
\n@UUID[Compendium.dnd5e.spells.Item.UJJu9c2UvCzVljiP]{Web}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.GSvLWcdCZLQkilXT]{Blink}
\n@UUID[Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL]{Clairvoyance}
\n@UUID[Compendium.dnd5e.spells.Item.Ek45cBpVXvJdv1Qy]{Counterspell}
\n@UUID[Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG]{Daylight}
\n@UUID[Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8]{Dispel Magic}
\n@UUID[Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0]{Fear}
\n@UUID[Compendium.dnd5e.spells.Item.ztgcdrWPshKRpFd0]{Fireball}
\n@UUID[Compendium.dnd5e.spells.Item.yfbK8gZqESlaoY5t]{Fly}
\n@UUID[Compendium.dnd5e.spells.Item.2IWiZAJtOGDoKjiz]{Gaseous Form}
\n@UUID[Compendium.dnd5e.spells.Item.Szvk5FEVQW3uhJi5]{Haste}
\n@UUID[Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}
\n@UUID[Compendium.dnd5e.spells.Item.IyikgTEOTv701jgQ]{Lightning Bolt}
\n@UUID[Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp]{Major Image}
\n@UUID[Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I]{Protection from Energy}
\n@UUID[Compendium.dnd5e.spells.Item.dhqBY4TvVjxVmOZd]{Sleet Storm}
\n@UUID[Compendium.dnd5e.spells.Item.yqUDoxk4x0NWG5Bz]{Slow}
\n@UUID[Compendium.dnd5e.spells.Item.TwlD4PLcltv7Xh7j]{Stinking Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8]{Tongues}
\n@UUID[Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC]{Water Breathing}
\n@UUID[Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS]{Water Walk}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf]{Banishment}
\n@UUID[Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y]{Blight}
\n@UUID[Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe]{Confusion}
\n@UUID[Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j]{Dimension Door}
\n@UUID[Compendium.dnd5e.spells.Item.LrPvWHBPmiMQQsKB]{Dominate Beast}
\n@UUID[Compendium.dnd5e.spells.Item.tEpDmYZNGc9f5OhJ]{Greater Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.WN2LWEljYU6QqnRH]{Ice Storm}
\n@UUID[Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY]{Polymorph}
\n@UUID[Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79]{Stoneskin}
\n@UUID[Compendium.dnd5e.spells.Item.X3DrXgxjwI2dvkD6]{Wall of Fire}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.ATo0Eb63TDtnu6iA]{Animate Objects}
\n@UUID[Compendium.dnd5e.spells.Item.LkvI11Uue774QBKZ]{Cloudkill}
\n@UUID[Compendium.dnd5e.spells.Item.RpKjTlYASrfqUPVA]{Cone of Cold}
\n@UUID[Compendium.dnd5e.spells.Item.lnaGnxMzpYnbw1uU]{Creation}
\n@UUID[Compendium.dnd5e.spells.Item.91Sw6vOIaO7U8DvM]{Dominate Person}
\n@UUID[Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm]{Hold Monster}
\n@UUID[Compendium.dnd5e.spells.Item.OVikYmSdHliAG2YD]{Insect Plague}
\n@UUID[Compendium.dnd5e.spells.Item.mbFw57uyfLkyiw5k]{Seeming}
\n@UUID[Compendium.dnd5e.spells.Item.HQfd7jJyULIoGxrZ]{Telekinesis}
\n@UUID[Compendium.dnd5e.spells.Item.8aWtP5hcrmcEesBW]{Teleportation Circle}
\n@UUID[Compendium.dnd5e.spells.Item.NmoRmM1mhuM3pqnY]{Wall of Stone}
\n6th Level
\n@UUID[Compendium.dnd5e.spells.Item.QbTxN5dWIbYZ4jLU]{Chain Lightning}
\n@UUID[Compendium.dnd5e.spells.Item.KeunEkg1JYbOCOhV]{Circle of Death}
\n@UUID[Compendium.dnd5e.spells.Item.HBHbOGKNVVprSlwn]{Disintegrate}
\n@UUID[Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy]{Eyebite}
\n@UUID[Compendium.dnd5e.spells.Item.WmQpxfjZwF3MGUby]{Globe of Invulnerability}
\n@UUID[Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6]{Mass Suggestion}
\n@UUID[Compendium.dnd5e.spells.Item.yI0XWIgI0IGGsR3R]{Move Earth}
\n@UUID[Compendium.dnd5e.spells.Item.2RC0EyvBLPH88PZF]{Sunbeam}
\n@UUID[Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD]{True Seeing}
\n7th Level
\n@UUID[Compendium.dnd5e.spells.Item.AoTTjapz1FsGOIZz]{Delayed Blast Fireball}
\n@UUID[Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN]{Etherealness}
\n@UUID[Compendium.dnd5e.spells.Item.HPvZm8YJO91k6Qdg]{Finger of Death}
\n@UUID[Compendium.dnd5e.spells.Item.J3uILDYS7MiOfmTJ]{Fire Storm}
\n@UUID[Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz]{Plane Shift}
\n@UUID[Compendium.dnd5e.spells.Item.eGMhwmuleAM46C6L]{Prismatic Spray}
\n@UUID[Compendium.dnd5e.spells.Item.ERCv7yuRkQ0YjGx6]{Reverse Gravity}
\n@UUID[Compendium.dnd5e.spells.Item.L4J89JXqbKs6puEV]{Teleport}
\n8th Level
\n@UUID[Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp]{Dominate Monster}
\n@UUID[Compendium.dnd5e.spells.Item.x5JNBSyIBBZsjcGT]{Earthquake}
\n@UUID[Compendium.dnd5e.spells.Item.pV04y1iXoWiom6bp]{Incendiary Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj]{Power Word Stun}
\n@UUID[Compendium.dnd5e.spells.Item.hzK7FQya0BDjSmLE]{Sunburst}
\n9th Level
\n@UUID[Compendium.dnd5e.spells.Item.XbwGq5kDJNvAxNXV]{Gate}
\n@UUID[Compendium.dnd5e.spells.Item.mF52ldF79Cr7wfQo]{Meteor Swarm}
\n@UUID[Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S]{Power Word Kill}
\n@UUID[Compendium.dnd5e.spells.Item.JYuRBwxpoFhXduvD]{Time Stop}
\n@UUID[Compendium.dnd5e.spells.Item.3okM6Gn63zzEULkz]{Wish}
"
+ "content": ""
},
"_id": "PVgly1xB2S2I8GLQ",
"image": {},
@@ -293,32 +703,156 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "identifier": "sorcerer",
+ "spells": [
+ "Compendium.dnd5e.spells.Item.JLTQyqXEaJDrTXyW",
+ "Compendium.dnd5e.spells.Item.vrN18tbTw7io5MWd",
+ "Compendium.dnd5e.spells.Item.CAxSzHWizrafT033",
+ "Compendium.dnd5e.spells.Item.EOmsUcFQJTfG2oio",
+ "Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi",
+ "Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3",
+ "Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL",
+ "Compendium.dnd5e.spells.Item.icZokbgV1jIMpNCv",
+ "Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU",
+ "Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI",
+ "Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ",
+ "Compendium.dnd5e.spells.Item.ctW81uiX56xZR2c5",
+ "Compendium.dnd5e.spells.Item.XvbiNhNqXXIFisIy",
+ "Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG",
+ "Compendium.dnd5e.spells.Item.5SuJewoa1CRWaj1F",
+ "Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs",
+ "Compendium.dnd5e.spells.Item.LWTUqKkUQdMAmOe0",
+ "Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k",
+ "Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8",
+ "Compendium.dnd5e.spells.Item.A3q2gTNqG6fvNGrv",
+ "Compendium.dnd5e.spells.Item.zPGohqJRir6MyQ3U",
+ "Compendium.dnd5e.spells.Item.7e3QXF10hLNDEdr6",
+ "Compendium.dnd5e.spells.Item.pub0OWVEB71XQx1n",
+ "Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX",
+ "Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h",
+ "Compendium.dnd5e.spells.Item.CKZTpZlxj7hjjo2H",
+ "Compendium.dnd5e.spells.Item.41JIhpDyM9Anm7cs",
+ "Compendium.dnd5e.spells.Item.z1mx84ONwkXKUZd7",
+ "Compendium.dnd5e.spells.Item.BrBZdCCrJRIVg7YX",
+ "Compendium.dnd5e.spells.Item.KhwiSi9fwVfUPtku",
+ "Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ",
+ "Compendium.dnd5e.spells.Item.8RTDOt80u8aBv9qx",
+ "Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3",
+ "Compendium.dnd5e.spells.Item.UDUnlfPsOAbq2RSE",
+ "Compendium.dnd5e.spells.Item.S7VbUetIfVT7B6Eq",
+ "Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp",
+ "Compendium.dnd5e.spells.Item.ppWAAEul0QHtm4er",
+ "Compendium.dnd5e.spells.Item.9eOZDBImVKxbeOyZ",
+ "Compendium.dnd5e.spells.Item.WahI41a3goVUg0x1",
+ "Compendium.dnd5e.spells.Item.FSMy6VAjDnXY9vWz",
+ "Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4",
+ "Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B",
+ "Compendium.dnd5e.spells.Item.1nhIxh0DsJsntCfj",
+ "Compendium.dnd5e.spells.Item.MRxldJd6C4bsBo3O",
+ "Compendium.dnd5e.spells.Item.X4c8xCkmF8U9HUMz",
+ "Compendium.dnd5e.spells.Item.wqfAVANuQonNBgnL",
+ "Compendium.dnd5e.spells.Item.7u2obDvuvtZBkTfq",
+ "Compendium.dnd5e.spells.Item.DQzlB5Y3k791W5bH",
+ "Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb",
+ "Compendium.dnd5e.spells.Item.KJRVzeMQXPj8Gtyx",
+ "Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4",
+ "Compendium.dnd5e.spells.Item.UJJu9c2UvCzVljiP",
+ "Compendium.dnd5e.spells.Item.GSvLWcdCZLQkilXT",
+ "Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL",
+ "Compendium.dnd5e.spells.Item.Ek45cBpVXvJdv1Qy",
+ "Compendium.dnd5e.spells.Item.BP3GCwa66IAw1yTG",
+ "Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8",
+ "Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0",
+ "Compendium.dnd5e.spells.Item.ztgcdrWPshKRpFd0",
+ "Compendium.dnd5e.spells.Item.yfbK8gZqESlaoY5t",
+ "Compendium.dnd5e.spells.Item.2IWiZAJtOGDoKjiz",
+ "Compendium.dnd5e.spells.Item.Szvk5FEVQW3uhJi5",
+ "Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd",
+ "Compendium.dnd5e.spells.Item.IyikgTEOTv701jgQ",
+ "Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp",
+ "Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I",
+ "Compendium.dnd5e.spells.Item.dhqBY4TvVjxVmOZd",
+ "Compendium.dnd5e.spells.Item.yqUDoxk4x0NWG5Bz",
+ "Compendium.dnd5e.spells.Item.TwlD4PLcltv7Xh7j",
+ "Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8",
+ "Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC",
+ "Compendium.dnd5e.spells.Item.YBda6nLKjxdT1LbS",
+ "Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf",
+ "Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y",
+ "Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe",
+ "Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j",
+ "Compendium.dnd5e.spells.Item.LrPvWHBPmiMQQsKB",
+ "Compendium.dnd5e.spells.Item.tEpDmYZNGc9f5OhJ",
+ "Compendium.dnd5e.spells.Item.WN2LWEljYU6QqnRH",
+ "Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY",
+ "Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79",
+ "Compendium.dnd5e.spells.Item.X3DrXgxjwI2dvkD6",
+ "Compendium.dnd5e.spells.Item.ATo0Eb63TDtnu6iA",
+ "Compendium.dnd5e.spells.Item.LkvI11Uue774QBKZ",
+ "Compendium.dnd5e.spells.Item.RpKjTlYASrfqUPVA",
+ "Compendium.dnd5e.spells.Item.lnaGnxMzpYnbw1uU",
+ "Compendium.dnd5e.spells.Item.91Sw6vOIaO7U8DvM",
+ "Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm",
+ "Compendium.dnd5e.spells.Item.OVikYmSdHliAG2YD",
+ "Compendium.dnd5e.spells.Item.mbFw57uyfLkyiw5k",
+ "Compendium.dnd5e.spells.Item.HQfd7jJyULIoGxrZ",
+ "Compendium.dnd5e.spells.Item.8aWtP5hcrmcEesBW",
+ "Compendium.dnd5e.spells.Item.NmoRmM1mhuM3pqnY",
+ "Compendium.dnd5e.spells.Item.QbTxN5dWIbYZ4jLU",
+ "Compendium.dnd5e.spells.Item.KeunEkg1JYbOCOhV",
+ "Compendium.dnd5e.spells.Item.HBHbOGKNVVprSlwn",
+ "Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy",
+ "Compendium.dnd5e.spells.Item.WmQpxfjZwF3MGUby",
+ "Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6",
+ "Compendium.dnd5e.spells.Item.yI0XWIgI0IGGsR3R",
+ "Compendium.dnd5e.spells.Item.2RC0EyvBLPH88PZF",
+ "Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD",
+ "Compendium.dnd5e.spells.Item.AoTTjapz1FsGOIZz",
+ "Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN",
+ "Compendium.dnd5e.spells.Item.HPvZm8YJO91k6Qdg",
+ "Compendium.dnd5e.spells.Item.J3uILDYS7MiOfmTJ",
+ "Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz",
+ "Compendium.dnd5e.spells.Item.eGMhwmuleAM46C6L",
+ "Compendium.dnd5e.spells.Item.ERCv7yuRkQ0YjGx6",
+ "Compendium.dnd5e.spells.Item.L4J89JXqbKs6puEV",
+ "Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp",
+ "Compendium.dnd5e.spells.Item.x5JNBSyIBBZsjcGT",
+ "Compendium.dnd5e.spells.Item.pV04y1iXoWiom6bp",
+ "Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj",
+ "Compendium.dnd5e.spells.Item.hzK7FQya0BDjSmLE",
+ "Compendium.dnd5e.spells.Item.XbwGq5kDJNvAxNXV",
+ "Compendium.dnd5e.spells.Item.mF52ldF79Cr7wfQo",
+ "Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S",
+ "Compendium.dnd5e.spells.Item.JYuRBwxpoFhXduvD",
+ "Compendium.dnd5e.spells.Item.3okM6Gn63zzEULkz"
+ ]
+ },
"sort": 900000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712157997547,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.PVgly1xB2S2I8GLQ"
},
{
"name": "Warlock Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "Cantrips (0 Level)
\n@UUID[Compendium.dnd5e.spells.Item.vrN18tbTw7io5MWd]{Chill Touch}
\n@UUID[Compendium.dnd5e.spells.Item.Z9p1vezIn95jw1Yw]{Eldritch Blast}
\n@UUID[Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3]{Mage Hand}
\n@UUID[Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU]{Minor Illusion}
\n@UUID[Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI]{Poison Spray}
\n@UUID[Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ]{Prestidigitation}
\n@UUID[Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG]{True Strike}
\n1st Level
\n@UUID[Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs]{Charm Person}
\n@UUID[Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}
\n@UUID[Compendium.dnd5e.spells.Item.zPGohqJRir6MyQ3U]{Expeditious Retreat}
\n@UUID[Compendium.dnd5e.spells.Item.22dPoeXfaaAv4K3h]{Hellish Rebuke}
\n@UUID[Compendium.dnd5e.spells.Item.82jM6qD9axLJsTrH]{Illusory Script}
\n@UUID[Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.ccduLIvutyNqvkgv]{Unseen Servant}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.S7VbUetIfVT7B6Eq]{Darkness}
\n@UUID[Compendium.dnd5e.spells.Item.30ZgXtijJVCxQk5N]{Enthrall}
\n@UUID[Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4]{Hold Person}
\n@UUID[Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B]{Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.X4c8xCkmF8U9HUMz]{Mirror Image}
\n@UUID[Compendium.dnd5e.spells.Item.wqfAVANuQonNBgnL]{Misty Step}
\n@UUID[Compendium.dnd5e.spells.Item.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement}
\n@UUID[Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb]{Shatter}
\n@UUID[Compendium.dnd5e.spells.Item.KJRVzeMQXPj8Gtyx]{Spider Climb}
\n@UUID[Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4]{Suggestion}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.Ek45cBpVXvJdv1Qy]{Counterspell}
\n@UUID[Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8]{Dispel Magic}
\n@UUID[Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0]{Fear}
\n@UUID[Compendium.dnd5e.spells.Item.yfbK8gZqESlaoY5t]{Fly}
\n@UUID[Compendium.dnd5e.spells.Item.2IWiZAJtOGDoKjiz]{Gaseous Form}
\n@UUID[Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}
\n@UUID[Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz]{Magic Circle}
\n@UUID[Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp]{Major Image}
\n@UUID[Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl]{Remove Curse}
\n@UUID[Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8]{Tongues}
\n@UUID[Compendium.dnd5e.spells.Item.UfHQhA54M4323gVO]{Vampiric Touch}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf]{Banishment}
\n@UUID[Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y]{Blight}
\n@UUID[Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j]{Dimension Door}
\n@UUID[Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.dSTu1MaPhBqPITwM]{Contact Other Plane}
\n@UUID[Compendium.dnd5e.spells.Item.kSPRpeIx3w3nihrF]{Dream}
\n@UUID[Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm]{Hold Monster}
\n@UUID[Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20]{Scrying}
\n6th Level
\n@UUID[Compendium.dnd5e.spells.Item.KeunEkg1JYbOCOhV]{Circle of Death}
\n@UUID[Compendium.dnd5e.spells.Item.yN3XZZujhR4aVvPa]{Conjure Fey}
\n@UUID[Compendium.dnd5e.spells.Item.E4NXux0RHvME1XgP]{Create Undead}
\n@UUID[Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy]{Eyebite}
\n@UUID[Compendium.dnd5e.spells.Item.kozNy29b0X6exFhY]{Flesh to Stone}
\n@UUID[Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6]{Mass Suggestion}
\n@UUID[Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD]{True Seeing}
\n7th Level
\n@UUID[Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN]{Etherealness}
\n@UUID[Compendium.dnd5e.spells.Item.HPvZm8YJO91k6Qdg]{Finger of Death}
\n@UUID[Compendium.dnd5e.spells.Item.Y7uWUO4yqUN0JKl0]{Forcecage}
\n@UUID[Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz]{Plane Shift}
\n8th Level
\n@UUID[Compendium.dnd5e.spells.Item.xNM9CzQQr2CieM4B]{Demiplane}
\n@UUID[Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp]{Dominate Monster}
\n@UUID[Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB]{Feeblemind}
\n@UUID[Compendium.dnd5e.spells.Item.1RzxKZzkQOoioxPj]{Glibness}
\n@UUID[Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj]{Power Word Stun}
\n9th Level
\n@UUID[Compendium.dnd5e.spells.Item.TIoadMIsUKD4edXi]{Astral Projection}
\n@UUID[Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js]{Foresight}
\n@UUID[Compendium.dnd5e.spells.Item.ZVnL9L8v1KC9TBF4]{Imprisonment}
\n@UUID[Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S]{Power Word Kill}
\n@UUID[Compendium.dnd5e.spells.Item.QbQZKoXOgHWN06aa]{True Polymorph}
"
+ "content": ""
},
"_id": "mx4TsSbBIAaAkhQ7",
"image": {},
@@ -327,32 +861,100 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "spells": [
+ "Compendium.dnd5e.spells.Item.vrN18tbTw7io5MWd",
+ "Compendium.dnd5e.spells.Item.Z9p1vezIn95jw1Yw",
+ "Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3",
+ "Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU",
+ "Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI",
+ "Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ",
+ "Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG",
+ "Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs",
+ "Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k",
+ "Compendium.dnd5e.spells.Item.zPGohqJRir6MyQ3U",
+ "Compendium.dnd5e.spells.Item.22dPoeXfaaAv4K3h",
+ "Compendium.dnd5e.spells.Item.82jM6qD9axLJsTrH",
+ "Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2",
+ "Compendium.dnd5e.spells.Item.ccduLIvutyNqvkgv",
+ "Compendium.dnd5e.spells.Item.S7VbUetIfVT7B6Eq",
+ "Compendium.dnd5e.spells.Item.30ZgXtijJVCxQk5N",
+ "Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4",
+ "Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B",
+ "Compendium.dnd5e.spells.Item.X4c8xCkmF8U9HUMz",
+ "Compendium.dnd5e.spells.Item.wqfAVANuQonNBgnL",
+ "Compendium.dnd5e.spells.Item.ODhLKBxLnvvLOnw1",
+ "Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb",
+ "Compendium.dnd5e.spells.Item.KJRVzeMQXPj8Gtyx",
+ "Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4",
+ "Compendium.dnd5e.spells.Item.Ek45cBpVXvJdv1Qy",
+ "Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8",
+ "Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0",
+ "Compendium.dnd5e.spells.Item.yfbK8gZqESlaoY5t",
+ "Compendium.dnd5e.spells.Item.2IWiZAJtOGDoKjiz",
+ "Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd",
+ "Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz",
+ "Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp",
+ "Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl",
+ "Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8",
+ "Compendium.dnd5e.spells.Item.UfHQhA54M4323gVO",
+ "Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf",
+ "Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y",
+ "Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j",
+ "Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C",
+ "Compendium.dnd5e.spells.Item.dSTu1MaPhBqPITwM",
+ "Compendium.dnd5e.spells.Item.kSPRpeIx3w3nihrF",
+ "Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm",
+ "Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20",
+ "Compendium.dnd5e.spells.Item.KeunEkg1JYbOCOhV",
+ "Compendium.dnd5e.spells.Item.yN3XZZujhR4aVvPa",
+ "Compendium.dnd5e.spells.Item.E4NXux0RHvME1XgP",
+ "Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy",
+ "Compendium.dnd5e.spells.Item.kozNy29b0X6exFhY",
+ "Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6",
+ "Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD",
+ "Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN",
+ "Compendium.dnd5e.spells.Item.HPvZm8YJO91k6Qdg",
+ "Compendium.dnd5e.spells.Item.Y7uWUO4yqUN0JKl0",
+ "Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz",
+ "Compendium.dnd5e.spells.Item.xNM9CzQQr2CieM4B",
+ "Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp",
+ "Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB",
+ "Compendium.dnd5e.spells.Item.1RzxKZzkQOoioxPj",
+ "Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj",
+ "Compendium.dnd5e.spells.Item.TIoadMIsUKD4edXi",
+ "Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js",
+ "Compendium.dnd5e.spells.Item.ZVnL9L8v1KC9TBF4",
+ "Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S",
+ "Compendium.dnd5e.spells.Item.QbQZKoXOgHWN06aa"
+ ],
+ "identifier": "warlock"
+ },
"sort": 1000000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712158205691,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.mx4TsSbBIAaAkhQ7"
},
{
"name": "Wizard Spells",
- "type": "text",
+ "type": "spells",
"title": {
"show": false,
"level": 1
},
"text": {
"format": 1,
- "content": "Cantrips (0 Level)
\n@UUID[Compendium.dnd5e.spells.Item.JLTQyqXEaJDrTXyW]{Acid Splash}
\n@UUID[Compendium.dnd5e.spells.Item.vrN18tbTw7io5MWd]{Chill Touch}
\n@UUID[Compendium.dnd5e.spells.Item.CAxSzHWizrafT033]{Dancing Lights}
\n@UUID[Compendium.dnd5e.spells.Item.EOmsUcFQJTfG2oio]{Fire Bolt}
\n@UUID[Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi]{Light}
\n@UUID[Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3]{Mage Hand}
\n@UUID[Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL]{Mending}
\n@UUID[Compendium.dnd5e.spells.Item.icZokbgV1jIMpNCv]{Message}
\n@UUID[Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU]{Minor Illusion}
\n@UUID[Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI]{Poison Spray}
\n@UUID[Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ]{Prestidigitation}
\n@UUID[Compendium.dnd5e.spells.Item.ctW81uiX56xZR2c5]{Ray of Frost}
\n@UUID[Compendium.dnd5e.spells.Item.XvbiNhNqXXIFisIy]{Shocking Grasp}
\n@UUID[Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG]{True Strike}
\n1st Level
\n@UUID[Compendium.dnd5e.spells.Item.7p9IuWrSWFgfyQo2]{Alarm}
\n@UUID[Compendium.dnd5e.spells.Item.5SuJewoa1CRWaj1F]{Burning Hands}
\n@UUID[Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs]{Charm Person}
\n@UUID[Compendium.dnd5e.spells.Item.LWTUqKkUQdMAmOe0]{Color Spray}
\n@UUID[Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k]{Comprehend Languages}
\n@UUID[Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8]{Detect Magic}
\n@UUID[Compendium.dnd5e.spells.Item.A3q2gTNqG6fvNGrv]{Disguise Self}
\n@UUID[Compendium.dnd5e.spells.Item.zPGohqJRir6MyQ3U]{Expeditious Retreat}
\n@UUID[Compendium.dnd5e.spells.Item.7e3QXF10hLNDEdr6]{False Life}
\n@UUID[Compendium.dnd5e.spells.Item.pub0OWVEB71XQx1n]{Feather Fall}
\n@UUID[Compendium.dnd5e.spells.Item.JGT5bNqu9REL7Fuz]{Find Familiar}
\n@UUID[Compendium.dnd5e.spells.Item.bnjXlk13ZRJuf5d0]{Floating Disk}
\n@UUID[Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX]{Fog Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.etgcR9wqmrhyZ0tx]{Grease}
\n@UUID[Compendium.dnd5e.spells.Item.BQk5Row4NymMnUQl]{Hideous Laughter}
\n@UUID[Compendium.dnd5e.spells.Item.3OZnNhunvRtPOQmH]{Identify}
\n@UUID[Compendium.dnd5e.spells.Item.82jM6qD9axLJsTrH]{Illusory Script}
\n@UUID[Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h]{Jump}
\n@UUID[Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8]{Longstrider}
\n@UUID[Compendium.dnd5e.spells.Item.CKZTpZlxj7hjjo2H]{Mage Armor}
\n@UUID[Compendium.dnd5e.spells.Item.41JIhpDyM9Anm7cs]{Magic Missile}
\n@UUID[Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2]{Protection from Evil and Good}
\n@UUID[Compendium.dnd5e.spells.Item.z1mx84ONwkXKUZd7]{Shield}
\n@UUID[Compendium.dnd5e.spells.Item.BrBZdCCrJRIVg7YX]{Silent Image}
\n@UUID[Compendium.dnd5e.spells.Item.KhwiSi9fwVfUPtku]{Sleep}
\n@UUID[Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ]{Thunderwave}
\n@UUID[Compendium.dnd5e.spells.Item.ccduLIvutyNqvkgv]{Unseen Servant}
\n2nd Level
\n@UUID[Compendium.dnd5e.spells.Item.4H6YgYdKgnX6ZQ8M]{Acid Arrow}
\n@UUID[Compendium.dnd5e.spells.Item.8RTDOt80u8aBv9qx]{Alter Self}
\n@UUID[Compendium.dnd5e.spells.Item.8cse7rit0oswRPUP]{Arcane Lock}
\n@UUID[Compendium.dnd5e.spells.Item.RvEqsD89Zvd5yex4]{Arcanist's Magic Aura}
\n@UUID[Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3]{Blindness/Deafness}
\n@UUID[Compendium.dnd5e.spells.Item.UDUnlfPsOAbq2RSE]{Blur}
\n@UUID[Compendium.dnd5e.spells.Item.MK6gpQMeDFo0cP9f]{Continual Flame}
\n@UUID[Compendium.dnd5e.spells.Item.S7VbUetIfVT7B6Eq]{Darkness}
\n@UUID[Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp]{Darkvision}
\n@UUID[Compendium.dnd5e.spells.Item.ppWAAEul0QHtm4er]{Detect Thoughts}
\n@UUID[Compendium.dnd5e.spells.Item.WahI41a3goVUg0x1]{Enlarge/Reduce}
\n@UUID[Compendium.dnd5e.spells.Item.FjYE214HTERCRZNm]{Flaming Sphere}
\n@UUID[Compendium.dnd5e.spells.Item.n4JDcFKe5ikzYmAc]{Gentle Repose}
\n@UUID[Compendium.dnd5e.spells.Item.FSMy6VAjDnXY9vWz]{Gust of Wind}
\n@UUID[Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4]{Hold Person}
\n@UUID[Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B]{Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.1nhIxh0DsJsntCfj]{Knock}
\n@UUID[Compendium.dnd5e.spells.Item.MRxldJd6C4bsBo3O]{Levitate}
\n@UUID[Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV]{Locate Object}
\n@UUID[Compendium.dnd5e.spells.Item.7v06rdmUakoTk1LQ]{Magic Mouth}
\n@UUID[Compendium.dnd5e.spells.Item.Sgjrf8qqv97CCWM4]{Magic Weapon}
\n@UUID[Compendium.dnd5e.spells.Item.X4c8xCkmF8U9HUMz]{Mirror Image}
\n@UUID[Compendium.dnd5e.spells.Item.wqfAVANuQonNBgnL]{Misty Step}
\n@UUID[Compendium.dnd5e.spells.Item.ODhLKBxLnvvLOnw1]{Ray of Enfeeblement}
\n@UUID[Compendium.dnd5e.spells.Item.ap4dmtshjEbwU3Ts]{Rope Trick}
\n@UUID[Compendium.dnd5e.spells.Item.7u2obDvuvtZBkTfq]{Scorching Ray}
\n@UUID[Compendium.dnd5e.spells.Item.DQzlB5Y3k791W5bH]{See Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb]{Shatter}
\n@UUID[Compendium.dnd5e.spells.Item.KJRVzeMQXPj8Gtyx]{Spider Climb}
\n@UUID[Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4]{Suggestion}
\n@UUID[Compendium.dnd5e.spells.Item.UJJu9c2UvCzVljiP]{Web}
\n3rd Level
\n@UUID[Compendium.dnd5e.spells.Item.oyE5nVppa5mde5gT]{Animate Dead}
\n@UUID[Compendium.dnd5e.spells.Item.pO4zGe5LmFIYqJiL]{Bestow Curse}
\n@UUID[Compendium.dnd5e.spells.Item.GSvLWcdCZLQkilXT]{Blink}
\n@UUID[Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL]{Clairvoyance}
\n@UUID[Compendium.dnd5e.spells.Item.Ek45cBpVXvJdv1Qy]{Counterspell}
\n@UUID[Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8]{Dispel Magic}
\n@UUID[Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0]{Fear}
\n@UUID[Compendium.dnd5e.spells.Item.ztgcdrWPshKRpFd0]{Fireball}
\n@UUID[Compendium.dnd5e.spells.Item.yfbK8gZqESlaoY5t]{Fly}
\n@UUID[Compendium.dnd5e.spells.Item.2IWiZAJtOGDoKjiz]{Gaseous Form}
\n@UUID[Compendium.dnd5e.spells.Item.pB7XVYwdGNcUG935]{Glyph of Warding}
\n@UUID[Compendium.dnd5e.spells.Item.Szvk5FEVQW3uhJi5]{Haste}
\n@UUID[Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd]{Hypnotic Pattern}
\n@UUID[Compendium.dnd5e.spells.Item.IyikgTEOTv701jgQ]{Lightning Bolt}
\n@UUID[Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz]{Magic Circle}
\n@UUID[Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp]{Major Image}
\n@UUID[Compendium.dnd5e.spells.Item.aU62xVUBYkAQWIHv]{Nondetection}
\n@UUID[Compendium.dnd5e.spells.Item.wpx42mtoZ5BmXRs1]{Phantom Steed}
\n@UUID[Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I]{Protection from Energy}
\n@UUID[Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl]{Remove Curse}
\n@UUID[Compendium.dnd5e.spells.Item.GtGjNjPBgUHxGYAD]{Sending}
\n@UUID[Compendium.dnd5e.spells.Item.dhqBY4TvVjxVmOZd]{Sleet Storm}
\n@UUID[Compendium.dnd5e.spells.Item.yqUDoxk4x0NWG5Bz]{Slow}
\n@UUID[Compendium.dnd5e.spells.Item.TwlD4PLcltv7Xh7j]{Stinking Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.NXWWWgHtWb7Nv21F]{Tiny Hut}
\n@UUID[Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8]{Tongues}
\n@UUID[Compendium.dnd5e.spells.Item.UfHQhA54M4323gVO]{Vampiric Touch}
\n@UUID[Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC]{Water Breathing}
\n4th Level
\n@UUID[Compendium.dnd5e.spells.Item.ImlCJQwR1VL40Qem]{Arcane Eye}
\n@UUID[Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf]{Banishment}
\n@UUID[Compendium.dnd5e.spells.Item.DGONTFbk5eORs5qv]{Black Tentacles}
\n@UUID[Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y]{Blight}
\n@UUID[Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe]{Confusion}
\n@UUID[Compendium.dnd5e.spells.Item.KgEw3sDr39C6g8nY]{Conjure Minor Elementals}
\n@UUID[Compendium.dnd5e.spells.Item.7fFHlBk3UNX8gPKL]{Control Water}
\n@UUID[Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j]{Dimension Door}
\n@UUID[Compendium.dnd5e.spells.Item.7Fw7Bf1k3xxDVr5L]{Fabricate}
\n@UUID[Compendium.dnd5e.spells.Item.SAj03P2WBDiWu7zu]{Faithful Hound}
\n@UUID[Compendium.dnd5e.spells.Item.avD5XUtkBPQQR97c]{Fire Shield}
\n@UUID[Compendium.dnd5e.spells.Item.tEpDmYZNGc9f5OhJ]{Greater Invisibility}
\n@UUID[Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}
\n@UUID[Compendium.dnd5e.spells.Item.WN2LWEljYU6QqnRH]{Ice Storm}
\n@UUID[Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4]{Locate Creature}
\n@UUID[Compendium.dnd5e.spells.Item.BYNvBJzHcF5VJhXw]{Phantasmal Killer}
\n@UUID[Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY]{Polymorph}
\n@UUID[Compendium.dnd5e.spells.Item.NJgxf7pmSsBArIG7]{Private Sanctum}
\n@UUID[Compendium.dnd5e.spells.Item.1ADstb0Xec6HHRcU]{Resilient Sphere}
\n@UUID[Compendium.dnd5e.spells.Item.8sgwRh8NUNkn9Vi0]{Secret Chest}
\n@UUID[Compendium.dnd5e.spells.Item.QvGcdRUSNRKEQJlK]{Stone Shape}
\n@UUID[Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79]{Stoneskin}
\n@UUID[Compendium.dnd5e.spells.Item.X3DrXgxjwI2dvkD6]{Wall of Fire}
\n5th Level
\n@UUID[Compendium.dnd5e.spells.Item.ATo0Eb63TDtnu6iA]{Animate Objects}
\n@UUID[Compendium.dnd5e.spells.Item.a2KJHCIbY5Mi4Dmn]{Arcane Hand}
\n@UUID[Compendium.dnd5e.spells.Item.LkvI11Uue774QBKZ]{Cloudkill}
\n@UUID[Compendium.dnd5e.spells.Item.RpKjTlYASrfqUPVA]{Cone of Cold}
\n@UUID[Compendium.dnd5e.spells.Item.1LkZvINag7KqBmDR]{Conjure Elemental}
\n@UUID[Compendium.dnd5e.spells.Item.dSTu1MaPhBqPITwM]{Contact Other Plane}
\n@UUID[Compendium.dnd5e.spells.Item.lnaGnxMzpYnbw1uU]{Creation}
\n@UUID[Compendium.dnd5e.spells.Item.91Sw6vOIaO7U8DvM]{Dominate Person}
\n@UUID[Compendium.dnd5e.spells.Item.kSPRpeIx3w3nihrF]{Dream}
\n@UUID[Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b]{Geas}
\n@UUID[Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm]{Hold Monster}
\n@UUID[Compendium.dnd5e.spells.Item.W4Qx5z0id6da0vqg]{Legend Lore}
\n@UUID[Compendium.dnd5e.spells.Item.MBMaQLwoy05qzMJ3]{Mislead}
\n@UUID[Compendium.dnd5e.spells.Item.r3243JU4AyQJyfX4]{Modify Memory}
\n@UUID[Compendium.dnd5e.spells.Item.d9MwcXi7Il3HROXd]{Passwall}
\n@UUID[Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL]{Planar Binding}
\n@UUID[Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20]{Scrying}
\n@UUID[Compendium.dnd5e.spells.Item.mbFw57uyfLkyiw5k]{Seeming}
\n@UUID[Compendium.dnd5e.spells.Item.HQfd7jJyULIoGxrZ]{Telekinesis}
\n@UUID[Compendium.dnd5e.spells.Item.uAwtVZkiSTyP6ORB]{Telepathic Bond}
\n@UUID[Compendium.dnd5e.spells.Item.8aWtP5hcrmcEesBW]{Teleportation Circle}
\n@UUID[Compendium.dnd5e.spells.Item.o9ZCvuD2B1OTcubb]{Wall of Force}
\n@UUID[Compendium.dnd5e.spells.Item.NmoRmM1mhuM3pqnY]{Wall of Stone}
\n6th Level
\n@UUID[Compendium.dnd5e.spells.Item.QbTxN5dWIbYZ4jLU]{Chain Lightning}
\n@UUID[Compendium.dnd5e.spells.Item.KeunEkg1JYbOCOhV]{Circle of Death}
\n@UUID[Compendium.dnd5e.spells.Item.4smlOvpF5AQHcyg1]{Contingency}
\n@UUID[Compendium.dnd5e.spells.Item.E4NXux0RHvME1XgP]{Create Undead}
\n@UUID[Compendium.dnd5e.spells.Item.HBHbOGKNVVprSlwn]{Disintegrate}
\n@UUID[Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy]{Eyebite}
\n@UUID[Compendium.dnd5e.spells.Item.kozNy29b0X6exFhY]{Flesh to Stone}
\n@UUID[Compendium.dnd5e.spells.Item.MImfWCzEPRMYD3Xp]{Freezing Sphere}
\n@UUID[Compendium.dnd5e.spells.Item.WmQpxfjZwF3MGUby]{Globe of Invulnerability}
\n@UUID[Compendium.dnd5e.spells.Item.yw0tYQkOMCgKZ8Ur]{Guards and Wards}
\n@UUID[Compendium.dnd5e.spells.Item.SgrEKiC6dAtvy6Pz]{Instant Summons}
\n@UUID[Compendium.dnd5e.spells.Item.TfRzwEgBHHkCc6Ql]{Irresistible Dance}
\n@UUID[Compendium.dnd5e.spells.Item.ej6wyY4G1gOcb1U6]{Magic Jar}
\n@UUID[Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6]{Mass Suggestion}
\n@UUID[Compendium.dnd5e.spells.Item.yI0XWIgI0IGGsR3R]{Move Earth}
\n@UUID[Compendium.dnd5e.spells.Item.bA2sk9eMKBeY7EPD]{Programmed Illusion}
\n@UUID[Compendium.dnd5e.spells.Item.2RC0EyvBLPH88PZF]{Sunbeam}
\n@UUID[Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD]{True Seeing}
\n@UUID[Compendium.dnd5e.spells.Item.fzZnVKLmBMo2f5up]{Wall of Ice}
\n7th Level
\n@UUID[Compendium.dnd5e.spells.Item.LTDNWoFVJNLjiiNa]{Arcane Sword}
\n@UUID[Compendium.dnd5e.spells.Item.AoTTjapz1FsGOIZz]{Delayed Blast Fireball}
\n@UUID[Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN]{Etherealness}
\n@UUID[Compendium.dnd5e.spells.Item.HPvZm8YJO91k6Qdg]{Finger of Death}
\n@UUID[Compendium.dnd5e.spells.Item.Y7uWUO4yqUN0JKl0]{Forcecage}
\n@UUID[Compendium.dnd5e.spells.Item.pn4SnsFDvYDiE6rC]{Magnificent Mansion}
\n@UUID[Compendium.dnd5e.spells.Item.f38w5rd9SgdmWc6F]{Mirage Arcane}
\n@UUID[Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz]{Plane Shift}
\n@UUID[Compendium.dnd5e.spells.Item.eGMhwmuleAM46C6L]{Prismatic Spray}
\n@UUID[Compendium.dnd5e.spells.Item.ePhRKHXRE7l1sEoQ]{Project Image}
\n@UUID[Compendium.dnd5e.spells.Item.ERCv7yuRkQ0YjGx6]{Reverse Gravity}
\n@UUID[Compendium.dnd5e.spells.Item.wvLbtemkH8gyBpdc]{Sequester}
\n@UUID[Compendium.dnd5e.spells.Item.jccbeBIfLrqEZnDP]{Simulacrum}
\n@UUID[Compendium.dnd5e.spells.Item.B2kbmgbA2WQR00kx]{Symbol}
\n@UUID[Compendium.dnd5e.spells.Item.L4J89JXqbKs6puEV]{Teleport}
\n8th Level
\n@UUID[Compendium.dnd5e.spells.Item.Eon0jzGzQRNluTPQ]{Antimagic Field}
\n@UUID[Compendium.dnd5e.spells.Item.GJ2WYm3SQFR0winH]{Antipathy/Sympathy}
\n@UUID[Compendium.dnd5e.spells.Item.h830iyqParFleNqR]{Clone}
\n@UUID[Compendium.dnd5e.spells.Item.ZPd73HtKF3At11jh]{Control Weather}
\n@UUID[Compendium.dnd5e.spells.Item.xNM9CzQQr2CieM4B]{Demiplane}
\n@UUID[Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp]{Dominate Monster}
\n@UUID[Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB]{Feeblemind}
\n@UUID[Compendium.dnd5e.spells.Item.pV04y1iXoWiom6bp]{Incendiary Cloud}
\n@UUID[Compendium.dnd5e.spells.Item.clwv2PWOcT822hlr]{Maze}
\n@UUID[Compendium.dnd5e.spells.Item.bllEWfm9xfEKynhv]{Mind Blank}
\n@UUID[Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj]{Power Word Stun}
\n@UUID[Compendium.dnd5e.spells.Item.hzK7FQya0BDjSmLE]{Sunburst}
\n9th Level
\n@UUID[Compendium.dnd5e.spells.Item.TIoadMIsUKD4edXi]{Astral Projection}
\n@UUID[Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js]{Foresight}
\n@UUID[Compendium.dnd5e.spells.Item.XbwGq5kDJNvAxNXV]{Gate}
\n@UUID[Compendium.dnd5e.spells.Item.ZVnL9L8v1KC9TBF4]{Imprisonment}
\n@UUID[Compendium.dnd5e.spells.Item.mF52ldF79Cr7wfQo]{Meteor Swarm}
\n@UUID[Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S]{Power Word Kill}
\n@UUID[Compendium.dnd5e.spells.Item.jmfu8zj4zjjzUbeh]{Prismatic Wall}
\n@UUID[Compendium.dnd5e.spells.Item.N2UEFq8X5LRsLcOZ]{Shapechange}
\n@UUID[Compendium.dnd5e.spells.Item.JYuRBwxpoFhXduvD]{Time Stop}
\n@UUID[Compendium.dnd5e.spells.Item.QbQZKoXOgHWN06aa]{True Polymorph}
\n@UUID[Compendium.dnd5e.spells.Item.Wl2vtJ4hCt2tpWfR]{Weird}
\n@UUID[Compendium.dnd5e.spells.Item.3okM6Gn63zzEULkz]{Wish}
"
+ "content": ""
},
"_id": "k7Rs5EyXeA0SFTXD",
"image": {},
@@ -361,19 +963,227 @@
"volume": 0.5
},
"src": null,
- "system": {},
+ "system": {
+ "identifier": "wizard",
+ "spells": [
+ "Compendium.dnd5e.spells.Item.JLTQyqXEaJDrTXyW",
+ "Compendium.dnd5e.spells.Item.vrN18tbTw7io5MWd",
+ "Compendium.dnd5e.spells.Item.CAxSzHWizrafT033",
+ "Compendium.dnd5e.spells.Item.EOmsUcFQJTfG2oio",
+ "Compendium.dnd5e.spells.Item.Bnn9Nzajixvow9xi",
+ "Compendium.dnd5e.spells.Item.Utk1OQRwYkMkFRD3",
+ "Compendium.dnd5e.spells.Item.kjmjY0zlE6IEiQVL",
+ "Compendium.dnd5e.spells.Item.icZokbgV1jIMpNCv",
+ "Compendium.dnd5e.spells.Item.oIzA2MEHwxhtQneU",
+ "Compendium.dnd5e.spells.Item.g2u9PYfqWQAyg9OI",
+ "Compendium.dnd5e.spells.Item.udsLtG0BugXHR2JQ",
+ "Compendium.dnd5e.spells.Item.ctW81uiX56xZR2c5",
+ "Compendium.dnd5e.spells.Item.XvbiNhNqXXIFisIy",
+ "Compendium.dnd5e.spells.Item.mGGlcLdggHwcL7MG",
+ "Compendium.dnd5e.spells.Item.7p9IuWrSWFgfyQo2",
+ "Compendium.dnd5e.spells.Item.5SuJewoa1CRWaj1F",
+ "Compendium.dnd5e.spells.Item.eS7XnnApoxRxYXPs",
+ "Compendium.dnd5e.spells.Item.LWTUqKkUQdMAmOe0",
+ "Compendium.dnd5e.spells.Item.4dSvfvTy2ZIJ3K4k",
+ "Compendium.dnd5e.spells.Item.ghXTfe7sgCbgf1Q8",
+ "Compendium.dnd5e.spells.Item.A3q2gTNqG6fvNGrv",
+ "Compendium.dnd5e.spells.Item.zPGohqJRir6MyQ3U",
+ "Compendium.dnd5e.spells.Item.7e3QXF10hLNDEdr6",
+ "Compendium.dnd5e.spells.Item.pub0OWVEB71XQx1n",
+ "Compendium.dnd5e.spells.Item.JGT5bNqu9REL7Fuz",
+ "Compendium.dnd5e.spells.Item.bnjXlk13ZRJuf5d0",
+ "Compendium.dnd5e.spells.Item.IBJmWjzbQGu7M4UX",
+ "Compendium.dnd5e.spells.Item.etgcR9wqmrhyZ0tx",
+ "Compendium.dnd5e.spells.Item.BQk5Row4NymMnUQl",
+ "Compendium.dnd5e.spells.Item.3OZnNhunvRtPOQmH",
+ "Compendium.dnd5e.spells.Item.82jM6qD9axLJsTrH",
+ "Compendium.dnd5e.spells.Item.ZrTc23tToJ0JpH2h",
+ "Compendium.dnd5e.spells.Item.B0pnIcc52O6G8hi8",
+ "Compendium.dnd5e.spells.Item.CKZTpZlxj7hjjo2H",
+ "Compendium.dnd5e.spells.Item.41JIhpDyM9Anm7cs",
+ "Compendium.dnd5e.spells.Item.xmDBqZhRVrtLP8h2",
+ "Compendium.dnd5e.spells.Item.z1mx84ONwkXKUZd7",
+ "Compendium.dnd5e.spells.Item.BrBZdCCrJRIVg7YX",
+ "Compendium.dnd5e.spells.Item.KhwiSi9fwVfUPtku",
+ "Compendium.dnd5e.spells.Item.WTbOQBsarsL1LuXJ",
+ "Compendium.dnd5e.spells.Item.ccduLIvutyNqvkgv",
+ "Compendium.dnd5e.spells.Item.4H6YgYdKgnX6ZQ8M",
+ "Compendium.dnd5e.spells.Item.8RTDOt80u8aBv9qx",
+ "Compendium.dnd5e.spells.Item.8cse7rit0oswRPUP",
+ "Compendium.dnd5e.spells.Item.RvEqsD89Zvd5yex4",
+ "Compendium.dnd5e.spells.Item.zwGsAv6kmwzYGhh3",
+ "Compendium.dnd5e.spells.Item.UDUnlfPsOAbq2RSE",
+ "Compendium.dnd5e.spells.Item.MK6gpQMeDFo0cP9f",
+ "Compendium.dnd5e.spells.Item.S7VbUetIfVT7B6Eq",
+ "Compendium.dnd5e.spells.Item.hJ6ZiA3fpoY8v9cp",
+ "Compendium.dnd5e.spells.Item.ppWAAEul0QHtm4er",
+ "Compendium.dnd5e.spells.Item.WahI41a3goVUg0x1",
+ "Compendium.dnd5e.spells.Item.FjYE214HTERCRZNm",
+ "Compendium.dnd5e.spells.Item.n4JDcFKe5ikzYmAc",
+ "Compendium.dnd5e.spells.Item.FSMy6VAjDnXY9vWz",
+ "Compendium.dnd5e.spells.Item.3Lo9boi7P2ro6QV4",
+ "Compendium.dnd5e.spells.Item.1N8dDMMgZ1h1YJ3B",
+ "Compendium.dnd5e.spells.Item.1nhIxh0DsJsntCfj",
+ "Compendium.dnd5e.spells.Item.MRxldJd6C4bsBo3O",
+ "Compendium.dnd5e.spells.Item.SleYkHovQ8NagmeV",
+ "Compendium.dnd5e.spells.Item.7v06rdmUakoTk1LQ",
+ "Compendium.dnd5e.spells.Item.Sgjrf8qqv97CCWM4",
+ "Compendium.dnd5e.spells.Item.X4c8xCkmF8U9HUMz",
+ "Compendium.dnd5e.spells.Item.wqfAVANuQonNBgnL",
+ "Compendium.dnd5e.spells.Item.ODhLKBxLnvvLOnw1",
+ "Compendium.dnd5e.spells.Item.ap4dmtshjEbwU3Ts",
+ "Compendium.dnd5e.spells.Item.7u2obDvuvtZBkTfq",
+ "Compendium.dnd5e.spells.Item.DQzlB5Y3k791W5bH",
+ "Compendium.dnd5e.spells.Item.wJKpSvSTbSkTjqyb",
+ "Compendium.dnd5e.spells.Item.KJRVzeMQXPj8Gtyx",
+ "Compendium.dnd5e.spells.Item.zMAWdyc8UVb37BK4",
+ "Compendium.dnd5e.spells.Item.UJJu9c2UvCzVljiP",
+ "Compendium.dnd5e.spells.Item.oyE5nVppa5mde5gT",
+ "Compendium.dnd5e.spells.Item.pO4zGe5LmFIYqJiL",
+ "Compendium.dnd5e.spells.Item.GSvLWcdCZLQkilXT",
+ "Compendium.dnd5e.spells.Item.cg50KpBkBdPK6vPL",
+ "Compendium.dnd5e.spells.Item.Ek45cBpVXvJdv1Qy",
+ "Compendium.dnd5e.spells.Item.15Fa6q1nH27XfbR8",
+ "Compendium.dnd5e.spells.Item.XXUDGFELgoskdOD0",
+ "Compendium.dnd5e.spells.Item.ztgcdrWPshKRpFd0",
+ "Compendium.dnd5e.spells.Item.yfbK8gZqESlaoY5t",
+ "Compendium.dnd5e.spells.Item.2IWiZAJtOGDoKjiz",
+ "Compendium.dnd5e.spells.Item.pB7XVYwdGNcUG935",
+ "Compendium.dnd5e.spells.Item.Szvk5FEVQW3uhJi5",
+ "Compendium.dnd5e.spells.Item.6g3WLOZ2u0EbaLAd",
+ "Compendium.dnd5e.spells.Item.IyikgTEOTv701jgQ",
+ "Compendium.dnd5e.spells.Item.y8A4HfTwd93ypdEz",
+ "Compendium.dnd5e.spells.Item.nslx2nT3p4lNkmdp",
+ "Compendium.dnd5e.spells.Item.aU62xVUBYkAQWIHv",
+ "Compendium.dnd5e.spells.Item.wpx42mtoZ5BmXRs1",
+ "Compendium.dnd5e.spells.Item.j8NtLXOOJ3GAKF8I",
+ "Compendium.dnd5e.spells.Item.XZhdgVK3cLoxNCQl",
+ "Compendium.dnd5e.spells.Item.GtGjNjPBgUHxGYAD",
+ "Compendium.dnd5e.spells.Item.dhqBY4TvVjxVmOZd",
+ "Compendium.dnd5e.spells.Item.yqUDoxk4x0NWG5Bz",
+ "Compendium.dnd5e.spells.Item.TwlD4PLcltv7Xh7j",
+ "Compendium.dnd5e.spells.Item.NXWWWgHtWb7Nv21F",
+ "Compendium.dnd5e.spells.Item.gopnZvS0c2jD5FP8",
+ "Compendium.dnd5e.spells.Item.UfHQhA54M4323gVO",
+ "Compendium.dnd5e.spells.Item.13uVuBQP6VaiSPvC",
+ "Compendium.dnd5e.spells.Item.ImlCJQwR1VL40Qem",
+ "Compendium.dnd5e.spells.Item.pxpb2eOB6bv4phAf",
+ "Compendium.dnd5e.spells.Item.DGONTFbk5eORs5qv",
+ "Compendium.dnd5e.spells.Item.pybg5MNc3lkerH4Y",
+ "Compendium.dnd5e.spells.Item.9hQXdMSmerkTsHDe",
+ "Compendium.dnd5e.spells.Item.KgEw3sDr39C6g8nY",
+ "Compendium.dnd5e.spells.Item.7fFHlBk3UNX8gPKL",
+ "Compendium.dnd5e.spells.Item.A4RsPuSvB9wFtz1j",
+ "Compendium.dnd5e.spells.Item.7Fw7Bf1k3xxDVr5L",
+ "Compendium.dnd5e.spells.Item.SAj03P2WBDiWu7zu",
+ "Compendium.dnd5e.spells.Item.avD5XUtkBPQQR97c",
+ "Compendium.dnd5e.spells.Item.tEpDmYZNGc9f5OhJ",
+ "Compendium.dnd5e.spells.Item.sTIkQK7KuQNOyY0C",
+ "Compendium.dnd5e.spells.Item.WN2LWEljYU6QqnRH",
+ "Compendium.dnd5e.spells.Item.gXtzz9t1DTzJeLr4",
+ "Compendium.dnd5e.spells.Item.BYNvBJzHcF5VJhXw",
+ "Compendium.dnd5e.spells.Item.04nMsTWkIFvkbXlY",
+ "Compendium.dnd5e.spells.Item.NJgxf7pmSsBArIG7",
+ "Compendium.dnd5e.spells.Item.1ADstb0Xec6HHRcU",
+ "Compendium.dnd5e.spells.Item.8sgwRh8NUNkn9Vi0",
+ "Compendium.dnd5e.spells.Item.QvGcdRUSNRKEQJlK",
+ "Compendium.dnd5e.spells.Item.ReMbjfeOKoSj3O79",
+ "Compendium.dnd5e.spells.Item.X3DrXgxjwI2dvkD6",
+ "Compendium.dnd5e.spells.Item.ATo0Eb63TDtnu6iA",
+ "Compendium.dnd5e.spells.Item.a2KJHCIbY5Mi4Dmn",
+ "Compendium.dnd5e.spells.Item.LkvI11Uue774QBKZ",
+ "Compendium.dnd5e.spells.Item.RpKjTlYASrfqUPVA",
+ "Compendium.dnd5e.spells.Item.1LkZvINag7KqBmDR",
+ "Compendium.dnd5e.spells.Item.dSTu1MaPhBqPITwM",
+ "Compendium.dnd5e.spells.Item.lnaGnxMzpYnbw1uU",
+ "Compendium.dnd5e.spells.Item.91Sw6vOIaO7U8DvM",
+ "Compendium.dnd5e.spells.Item.kSPRpeIx3w3nihrF",
+ "Compendium.dnd5e.spells.Item.JQyigMNPiDnGI18b",
+ "Compendium.dnd5e.spells.Item.l9Ju5KE7bbn3WpTm",
+ "Compendium.dnd5e.spells.Item.W4Qx5z0id6da0vqg",
+ "Compendium.dnd5e.spells.Item.MBMaQLwoy05qzMJ3",
+ "Compendium.dnd5e.spells.Item.r3243JU4AyQJyfX4",
+ "Compendium.dnd5e.spells.Item.d9MwcXi7Il3HROXd",
+ "Compendium.dnd5e.spells.Item.42O2aNBW7vK90gTL",
+ "Compendium.dnd5e.spells.Item.fVbCxFRaORalHB20",
+ "Compendium.dnd5e.spells.Item.mbFw57uyfLkyiw5k",
+ "Compendium.dnd5e.spells.Item.HQfd7jJyULIoGxrZ",
+ "Compendium.dnd5e.spells.Item.uAwtVZkiSTyP6ORB",
+ "Compendium.dnd5e.spells.Item.8aWtP5hcrmcEesBW",
+ "Compendium.dnd5e.spells.Item.o9ZCvuD2B1OTcubb",
+ "Compendium.dnd5e.spells.Item.NmoRmM1mhuM3pqnY",
+ "Compendium.dnd5e.spells.Item.QbTxN5dWIbYZ4jLU",
+ "Compendium.dnd5e.spells.Item.KeunEkg1JYbOCOhV",
+ "Compendium.dnd5e.spells.Item.4smlOvpF5AQHcyg1",
+ "Compendium.dnd5e.spells.Item.E4NXux0RHvME1XgP",
+ "Compendium.dnd5e.spells.Item.HBHbOGKNVVprSlwn",
+ "Compendium.dnd5e.spells.Item.ZRqu3Xh9FmlBCZGy",
+ "Compendium.dnd5e.spells.Item.kozNy29b0X6exFhY",
+ "Compendium.dnd5e.spells.Item.MImfWCzEPRMYD3Xp",
+ "Compendium.dnd5e.spells.Item.WmQpxfjZwF3MGUby",
+ "Compendium.dnd5e.spells.Item.yw0tYQkOMCgKZ8Ur",
+ "Compendium.dnd5e.spells.Item.SgrEKiC6dAtvy6Pz",
+ "Compendium.dnd5e.spells.Item.TfRzwEgBHHkCc6Ql",
+ "Compendium.dnd5e.spells.Item.ej6wyY4G1gOcb1U6",
+ "Compendium.dnd5e.spells.Item.5OGFdJw35QXp6mh6",
+ "Compendium.dnd5e.spells.Item.yI0XWIgI0IGGsR3R",
+ "Compendium.dnd5e.spells.Item.bA2sk9eMKBeY7EPD",
+ "Compendium.dnd5e.spells.Item.2RC0EyvBLPH88PZF",
+ "Compendium.dnd5e.spells.Item.XzkJpE6XpZfKjODD",
+ "Compendium.dnd5e.spells.Item.fzZnVKLmBMo2f5up",
+ "Compendium.dnd5e.spells.Item.LTDNWoFVJNLjiiNa",
+ "Compendium.dnd5e.spells.Item.AoTTjapz1FsGOIZz",
+ "Compendium.dnd5e.spells.Item.PQuEgKyCdovOvhqN",
+ "Compendium.dnd5e.spells.Item.HPvZm8YJO91k6Qdg",
+ "Compendium.dnd5e.spells.Item.Y7uWUO4yqUN0JKl0",
+ "Compendium.dnd5e.spells.Item.pn4SnsFDvYDiE6rC",
+ "Compendium.dnd5e.spells.Item.f38w5rd9SgdmWc6F",
+ "Compendium.dnd5e.spells.Item.J6Jpw5XzB5aTeqnz",
+ "Compendium.dnd5e.spells.Item.eGMhwmuleAM46C6L",
+ "Compendium.dnd5e.spells.Item.ePhRKHXRE7l1sEoQ",
+ "Compendium.dnd5e.spells.Item.ERCv7yuRkQ0YjGx6",
+ "Compendium.dnd5e.spells.Item.wvLbtemkH8gyBpdc",
+ "Compendium.dnd5e.spells.Item.jccbeBIfLrqEZnDP",
+ "Compendium.dnd5e.spells.Item.B2kbmgbA2WQR00kx",
+ "Compendium.dnd5e.spells.Item.L4J89JXqbKs6puEV",
+ "Compendium.dnd5e.spells.Item.Eon0jzGzQRNluTPQ",
+ "Compendium.dnd5e.spells.Item.GJ2WYm3SQFR0winH",
+ "Compendium.dnd5e.spells.Item.h830iyqParFleNqR",
+ "Compendium.dnd5e.spells.Item.ZPd73HtKF3At11jh",
+ "Compendium.dnd5e.spells.Item.xNM9CzQQr2CieM4B",
+ "Compendium.dnd5e.spells.Item.eEpy1ONlXumKS1mp",
+ "Compendium.dnd5e.spells.Item.hYCrN82dMJFuJODB",
+ "Compendium.dnd5e.spells.Item.pV04y1iXoWiom6bp",
+ "Compendium.dnd5e.spells.Item.clwv2PWOcT822hlr",
+ "Compendium.dnd5e.spells.Item.bllEWfm9xfEKynhv",
+ "Compendium.dnd5e.spells.Item.35j2QIMmIk6aEdxj",
+ "Compendium.dnd5e.spells.Item.hzK7FQya0BDjSmLE",
+ "Compendium.dnd5e.spells.Item.TIoadMIsUKD4edXi",
+ "Compendium.dnd5e.spells.Item.6HEEhLdJz32TL4Js",
+ "Compendium.dnd5e.spells.Item.XbwGq5kDJNvAxNXV",
+ "Compendium.dnd5e.spells.Item.ZVnL9L8v1KC9TBF4",
+ "Compendium.dnd5e.spells.Item.mF52ldF79Cr7wfQo",
+ "Compendium.dnd5e.spells.Item.dmvaMLFWFtv0qx0S",
+ "Compendium.dnd5e.spells.Item.jmfu8zj4zjjzUbeh",
+ "Compendium.dnd5e.spells.Item.N2UEFq8X5LRsLcOZ",
+ "Compendium.dnd5e.spells.Item.JYuRBwxpoFhXduvD",
+ "Compendium.dnd5e.spells.Item.QbQZKoXOgHWN06aa",
+ "Compendium.dnd5e.spells.Item.Wl2vtJ4hCt2tpWfR",
+ "Compendium.dnd5e.spells.Item.3okM6Gn63zzEULkz"
+ ]
+ },
"sort": 1100000,
"ownership": {
"default": -1
},
"flags": {},
"_stats": {
- "systemId": null,
- "systemVersion": null,
- "coreVersion": null,
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": null,
- "lastModifiedBy": null
+ "modifiedTime": 1712158542662,
+ "lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!QvPDSUsAiEn3hD8s.k7Rs5EyXeA0SFTXD"
}
@@ -392,10 +1202,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1660925148884,
- "modifiedTime": 1706218251625,
+ "modifiedTime": 1712158542662,
"lastModifiedBy": "dnd5ebuilder0000"
},
"folder": null,
diff --git a/packs/_source/rules/chapter-11-dm-tools.json b/packs/_source/rules/chapter-11-dm-tools.json
index c70ca02732..24fd147701 100644
--- a/packs/_source/rules/chapter-11-dm-tools.json
+++ b/packs/_source/rules/chapter-11-dm-tools.json
@@ -44,7 +44,7 @@
},
"text": {
"format": 1,
- "content": "A plague ravages the kingdom, setting the adventurers on a quest to find a cure. An adventurer emerges from an ancient tomb, unopened for centuries, and soon finds herself suffering from a wasting illness. A warlock offends some dark power and contracts a strange affliction that spreads whenever he casts spells.
\nA simple outbreak might amount to little more than a small drain on party resources, curable by a casting of @UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration}. A more complicated outbreak can form the basis of one or more adventures as characters search for a cure, stop the spread of the disease, and deal with the consequences.
\nA disease that does more than infect a few party members is primarily a plot device. The rules help describe the effects of the disease and how it can be cured, but the specifics of how a disease works aren't bound by a common set of rules. Diseases can affect any creature, and a given illness might or might not pass from one race or kind of creature to another. A plague might affect only constructs or undead, or sweep through a halfling neighborhood but leave other races untouched. What matters is the story you want to tell.
\nSample Diseases
\nThe diseases here illustrate the variety of ways disease can work in the game. Feel free to alter the saving throw DCs, incubation times, symptoms, and other characteristics of these diseases to suit your campaign.
\nCackle Fever
\nThis disease targets humanoids, although gnomes are strangely immune. While in the grips of this disease, victims frequently succumb to fits of mad laughter, giving the disease its common name and its morbid nickname: “the shrieks.”
\nSymptoms manifest 1d4 hours after infection and include fever and disorientation. The infected creature gains one level of exhaustion that can't be removed until the disease is cured.
\nAny event that causes the infected creature great stress—including entering combat, taking damage, experiencing fear, or having a nightmare—forces the creature to make a DC 13 Constitution saving throw. On a failed save, the creature takes 5 (1d10) psychic damage and becomes incapacitated with mad laughter for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the mad laughter and the incapacitated condition on a success.
\nAny humanoid creature that starts its turn within 10 feet of an infected creature in the throes of mad laughter must succeed on a DC 10 Constitution saving throw or also become infected with the disease. Once a creature succeeds on this save, it is immune to the mad laughter of that particular infected creature for 24 hours.
\nAt the end of each long rest, an infected creature can make a DC 13 Constitution saving throw. On a successful save, the DC for this save and for the save to avoid an attack of mad laughter drops by 1d6. When the saving throw DC drops to 0, the creature recovers from the disease. A creature that fails three of these saving throws gains a randomly determined form of indefinite madness, as described later.
\nSewer Plague
\nSewer plague is a generic term for a broad category of illnesses that incubate in sewers, refuse heaps, and stagnant swamps, and which are sometimes transmitted by creatures that dwell in those areas, such as rats and otyughs.
\nWhen a humanoid creature is bitten by a creature that carries the disease, or when it comes into contact with filth or offal contaminated by the disease, the creature must succeed on a DC 11 Constitution saving throw or become infected.
\nIt takes 1d4 days for sewer plague's symptoms to manifest in an infected creature. Symptoms include fatigue and cramps. The infected creature suffers one level of exhaustion, and it regains only half the normal number of hit points from spending Hit Dice and no hit points from finishing a long rest.
\nAt the end of each long rest, an infected creature must make a DC 11 Constitution saving throw. On a failed save, the character gains one level of exhaustion. On a successful save, the character's exhaustion level decreases by one level. If a successful saving throw reduces the infected creature's level of exhaustion below 1, the creature recovers from the disease.
\nSight Rot
\nThis painful infection causes bleeding from the eyes and eventually blinds the victim.
\nA beast or humanoid that drinks water tainted by sight rot must succeed on a DC 15 Constitution saving throw or become infected. One day after infection, the creature's vision starts to become blurry. The creature takes a −1 penalty to attack rolls and ability checks that rely on sight. At the end of each long rest after the symptoms appear, the penalty worsens by 1. When it reaches −5, the victim is blinded until its sight is restored by magic such as @UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration} or @UUID[Compendium.dnd5e.spells.Item.qcYitWoSMTnKkzM1]{Heal}.
\nSight rot can be cured using a rare flower called Eyebright, which grows in some swamps. Given an hour, a character who has proficiency with an herbalism kit can turn the flower into one dose of ointment. Applied to the eyes before a long rest, one dose of it prevents the disease from worsening after that rest. After three doses, the ointment cures the disease entirely.
"
+ "content": "@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.oNQWvyRZkTOJ8PBq inline]
Sample Diseases
The diseases here illustrate the variety of ways disease can work in the game. Feel free to alter the saving throw DCs, incubation times, symptoms, and other characteristics of these diseases to suit your campaign.
Cackle Fever
This disease targets humanoids, although gnomes are strangely immune. While in the grips of this disease, victims frequently succumb to fits of mad laughter, giving the disease its common name and its morbid nickname: “the shrieks.”
Symptoms manifest 1d4 hours after infection and include fever and disorientation. The infected creature gains one level of exhaustion that can't be removed until the disease is cured.
Any event that causes the infected creature great stress—including entering combat, taking damage, experiencing fear, or having a nightmare—forces the creature to make a DC 13 Constitution saving throw. On a failed save, the creature takes 5 (1d10) psychic damage and becomes incapacitated with mad laughter for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the mad laughter and the incapacitated condition on a success.
Any humanoid creature that starts its turn within 10 feet of an infected creature in the throes of mad laughter must succeed on a DC 10 Constitution saving throw or also become infected with the disease. Once a creature succeeds on this save, it is immune to the mad laughter of that particular infected creature for 24 hours.
At the end of each long rest, an infected creature can make a DC 13 Constitution saving throw. On a successful save, the DC for this save and for the save to avoid an attack of mad laughter drops by 1d6. When the saving throw DC drops to 0, the creature recovers from the disease. A creature that fails three of these saving throws gains a randomly determined form of indefinite madness, as described later.
Sewer Plague
Sewer plague is a generic term for a broad category of illnesses that incubate in sewers, refuse heaps, and stagnant swamps, and which are sometimes transmitted by creatures that dwell in those areas, such as rats and otyughs.
When a humanoid creature is bitten by a creature that carries the disease, or when it comes into contact with filth or offal contaminated by the disease, the creature must succeed on a DC 11 Constitution saving throw or become infected.
It takes 1d4 days for sewer plague's symptoms to manifest in an infected creature. Symptoms include fatigue and cramps. The infected creature suffers one level of exhaustion, and it regains only half the normal number of hit points from spending Hit Dice and no hit points from finishing a long rest.
At the end of each long rest, an infected creature must make a DC 11 Constitution saving throw. On a failed save, the character gains one level of exhaustion. On a successful save, the character's exhaustion level decreases by one level. If a successful saving throw reduces the infected creature's level of exhaustion below 1, the creature recovers from the disease.
Sight Rot
This painful infection causes bleeding from the eyes and eventually blinds the victim.
A beast or humanoid that drinks water tainted by sight rot must succeed on a DC 15 Constitution saving throw or become infected. One day after infection, the creature's vision starts to become blurry. The creature takes a −1 penalty to attack rolls and ability checks that rely on sight. At the end of each long rest after the symptoms appear, the penalty worsens by 1. When it reaches −5, the victim is blinded until its sight is restored by magic such as @UUID[Compendium.dnd5e.spells.Item.F0GsG0SJzsIOacwV]{Lesser Restoration} or @UUID[Compendium.dnd5e.spells.Item.qcYitWoSMTnKkzM1]{Heal}.
Sight rot can be cured using a rare flower called Eyebright, which grows in some swamps. Given an hour, a character who has proficiency with an herbalism kit can turn the flower into one dose of ointment. Applied to the eyes before a long rest, one dose of it prevents the disease from worsening after that rest. After three doses, the ointment cures the disease entirely.
"
},
"_id": "YJkaWnytz5zanzXE",
"image": {},
@@ -181,7 +181,7 @@
},
"text": {
"format": 1,
- "content": "Magic items are gleaned from the hoards of conquered monsters or discovered in long-lost vaults. Such items grant capabilities a character could rarely have otherwise, or they complement their owner's capabilities in wondrous ways.
Attunement
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.UQ65OwIyGK65eiOK inline]
Wearing and Wielding Items
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.iPB8mGKuQx3X0Z2J inline]
Activating an Item
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.PqHSxFUwaXHL7kSz inline]
Magic Items A-Z
Magic items are presented in alphabetical order. A magic item's description gives the item's name, its category, its rarity, and its magical properties.
@UUID[Compendium.dnd5e.rules.JournalEntry.sfJtvPjEs50Ruzi4]{Magic Items A-Z}
Sentient Magic Items
Some magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.
Most sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.
Sentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.
Creating Sentient Magic Items
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.Kh16IbKZRyEer1ju inline]
Conflict
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.S48JxKMOF2ZmAfav inline]
Artifacts
@UUID[Compendium.dnd5e.items.Item.1RwJWOAeyoideLKe]{Orb of Dragonkind}
",
+ "content": "Magic items are gleaned from the hoards of conquered monsters or discovered in long-lost vaults. Such items grant capabilities a character could rarely have otherwise, or they complement their owner's capabilities in wondrous ways.
Attunement
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.UQ65OwIyGK65eiOK inline]
Wearing and Wielding Items
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.iPB8mGKuQx3X0Z2J inline]
Activating an Item
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.PqHSxFUwaXHL7kSz inline]
Magic Items A-Z
Magic items are presented in alphabetical order. A magic item's description gives the item's name, its category, its rarity, and its magical properties.
@UUID[Compendium.dnd5e.rules.JournalEntry.sfJtvPjEs50Ruzi4]{Magic Items A-Z}
Spell Scrolls
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.gi8IKhtOlBVhMJrN inline]
Sentient Magic Items
Some magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.
Most sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.
Sentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.
Creating Sentient Magic Items
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.Kh16IbKZRyEer1ju inline]
Conflict
@Embed[Compendium.dnd5e.rules.JournalEntry.NizgRXLNUqtdlC1s.JournalEntryPage.S48JxKMOF2ZmAfav inline]
Artifacts
@UUID[Compendium.dnd5e.items.Item.1RwJWOAeyoideLKe]{Orb of Dragonkind}
",
"markdown": ""
},
"_id": "YHsuCV4IZZZoyDap",
@@ -199,10 +199,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": 1705191662357,
+ "modifiedTime": 1711218115742,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!t6scHTmpmHBTZGTX.YHsuCV4IZZZoyDap"
@@ -257,10 +257,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1660925148884,
- "modifiedTime": 1705193612784,
+ "modifiedTime": 1711218115742,
"lastModifiedBy": "dnd5ebuilder0000"
},
"folder": null,
diff --git a/packs/_source/rules/chapter-3-classes.json b/packs/_source/rules/chapter-3-classes.json
index 246e31b573..ece86872f0 100644
--- a/packs/_source/rules/chapter-3-classes.json
+++ b/packs/_source/rules/chapter-3-classes.json
@@ -50,7 +50,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a greataxe or (b) any martial melee weapon
\n- (a) two handaxes or (b) any simple weapon
\n- An explorer’s pack and four javelins
\n
",
+ "additionalEquipment": "",
"subclass": ""
},
"subclassHeader": "Primal Paths",
@@ -63,6 +63,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089803354,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.lQ6qPkCfIyjIADY5"
},
{
@@ -88,7 +96,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a rapier, (b) a longsword, or (c) any simple weapon
\n- (a) a diplomat’s pack or (b) an entertainer’s pack
\n- (a) a lute or (b) any other musical instrument
\n- Leather armor and a dagger
\n
",
+ "additionalEquipment": "",
"subclass": ""
},
"subclassHeader": "Bard Colleges",
@@ -101,6 +109,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089821380,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.WYZMEei2b0HZgWdu"
},
{
@@ -126,7 +142,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a mace or (b) a warhammer (if proficient)
\n- (a) scale mail, (b) leather armor, or (c) chain mail (if proficient)
\n- (a) a light crossbow and 20 bolts or (b) any simple weapon
\n- (a) a priest’s pack or (b) an explorer’s pack • A shield and a holy symbol
\n
",
+ "additionalEquipment": "",
"subclass": ""
},
"subclassHeader": "Divine Domains",
@@ -139,6 +155,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089845515,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.7xAozaqWq3Z6YTsf"
},
{
@@ -164,7 +188,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a wooden shield or (b) any simple weapon
\n- (a) a scimitar or (b) any simple melee weapon
\n- Leather armor, an explorer’s pack, and a druidic focus
\n
",
+ "additionalEquipment": "",
"subclass": ""
},
"subclassHeader": "Druid Circles",
@@ -177,6 +201,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089855194,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.0LfgSuMJmv7bf1JU"
},
{
@@ -202,7 +234,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) chain mail or (b) leather armor, longbow, and 20 arrows
\n- (a) a martial weapon and a shield or (b) two martial weapons
\n- (a) a light crossbow and 20 bolts or (b) two handaxes
\n- (a) a dungeoneer’s pack or (b) an explorer’s pack
\n
",
+ "additionalEquipment": "",
"subclass": ""
},
"subclassHeader": "Martial Archetypes",
@@ -215,6 +247,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089865032,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.ygdteO7FoWsKqfOD"
},
{
@@ -240,7 +280,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a shortsword or (b) any simple weapon
\n- (a) a dungeoneer’s pack or (b) an explorer’s pack • 10 darts
\n
",
+ "additionalEquipment": "",
"subclass": "Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.
"
},
"subclassHeader": "Monastic Traditions",
@@ -253,6 +293,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089875289,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.9lcffy0dOmFDaoKr"
},
{
@@ -278,7 +326,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a martial weapon and a shield or (b) two martial weapons
\n- (a) five javelins or (b) any simple melee weapon
\n- (a) a priest’s pack or (b) an explorer’s pack
\n- Chain mail and a holy symbol
\n
",
+ "additionalEquipment": "",
"subclass": "Becoming a paladin involves taking vows that commit the paladin to the cause of righteousness, an active path of fighting wickedness. The final oath, taken when he or she reaches 3rd level, is the culmination of all the paladin’s training. Some characters with this class don’t consider themselves true paladins until they have reached 3rd level and made this oath. For others, the actual swearing of the oath is a formality, an official stamp on what has always been true in the paladin’s heart.
"
},
"subclassHeader": "Sacred Oaths",
@@ -291,6 +339,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089882235,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.doLlxoEonAEiIJM7"
},
{
@@ -316,7 +372,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) scale mail or (b) leather armor
\n- (a) two shortswords or (b) two simple melee weapons
\n- (a) a dungeoneer’s pack or (b) an explorer’s pack
\n- A longbow and a quiver of 20 arrows
\n
",
+ "additionalEquipment": "",
"subclass": "A classic expression of the ranger ideal is the Hunter.
"
},
"subclassHeader": "Ranger Archetypes",
@@ -329,6 +385,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089895600,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.nLK08pRtyaLLuB4w"
},
{
@@ -354,7 +418,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a rapier or (b) a shortsword
\n- (a) a shortbow and quiver of 20 arrows or (b) a shortsword
\n- (a) a burglar’s pack, (b) a dungeoneer’s pack, or (c) an explorer’s pack
\n- (a) Leather armor, two daggers, and thieves’ tools
\n
",
+ "additionalEquipment": "",
"subclass": "Rogues have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different rogues steer those talents in varying directions, embodied by the rogue archetypes. Your choice of archetype is a reflection of your focus—not necessarily an indication of your chosen profession, but a description of your preferred techniques.
"
},
"subclassHeader": "Roguish Archetypes",
@@ -367,6 +431,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089905670,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.sgs4mhWwQev8JY03"
},
{
@@ -392,7 +464,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a light crossbow and 20 bolts or (b) any simple weapon
\n- (a) a component pouch or (b) an arcane focus
\n- (a) a dungeoneer’s pack or (b) an explorer’s pack
\n- Two daggers
\n
",
+ "additionalEquipment": "",
"subclass": "Different sorcerers claim different origins for their innate magic, such as a draconic bloodline.
"
},
"subclassHeader": "Sorcerous Origins",
@@ -405,6 +477,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089913533,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.mh73MffZNiVCVxJV"
},
{
@@ -430,7 +510,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a light crossbow and 20 bolts or (b) any simple weapon
\n- (a) a component pouch or (b) an arcane focus
\n- (a) a scholar’s pack or (b) a dungeoneer’s pack
\n- Leather armor, any simple weapon, and two daggers
\n
",
+ "additionalEquipment": "",
"subclass": "The beings that serve as patrons for warlocks are mighty inhabitants of other planes of existence—not gods, but almost godlike in their power. Various patrons give their warlocks access to different powers and invocations, and expect significant favors in return.
\nSome patrons collect warlocks, doling out mystic knowledge relatively freely or boasting of their ability to bind mortals to their will. Other patrons bestow their power only grudgingly, and might make a pact with only one warlock. Warlocks who serve the same patron might view each other as allies, siblings, or rivals.
"
},
"subclassHeader": "Otherworldly Patrons",
@@ -443,6 +523,14 @@
"default": -1
},
"flags": {},
+ "_stats": {
+ "systemId": "dnd5e",
+ "systemVersion": "3.2.0",
+ "coreVersion": "11.315",
+ "createdTime": null,
+ "modifiedTime": 1712089921676,
+ "lastModifiedBy": "dnd5ebuilder0000"
+ },
"_key": "!journal.pages!gqecphEUnz4ktrQ9.nBRkCAhWQOChx5qN"
},
{
@@ -468,7 +556,7 @@
"value": "",
"additionalHitPoints": "",
"additionalTraits": "",
- "additionalEquipment": "You start with the following equipment, in addition to the equipment granted by your background:
\n\n- (a) a quarterstaff or (b) a dagger
\n- (a) a component pouch or (b) an arcane focus
\n- (a) a scholar’s pack or (b) an explorer’s pack
\n- A spellbook
\n
",
+ "additionalEquipment": "",
"subclass": "The study of wizardry is ancient, stretching back to the earliest mortal discoveries of magic. It is firmly established in fantasy gaming worlds, with various traditions dedicated to its complex study.
\nThe most common arcane traditions in the multiverse revolve around the schools of magic. Wizards through the ages have cataloged thousands of spells, grouping them into eight categories called schools. In some places, these traditions are literally schools. In other institutions, the schools are more like academic departments, with rival faculties competing for students and funding. Even wizards who train apprentices in the solitude of their own towers use the division of magic into schools as a learning device, since the spells of each school require mastery of different techniques.
"
},
"subclassHeader": "Arcane Traditions",
@@ -483,10 +571,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": null,
- "modifiedTime": 1707094178783,
+ "modifiedTime": 1712089928033,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!journal.pages!gqecphEUnz4ktrQ9.cmkACLWa9Hq1S6Go"
@@ -503,10 +591,10 @@
},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.1",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1660925148884,
- "modifiedTime": 1707094178783,
+ "modifiedTime": 1712089928033,
"lastModifiedBy": "dnd5ebuilder0000"
},
"folder": null,
diff --git a/packs/_source/spells/1st-level/find-familiar.json b/packs/_source/spells/1st-level/find-familiar.json
index 748871cee7..9b7337a95b 100644
--- a/packs/_source/spells/1st-level/find-familiar.json
+++ b/packs/_source/spells/1st-level/find-familiar.json
@@ -7,13 +7,13 @@
"type": "spell",
"system": {
"description": {
- "value": "Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.
When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.
While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.
As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.
You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.
Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.
",
+ "value": "You gain the service of a familiar, a spirit that takes an animal form you choose: @UUID[Compendium.dnd5e.monsters.Actor.qav2dvMIUiMQCCsy]{bat}, @UUID[Compendium.dnd5e.monsters.Actor.hIf83RD3ZVW4Egfi]{cat}, @UUID[Compendium.dnd5e.monsters.Actor.8RgUhb31VvjUNZU1]{crab}, @UUID[Compendium.dnd5e.monsters.Actor.EZgiprHXA2D7Uyb3]{frog} (toad), @UUID[Compendium.dnd5e.monsters.Actor.fnkPNfIpS62LqOu4]{hawk}, @UUID[Compendium.dnd5e.monsters.Actor.I2x01hzOjVN4NUjf]{lizard}, @UUID[Compendium.dnd5e.monsters.Actor.3UUNbGiG2Yf1ZPxM]{octopus}, @UUID[Compendium.dnd5e.monsters.Actor.d0prpsGSAorDadec]{owl}, @UUID[Compendium.dnd5e.monsters.Actor.D5rwVIxmfFrdyyxT]{poisonous snake}, fish (@UUID[Compendium.dnd5e.monsters.Actor.nkyCGJ9wXeAZkyyz]{quipper}), @UUID[Compendium.dnd5e.monsters.Actor.pozQUPTnLZW8epox]{rat}, @UUID[Compendium.dnd5e.monsters.Actor.LPdX5YLlwci0NDZx]{raven}, @UUID[Compendium.dnd5e.monsters.Actor.FWSDiq9SZsdiBAa8]{sea horse}, @UUID[Compendium.dnd5e.monsters.Actor.28gU50HtG8Kp7uIz]{spider}, or @UUID[Compendium.dnd5e.monsters.Actor.WOdeacKCYVhgLDuN]{weasel}. Appearing in an unoccupied space within range, the familiar has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of a beast.
Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal.
When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again.
While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses.
As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you.
You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature.
Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your action modifier for the roll.
",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
- "page": "",
+ "page": "pg. 143",
"license": "CC-BY-4.0"
},
"activation": {
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -89,9 +89,102 @@
"vocal",
"somatic",
"material",
- "ritual"
+ "ritual",
+ "mgc"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "creatureTypes": [
+ "celestial",
+ "fey",
+ "fiend"
+ ],
+ "profiles": [
+ {
+ "name": "",
+ "_id": "HShhzdPtYkhNleyj",
+ "uuid": "Compendium.dnd5e.monsters.Actor.qav2dvMIUiMQCCsy"
+ },
+ {
+ "name": "",
+ "_id": "NIHXnk03LvysDp7t",
+ "uuid": "Compendium.dnd5e.monsters.Actor.hIf83RD3ZVW4Egfi"
+ },
+ {
+ "name": "",
+ "_id": "L59Xqchh128r45Rc",
+ "uuid": "Compendium.dnd5e.monsters.Actor.8RgUhb31VvjUNZU1"
+ },
+ {
+ "name": "Fish",
+ "_id": "kaiiJrnUWOqlQHt3",
+ "uuid": "Compendium.dnd5e.monsters.Actor.nkyCGJ9wXeAZkyyz"
+ },
+ {
+ "name": "",
+ "_id": "zGRnQq2EkrfRb14O",
+ "uuid": "Compendium.dnd5e.monsters.Actor.EZgiprHXA2D7Uyb3"
+ },
+ {
+ "name": "",
+ "_id": "n2fhgnH9XTc8MbKt",
+ "uuid": "Compendium.dnd5e.monsters.Actor.fnkPNfIpS62LqOu4"
+ },
+ {
+ "name": "",
+ "_id": "bZJcnv1H2Vjm5XI6",
+ "uuid": "Compendium.dnd5e.monsters.Actor.I2x01hzOjVN4NUjf"
+ },
+ {
+ "name": "",
+ "_id": "aqC42mfjOB5PB5JU",
+ "uuid": "Compendium.dnd5e.monsters.Actor.3UUNbGiG2Yf1ZPxM"
+ },
+ {
+ "name": "",
+ "_id": "9sLcKSCGrnG7gO7O",
+ "uuid": "Compendium.dnd5e.monsters.Actor.d0prpsGSAorDadec"
+ },
+ {
+ "name": "",
+ "_id": "IxXkUKUna11rHprj",
+ "uuid": "Compendium.dnd5e.monsters.Actor.D5rwVIxmfFrdyyxT"
+ },
+ {
+ "name": "",
+ "_id": "0t4KAcZWZ7fY9A5u",
+ "uuid": "Compendium.dnd5e.monsters.Actor.pozQUPTnLZW8epox"
+ },
+ {
+ "name": "",
+ "_id": "op4FTfM9QWefJxOJ",
+ "uuid": "Compendium.dnd5e.monsters.Actor.LPdX5YLlwci0NDZx"
+ },
+ {
+ "name": "",
+ "_id": "1gJGQBWi5LJYjONw",
+ "uuid": "Compendium.dnd5e.monsters.Actor.FWSDiq9SZsdiBAa8"
+ },
+ {
+ "name": "",
+ "_id": "7hgp23Fe02ITFtIw",
+ "uuid": "Compendium.dnd5e.monsters.Actor.28gU50HtG8Kp7uIz"
+ },
+ {
+ "name": "",
+ "_id": "czhL1VUn6ecvG0WV",
+ "uuid": "Compendium.dnd5e.monsters.Actor.WOdeacKCYVhgLDuN"
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -100,10 +193,10 @@
"folder": "ERuXllkhTQF51rDJ",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234112,
- "modifiedTime": 1704823523146,
+ "modifiedTime": 1711665544993,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JGT5bNqu9REL7Fuz"
diff --git a/packs/_source/spells/1st-level/magic-missile.json b/packs/_source/spells/1st-level/magic-missile.json
index a479edc61b..f436eeea5a 100644
--- a/packs/_source/spells/1st-level/magic-missile.json
+++ b/packs/_source/spells/1st-level/magic-missile.json
@@ -87,12 +87,13 @@
"prepared": false
},
"scaling": {
- "mode": "level",
+ "mode": "none",
"formula": ""
},
"properties": [
"vocal",
- "somatic"
+ "somatic",
+ "mgc"
],
"crewed": false
},
@@ -103,10 +104,10 @@
"folder": "ERuXllkhTQF51rDJ",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.1.1",
"coreVersion": "11.315",
"createdTime": 1661787234065,
- "modifiedTime": 1704823521820,
+ "modifiedTime": 1711128581683,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!41JIhpDyM9Anm7cs"
diff --git a/packs/_source/spells/1st-level/unseen-servant.json b/packs/_source/spells/1st-level/unseen-servant.json
index 866a11de2a..ff10c277b2 100644
--- a/packs/_source/spells/1st-level/unseen-servant.json
+++ b/packs/_source/spells/1st-level/unseen-servant.json
@@ -7,7 +7,7 @@
"type": "spell",
"system": {
"description": {
- "value": "This spell creates an Invisible, mindless, shapeless, Medium force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends.
Once on each of your turns as a Bonus Action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wine. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command.
If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.
",
+ "value": "This spell creates an &Reference[Invisible], mindless, shapeless, Medium force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends.
Once on each of your turns as a Bonus Action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wine. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command.
If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.
",
"chat": ""
},
"source": {
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -89,9 +89,27 @@
"vocal",
"somatic",
"material",
- "ritual"
+ "ritual",
+ "mgc"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "profiles": [
+ {
+ "name": "",
+ "_id": "vmeSKU0Wnzs5TfPn",
+ "uuid": "Compendium.dnd5e.monsters.Actor.BTQz2q4JJVQn8W5W"
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -100,10 +118,10 @@
"folder": "ERuXllkhTQF51rDJ",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234174,
- "modifiedTime": 1704823524792,
+ "modifiedTime": 1712088880231,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ccduLIvutyNqvkgv"
diff --git a/packs/_source/spells/2nd-level/find-steed.json b/packs/_source/spells/2nd-level/find-steed.json
index d2cae3d3a2..eb5cc0ffd4 100644
--- a/packs/_source/spells/2nd-level/find-steed.json
+++ b/packs/_source/spells/2nd-level/find-steed.json
@@ -7,13 +7,13 @@
"type": "spell",
"system": {
"description": {
- "value": "You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak.
Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed.
When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum.
While your steed is within 1 mile of you, you can communicate with it telepathically.
You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.
",
+ "value": "You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a @UUID[Compendium.dnd5e.monsters.Actor.T1xZTDCGuvMBSq8d]{warhorse}, a @UUID[Compendium.dnd5e.monsters.Actor.PHO4J98zK2p4KNyc]{pony}, a @UUID[Compendium.dnd5e.monsters.Actor.FQMFuzzSh73d0Nrd]{camel}, an @UUID[Compendium.dnd5e.monsters.Actor.55PkbskG5iBZGrgR]{elk}, or a @UUID[Compendium.dnd5e.monsters.Actor.YTpL2c3NO4sOn2UA]{mastiff}. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak.
Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed.
When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum.
While your steed is within 1 mile of you, you can communicate with it telepathically.
You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.
",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
- "page": "",
+ "page": "pg. 143",
"license": "CC-BY-4.0"
},
"activation": {
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -87,9 +87,52 @@
},
"properties": [
"vocal",
- "somatic"
+ "somatic",
+ "mgc"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "creatureTypes": [
+ "celestial",
+ "fey",
+ "fiend"
+ ],
+ "profiles": [
+ {
+ "name": "",
+ "_id": "AjbDWduosqyViS2D",
+ "uuid": "Compendium.dnd5e.monsters.Actor.FQMFuzzSh73d0Nrd"
+ },
+ {
+ "name": "",
+ "_id": "5bNPkSBX9Nc043lQ",
+ "uuid": "Compendium.dnd5e.monsters.Actor.55PkbskG5iBZGrgR"
+ },
+ {
+ "name": "",
+ "_id": "3hWu8Ub25OiFqWhu",
+ "uuid": "Compendium.dnd5e.monsters.Actor.YTpL2c3NO4sOn2UA"
+ },
+ {
+ "name": "",
+ "_id": "qwzKyNaevY3tXRfu",
+ "uuid": "Compendium.dnd5e.monsters.Actor.PHO4J98zK2p4KNyc"
+ },
+ {
+ "name": "",
+ "_id": "DprNdxi3hb7lbrjw",
+ "uuid": "Compendium.dnd5e.monsters.Actor.T1xZTDCGuvMBSq8d"
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -98,10 +141,10 @@
"folder": "Qi4Se3we69ukl2V9",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234070,
- "modifiedTime": 1704823521990,
+ "modifiedTime": 1711665620744,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!5eh2HFbS13078Y3H"
diff --git a/packs/_source/spells/2nd-level/flame-blade.json b/packs/_source/spells/2nd-level/flame-blade.json
index 5554a27902..3a53110eb3 100644
--- a/packs/_source/spells/2nd-level/flame-blade.json
+++ b/packs/_source/spells/2nd-level/flame-blade.json
@@ -60,7 +60,7 @@
"damage": {
"parts": [
[
- "floor(2 + @item.level / 2)d6",
+ "(floor(2 + @item.level / 2))d6",
"fire"
]
],
@@ -105,10 +105,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234089,
- "modifiedTime": 1704823522543,
+ "modifiedTime": 1713903698778,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Advtckpz1B733bu9"
diff --git a/packs/_source/spells/2nd-level/magic-weapon.json b/packs/_source/spells/2nd-level/magic-weapon.json
index 896945a2dd..b937aa07d5 100644
--- a/packs/_source/spells/2nd-level/magic-weapon.json
+++ b/packs/_source/spells/2nd-level/magic-weapon.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "ench",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -90,19 +90,186 @@
"somatic",
"concentration"
],
- "crewed": false
+ "crewed": false,
+ "enchantment": {
+ "restrictions": {
+ "allowMagical": false,
+ "type": "weapon"
+ },
+ "prompt": false
+ }
},
"sort": 0,
"flags": {},
"img": "icons/magic/fire/dagger-rune-enchant-flame-blue.webp",
- "effects": [],
+ "effects": [
+ {
+ "name": "Magic Weapon, +1",
+ "icon": "icons/magic/fire/dagger-rune-enchant-flame-blue.webp",
+ "flags": {
+ "dnd5e": {
+ "type": "enchantment",
+ "enchantment": {
+ "level": {
+ "min": null,
+ "max": 3
+ },
+ "riders": []
+ }
+ }
+ },
+ "_id": "SLSudYaACjmmmZsU",
+ "changes": [
+ {
+ "key": "name",
+ "mode": 5,
+ "value": "{}, +1",
+ "priority": null
+ },
+ {
+ "key": "system.properties",
+ "mode": 2,
+ "value": "mgc",
+ "priority": null
+ },
+ {
+ "key": "system.magicalBonus",
+ "mode": 5,
+ "value": "1",
+ "priority": null
+ }
+ ],
+ "disabled": false,
+ "duration": {
+ "startTime": null,
+ "seconds": null,
+ "combat": null,
+ "rounds": null,
+ "turns": null,
+ "startRound": null,
+ "startTurn": null
+ },
+ "description": "This weapon becomes a magic weapon with a +1 bonus to Attack rolls and Damage Rolls.
",
+ "origin": null,
+ "transfer": false,
+ "statuses": [],
+ "tint": null,
+ "_key": "!items.effects!Sgjrf8qqv97CCWM4.SLSudYaACjmmmZsU"
+ },
+ {
+ "name": "Magic Weapon, +2",
+ "icon": "icons/magic/fire/dagger-rune-enchant-flame-blue.webp",
+ "flags": {
+ "dnd5e": {
+ "type": "enchantment",
+ "enchantment": {
+ "level": {
+ "min": 4,
+ "max": 5
+ },
+ "riders": []
+ }
+ }
+ },
+ "changes": [
+ {
+ "key": "name",
+ "mode": 5,
+ "value": "{}, +2",
+ "priority": null
+ },
+ {
+ "key": "system.properties",
+ "mode": 2,
+ "value": "mgc",
+ "priority": null
+ },
+ {
+ "key": "system.magicalBonus",
+ "mode": 5,
+ "value": "2",
+ "priority": null
+ }
+ ],
+ "disabled": false,
+ "duration": {
+ "startTime": null,
+ "seconds": null,
+ "combat": null,
+ "rounds": null,
+ "turns": null,
+ "startRound": null,
+ "startTurn": null
+ },
+ "description": "This weapon becomes a magic weapon with a +2 bonus to Attack rolls and Damage Rolls.
",
+ "origin": null,
+ "transfer": false,
+ "statuses": [],
+ "tint": null,
+ "_id": "8OhsRxK3dF1JeQXO",
+ "_key": "!items.effects!Sgjrf8qqv97CCWM4.8OhsRxK3dF1JeQXO"
+ },
+ {
+ "name": "Magic Weapon, +3",
+ "icon": "icons/magic/fire/dagger-rune-enchant-flame-blue.webp",
+ "flags": {
+ "dnd5e": {
+ "type": "enchantment",
+ "enchantment": {
+ "level": {
+ "min": 6,
+ "max": null
+ },
+ "riders": []
+ }
+ }
+ },
+ "changes": [
+ {
+ "key": "name",
+ "mode": 5,
+ "value": "{}, +3",
+ "priority": null
+ },
+ {
+ "key": "system.properties",
+ "mode": 2,
+ "value": "mgc",
+ "priority": null
+ },
+ {
+ "key": "system.magicalBonus",
+ "mode": 5,
+ "value": "3",
+ "priority": null
+ }
+ ],
+ "disabled": false,
+ "duration": {
+ "startTime": null,
+ "seconds": null,
+ "combat": null,
+ "rounds": null,
+ "turns": null,
+ "startRound": null,
+ "startTurn": null
+ },
+ "description": "This weapon becomes a magic weapon with a +3 bonus to Attack rolls and Damage Rolls.
",
+ "origin": null,
+ "transfer": false,
+ "statuses": [],
+ "tint": null,
+ "_id": "7L1wKfaEdN85IA0Z",
+ "_key": "!items.effects!Sgjrf8qqv97CCWM4.7L1wKfaEdN85IA0Z"
+ }
+ ],
"folder": "Qi4Se3we69ukl2V9",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234141,
- "modifiedTime": 1704823523963,
+ "modifiedTime": 1715375403560,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Sgjrf8qqv97CCWM4"
diff --git a/packs/_source/spells/2nd-level/spiritual-weapon.json b/packs/_source/spells/2nd-level/spiritual-weapon.json
index d297dc939e..fb0aeb4cfe 100644
--- a/packs/_source/spells/2nd-level/spiritual-weapon.json
+++ b/packs/_source/spells/2nd-level/spiritual-weapon.json
@@ -60,7 +60,7 @@
"damage": {
"parts": [
[
- "floor(@item.level / 2)d8 + @mod",
+ "(floor(@item.level / 2))d8 + @mod",
"force"
]
],
@@ -103,10 +103,10 @@
"flags": {},
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234115,
- "modifiedTime": 1704823523229,
+ "modifiedTime": 1713903686177,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!JbxsYXxSOTZbf9I0"
diff --git a/packs/_source/spells/4th-level/arcane-eye.json b/packs/_source/spells/4th-level/arcane-eye.json
index b0c3ef6667..19d9eea588 100644
--- a/packs/_source/spells/4th-level/arcane-eye.json
+++ b/packs/_source/spells/4th-level/arcane-eye.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -89,9 +89,27 @@
"vocal",
"somatic",
"material",
- "concentration"
+ "concentration",
+ "mgc"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "profiles": [
+ {
+ "name": "",
+ "_id": "ymTRUlo76wX36XFK",
+ "uuid": "Compendium.dnd5e.monsters.Actor.tuHyePQ9GazMTyc0"
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -100,10 +118,10 @@
"folder": "5auWSClKMDUIV5Ni",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234109,
- "modifiedTime": 1704823523048,
+ "modifiedTime": 1712086371894,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!ImlCJQwR1VL40Qem"
diff --git a/packs/_source/spells/4th-level/giant-insect.json b/packs/_source/spells/4th-level/giant-insect.json
index d326c6d786..9206f56c54 100644
--- a/packs/_source/spells/4th-level/giant-insect.json
+++ b/packs/_source/spells/4th-level/giant-insect.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -90,7 +90,60 @@
"somatic",
"concentration"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hd": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "profiles": [
+ {
+ "count": "10",
+ "name": "",
+ "_id": "xLVPgOloyb3QJ0i1",
+ "uuid": "Compendium.dnd5e.monsters.Actor.Hn8FFLEzscgT7azz",
+ "level": {
+ "min": null,
+ "max": null
+ }
+ },
+ {
+ "count": "",
+ "name": "",
+ "_id": "zzh3sTByUIvUYVvE",
+ "uuid": "Compendium.dnd5e.monsters.Actor.GxgIVRX5GbVTifiF",
+ "level": {
+ "min": null,
+ "max": null
+ }
+ },
+ {
+ "count": "3",
+ "name": "",
+ "_id": "Mjp51GLFAYyA6NgW",
+ "uuid": "Compendium.dnd5e.monsters.Actor.v99wOosUJjUgcUNF",
+ "level": {
+ "min": null,
+ "max": null
+ }
+ },
+ {
+ "count": "5",
+ "name": "",
+ "_id": "LkxYBiqNIyzUJxuH",
+ "uuid": "Compendium.dnd5e.monsters.Actor.4tl0s2SnaLjkoDiI",
+ "level": {
+ "min": null,
+ "max": null
+ }
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -99,10 +152,10 @@
"folder": "5auWSClKMDUIV5Ni",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234177,
- "modifiedTime": 1704823524872,
+ "modifiedTime": 1714077185843,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!czXrVRx6XYRWsHAi"
diff --git a/packs/_source/spells/5th-level/arcane-hand.json b/packs/_source/spells/5th-level/arcane-hand.json
index 9d978695b7..c1f6049a6a 100644
--- a/packs/_source/spells/5th-level/arcane-hand.json
+++ b/packs/_source/spells/5th-level/arcane-hand.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "rsak",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -60,15 +60,10 @@
"damage": ""
},
"damage": {
- "parts": [
- [
- "4d8",
- "force"
- ]
- ],
- "versatile": "2d6"
+ "parts": [],
+ "versatile": ""
},
- "formula": "1d20+8",
+ "formula": "",
"save": {
"ability": "",
"dc": null,
@@ -94,9 +89,32 @@
"vocal",
"somatic",
"material",
- "concentration"
+ "concentration",
+ "mgc"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "match": {
+ "proficiency": false,
+ "attacks": true,
+ "saves": false
+ },
+ "bonuses": {
+ "ac": "",
+ "hp": "@attributes.hp.max",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "creatureTypes": [],
+ "profiles": [
+ {
+ "name": "",
+ "_id": "M8uQaRVLa9er5zMP",
+ "uuid": "Compendium.dnd5e.monsters.Actor.iHj5Tkm6HRgXuaWP"
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -105,10 +123,10 @@
"folder": "bG9QTayc46rfNkv2",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234166,
- "modifiedTime": 1704823524601,
+ "modifiedTime": 1712086944357,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!a2KJHCIbY5Mi4Dmn"
diff --git a/packs/_source/spells/6th-level/create-undead.json b/packs/_source/spells/6th-level/create-undead.json
index fb6a65d82a..eaa255eb0e 100644
--- a/packs/_source/spells/6th-level/create-undead.json
+++ b/packs/_source/spells/6th-level/create-undead.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -90,7 +90,60 @@
"somatic",
"material"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hd": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "profiles": [
+ {
+ "count": "@item.level - 6",
+ "name": "",
+ "_id": "GGQa2fXx4sJFOhCv",
+ "uuid": "Compendium.dnd5e.monsters.Actor.IyIybE5t2adMEVUM",
+ "level": {
+ "min": 8,
+ "max": null
+ }
+ },
+ {
+ "count": "@item.level - 3",
+ "name": "",
+ "_id": "439tNP7qngefOmVd",
+ "uuid": "Compendium.dnd5e.monsters.Actor.OBujQLLPSmlJiZnL",
+ "level": {
+ "min": null,
+ "max": null
+ }
+ },
+ {
+ "count": "@item.level - 7",
+ "name": "",
+ "_id": "8377f4szK4aEYLqD",
+ "uuid": "Compendium.dnd5e.monsters.Actor.t8WYD7ak07X7xpx8",
+ "level": {
+ "min": 9,
+ "max": null
+ }
+ },
+ {
+ "count": "@item.level - 6",
+ "name": "",
+ "_id": "1wXs9fpxffiMlT1j",
+ "uuid": "Compendium.dnd5e.monsters.Actor.rbyp54px2D0ql4QK",
+ "level": {
+ "min": 8,
+ "max": null
+ }
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -99,10 +152,10 @@
"folder": "0pdesvXqKd55VOh2",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234100,
- "modifiedTime": 1704823522820,
+ "modifiedTime": 1714076897049,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!E4NXux0RHvME1XgP"
diff --git a/packs/_source/spells/7th-level/arcane-sword.json b/packs/_source/spells/7th-level/arcane-sword.json
index 49b2e368c4..19b2beb77a 100644
--- a/packs/_source/spells/7th-level/arcane-sword.json
+++ b/packs/_source/spells/7th-level/arcane-sword.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "rsak",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -94,9 +94,32 @@
"vocal",
"somatic",
"material",
- "concentration"
+ "concentration",
+ "mgc"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "match": {
+ "proficiency": false,
+ "attacks": true,
+ "saves": false
+ },
+ "bonuses": {
+ "ac": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "creatureTypes": [],
+ "profiles": [
+ {
+ "name": "",
+ "_id": "wPuXJHCG0YZ72HSI",
+ "uuid": "Compendium.dnd5e.monsters.Actor.Tac7eq0AXJco0nml"
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -105,10 +128,10 @@
"folder": "irCSpQWIMtp978TA",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234120,
- "modifiedTime": 1704823523382,
+ "modifiedTime": 1712087139676,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!LTDNWoFVJNLjiiNa"
diff --git a/packs/_source/spells/cantrip/dancing-lights.json b/packs/_source/spells/cantrip/dancing-lights.json
index 92482d107f..e977b0b2de 100644
--- a/packs/_source/spells/cantrip/dancing-lights.json
+++ b/packs/_source/spells/cantrip/dancing-lights.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -91,7 +91,40 @@
"material",
"concentration"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hd": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "profiles": [
+ {
+ "count": "",
+ "name": "",
+ "_id": "VCE7UzvbkVLU3yGQ",
+ "uuid": "Compendium.dnd5e.monsters.Actor.JNmHqTwkWayvkH37",
+ "level": {
+ "min": null,
+ "max": null
+ }
+ },
+ {
+ "count": "4",
+ "name": "",
+ "_id": "HC2PKEK56d2l8mFi",
+ "uuid": "Compendium.dnd5e.monsters.Actor.UrXp9O9N7DvdH9nL",
+ "level": {
+ "min": null,
+ "max": null
+ }
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -100,10 +133,10 @@
"folder": "Z8kZlnggh1PtuF3Y",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234094,
- "modifiedTime": 1704823522707,
+ "modifiedTime": 1714077073151,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!CAxSzHWizrafT033"
diff --git a/packs/_source/spells/cantrip/mage-hand.json b/packs/_source/spells/cantrip/mage-hand.json
index 41e4365e1d..0006e80cf7 100644
--- a/packs/_source/spells/cantrip/mage-hand.json
+++ b/packs/_source/spells/cantrip/mage-hand.json
@@ -52,7 +52,7 @@
"scale": false
},
"ability": "",
- "actionType": "util",
+ "actionType": "summ",
"attackBonus": "",
"chatFlavor": "",
"critical": {
@@ -87,9 +87,27 @@
},
"properties": [
"vocal",
- "somatic"
+ "somatic",
+ "mgc"
],
- "crewed": false
+ "crewed": false,
+ "summons": {
+ "prompt": true,
+ "bonuses": {
+ "ac": "",
+ "hp": "",
+ "attackDamage": "",
+ "saveDamage": "",
+ "healing": ""
+ },
+ "profiles": [
+ {
+ "name": "",
+ "_id": "H4LmY7OuwtEQFipO",
+ "uuid": "Compendium.dnd5e.monsters.Actor.zwT2WjWo7cTm2631"
+ }
+ ]
+ }
},
"sort": 0,
"flags": {},
@@ -98,10 +116,10 @@
"folder": "Z8kZlnggh1PtuF3Y",
"_stats": {
"systemId": "dnd5e",
- "systemVersion": "3.0.0",
+ "systemVersion": "3.2.0",
"coreVersion": "11.315",
"createdTime": 1661787234148,
- "modifiedTime": 1704823524140,
+ "modifiedTime": 1712088767209,
"lastModifiedBy": "dnd5ebuilder0000"
},
"_key": "!items!Utk1OQRwYkMkFRD3"
diff --git a/system.json b/system.json
index c67e56baa1..3804cf514d 100644
--- a/system.json
+++ b/system.json
@@ -2,14 +2,14 @@
"id": "dnd5e",
"title": "Dungeons & Dragons Fifth Edition",
"description": "A system for playing the fifth edition of the world's most popular role-playing game in the Foundry Virtual Tabletop environment.",
- "version": "3.1.0",
+ "version": "3.2.0",
"compatibility": {
"minimum": "11.315",
"verified": "12"
},
"url": "https://github.com/foundryvtt/dnd5e/",
"manifest": "https://raw.githubusercontent.com/foundryvtt/dnd5e/master/system.json",
- "download": "https://github.com/foundryvtt/dnd5e/releases/download/release-3.1.0/dnd5e-release-3.1.0.zip",
+ "download": "https://github.com/foundryvtt/dnd5e/releases/download/release-3.2.0/dnd5e-release-3.2.0.zip",
"authors": [
{
"name": "Atropos",
@@ -212,6 +212,10 @@
"socket": true,
"gridDistance": 5,
"gridUnits": "ft",
+ "grid": {
+ "distance": 5,
+ "units": "ft"
+ },
"primaryTokenAttribute": "attributes.hp",
"background": "systems/dnd5e/ui/official/dnd5e-background.webp",
"flags": {
diff --git a/template.json b/template.json
index bfd84afdcf..d188780cf1 100644
--- a/template.json
+++ b/template.json
@@ -39,7 +39,9 @@
"types": [
"class",
"map",
- "rule"
+ "rule",
+ "spells",
+ "subclass"
],
"htmlFields": [
"description.value",
diff --git a/templates/actors/character-sheet-2.hbs b/templates/actors/character-sheet-2.hbs
index a23a67119c..4da1f1b1bb 100644
--- a/templates/actors/character-sheet-2.hbs
+++ b/templates/actors/character-sheet-2.hbs
@@ -423,8 +423,8 @@
{{ resource.value }}
{{/if}}
/
- {{#if @root.actor.isOwner}}
-
{{else}}
diff --git a/templates/actors/character-sheet.hbs b/templates/actors/character-sheet.hbs
index f66aeb131d..fcbf662219 100644
--- a/templates/actors/character-sheet.hbs
+++ b/templates/actors/character-sheet.hbs
@@ -86,7 +86,7 @@
diff --git a/templates/actors/group-sheet.hbs b/templates/actors/group-sheet.hbs
index aac4c2b84f..17e7824b00 100644
--- a/templates/actors/group-sheet.hbs
+++ b/templates/actors/group-sheet.hbs
@@ -46,11 +46,6 @@
{{ numberInput xp.value name="system.details.xp.value" min=0 step=1
placeholder=(dnd5e-numberFormat xp.derived) }}
-
{{/if}}
diff --git a/templates/actors/parts/actor-spellbook.hbs b/templates/actors/parts/actor-spellbook.hbs
index 943b117da5..a7db5e7e53 100644
--- a/templates/actors/parts/actor-spellbook.hbs
+++ b/templates/actors/parts/actor-spellbook.hbs
@@ -6,7 +6,7 @@
{{else}}
{{numberInput system.details.spellLevel name="system.details.spellLevel" class="spellcasting-level"
- placeholder="0" min=0 step=1}}
+ placeholder="0" min=0 step=1 disabled=classSpellcasting}}
{{/unless}}