diff --git a/lang/en.json b/lang/en.json index 954f8025..aeb63449 100755 --- a/lang/en.json +++ b/lang/en.json @@ -236,6 +236,9 @@ } }, "APPLICATIONS": { + "Attribution": { + "title": "Attribution" + }, "CharacterCreation": { "tabs": { "ancestry": "Ancestry", @@ -1905,6 +1908,7 @@ "armorScore": "Armor Score", "activeEffects": "Active Effects", "armorSlots": "Armor Slots", + "artistAttribution": "Artwork By: {artist}", "attack": "Attack", "basics": "Basics", "bonus": "Bonus", @@ -2005,6 +2009,11 @@ }, "ITEMS": { "FIELDS": { + "attribution": { + "source": { "label": "Source" }, + "page": { "label": "Page" }, + "artist": { "label": "Artist" } + }, "resource": { "amount": { "label": "Amount" }, "dieFaces": { "label": "Die Faces" }, @@ -2102,7 +2111,7 @@ "FIELDS": { "displayFear": { "label": "Fear Display" }, "dualityColorScheme": { "label": "Chat Style" }, - "showGenericStatusEffects": { "label": "Show Foundry Status Effects" }, + "hideAttribution": { "label": "Hide Attribution" }, "expandedTitle": "Auto-expand Descriptions", "extendCharacterDescriptions": { "label": "Characters" }, "extendAdversaryDescriptions": { "label": "Adversaries" }, @@ -2112,7 +2121,8 @@ "expandRollMessageDesc": { "label": "Description" }, "expandRollMessageRoll": { "label": "Formula" }, "expandRollMessageDamage": { "label": "Damage/Healing" }, - "expandRollMessageTarget": { "label": "Target" } + "expandRollMessageTarget": { "label": "Target" }, + "showGenericStatusEffects": { "label": "Show Foundry Status Effects" } }, "fearDisplay": { "token": "Tokens", @@ -2411,7 +2421,8 @@ "rulesOff": "Rules Off", "remainingUses": "Uses refresh on {type}", "rightClickExtand": "Right-Click to extand", - "companionPartnerLevelBlock": "The companion needs an assigned partner to level up." + "companionPartnerLevelBlock": "The companion needs an assigned partner to level up.", + "configureAttribution": "Configure Attribution" } } } diff --git a/module/applications/dialogs/_module.mjs b/module/applications/dialogs/_module.mjs index 8908ae2b..84ba4037 100644 --- a/module/applications/dialogs/_module.mjs +++ b/module/applications/dialogs/_module.mjs @@ -1,3 +1,4 @@ +export { default as AttributionDialog } from './attributionDialog.mjs'; export { default as BeastformDialog } from './beastformDialog.mjs'; export { default as d20RollDialog } from './d20RollDialog.mjs'; export { default as DamageDialog } from './damageDialog.mjs'; diff --git a/module/applications/dialogs/attributionDialog.mjs b/module/applications/dialogs/attributionDialog.mjs new file mode 100644 index 00000000..a72f6306 --- /dev/null +++ b/module/applications/dialogs/attributionDialog.mjs @@ -0,0 +1,93 @@ +import autocomplete from 'autocompleter'; + +const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api; + +export default class AttriubtionDialog extends HandlebarsApplicationMixin(ApplicationV2) { + constructor(item) { + super({}); + + this.item = item; + this.sources = Object.keys(CONFIG.DH.GENERAL.attributionSources).flatMap(groupKey => { + const group = CONFIG.DH.GENERAL.attributionSources[groupKey]; + return group.values.map(x => ({ group: group.label, ...x })); + }); + } + + get title() { + return game.i18n.localize('DAGGERHEART.APPLICATIONS.Attribution.title'); + } + + static DEFAULT_OPTIONS = { + tag: 'form', + classes: ['daggerheart', 'dh-style', 'dialog', 'views', 'attribution'], + position: { width: 'auto', height: 'auto' }, + window: { icon: 'fa-solid fa-signature' }, + form: { handler: this.updateData, submitOnChange: false, closeOnSubmit: true } + }; + + static PARTS = { + main: { template: 'systems/daggerheart/templates/dialogs/attribution.hbs' } + }; + + _attachPartListeners(partId, htmlElement, options) { + super._attachPartListeners(partId, htmlElement, options); + const sources = this.sources; + + htmlElement.querySelectorAll('.attribution-input').forEach(element => { + autocomplete({ + input: element, + fetch: function (text, update) { + if (!text) { + update(sources); + } else { + text = text.toLowerCase(); + var suggestions = sources.filter(n => n.label.toLowerCase().includes(text)); + update(suggestions); + } + }, + render: function (item, search) { + const label = game.i18n.localize(item.label); + const matchIndex = label.toLowerCase().indexOf(search); + + const beforeText = label.slice(0, matchIndex); + const matchText = label.slice(matchIndex, matchIndex + search.length); + const after = label.slice(matchIndex + search.length, label.length); + + const element = document.createElement('li'); + element.innerHTML = `${beforeText}${matchText ? `${matchText}` : ''}${after}`; + if (item.hint) { + element.dataset.tooltip = game.i18n.localize(item.hint); + } + + return element; + }, + renderGroup: function (label) { + const itemElement = document.createElement('div'); + itemElement.textContent = game.i18n.localize(label); + return itemElement; + }, + onSelect: function (item) { + element.value = item.label; + }, + click: e => e.fetch(), + customize: function (_input, _inputRect, container) { + container.style.zIndex = foundry.applications.api.ApplicationV2._maxZ; + }, + minLength: 0 + }); + }); + } + + async _prepareContext(_options) { + const context = await super._prepareContext(_options); + context.item = this.item; + context.data = this.item.system.attribution; + + return context; + } + + static async updateData(_event, _element, formData) { + await this.item.update({ 'system.attribution': formData.object }); + this.item.sheet.refreshFrame(); + } +} diff --git a/module/applications/sheets/actors/adversary.mjs b/module/applications/sheets/actors/adversary.mjs index c128b648..01256bcc 100644 --- a/module/applications/sheets/actors/adversary.mjs +++ b/module/applications/sheets/actors/adversary.mjs @@ -4,6 +4,7 @@ import DHBaseActorSheet from '../api/base-actor.mjs'; /**@typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction */ export default class AdversarySheet extends DHBaseActorSheet { + /** @inheritDoc */ static DEFAULT_OPTIONS = { classes: ['adversary'], position: { width: 660, height: 766 }, @@ -12,7 +13,14 @@ export default class AdversarySheet extends DHBaseActorSheet { reactionRoll: AdversarySheet.#reactionRoll }, window: { - resizable: true + resizable: true, + controls: [ + { + icon: 'fa-solid fa-signature', + label: 'DAGGERHEART.UI.Tooltip.configureAttribution', + action: 'editAttribution' + } + ] } }; diff --git a/module/applications/sheets/actors/environment.mjs b/module/applications/sheets/actors/environment.mjs index aa2759a2..9fd003c6 100644 --- a/module/applications/sheets/actors/environment.mjs +++ b/module/applications/sheets/actors/environment.mjs @@ -8,10 +8,17 @@ export default class DhpEnvironment extends DHBaseActorSheet { classes: ['environment'], position: { width: 500, - height: 725 + height: 740 }, window: { - resizable: true + resizable: true, + controls: [ + { + icon: 'fa-solid fa-signature', + label: 'DAGGERHEART.UI.Tooltip.configureAttribution', + action: 'editAttribution' + } + ] }, actions: {}, dragDrop: [{ dragSelector: '.action-section .inventory-item', dropSelector: null }] @@ -42,6 +49,7 @@ export default class DhpEnvironment extends DHBaseActorSheet { switch (partId) { case 'header': await this._prepareHeaderContext(context, options); + break; case 'notes': await this._prepareNotesContext(context, options); diff --git a/module/applications/sheets/api/application-mixin.mjs b/module/applications/sheets/api/application-mixin.mjs index 83dc1581..15b84cff 100644 --- a/module/applications/sheets/api/application-mixin.mjs +++ b/module/applications/sheets/api/application-mixin.mjs @@ -85,6 +85,8 @@ export default function DHApplicationMixin(Base) { this._dragDrop = this._createDragDropHandlers(); } + #nonHeaderAttribution = ['environment', 'ancestry', 'community', 'domainCard']; + /** * The default options for the sheet. * @type {DHSheetV2Configuration} @@ -101,7 +103,8 @@ export default function DHApplicationMixin(Base) { toggleEffect: DHSheetV2.#toggleEffect, toggleExtended: DHSheetV2.#toggleExtended, addNewItem: DHSheetV2.#addNewItem, - browseItem: DHSheetV2.#browseItem + browseItem: DHSheetV2.#browseItem, + editAttribution: DHSheetV2.#editAttribution }, contextMenus: [ { @@ -125,6 +128,43 @@ export default function DHApplicationMixin(Base) { tagifyConfigs: [] }; + /**@inheritdoc */ + async _renderFrame(options) { + const frame = await super._renderFrame(options); + + const hideAttribution = game.settings.get( + CONFIG.DH.id, + CONFIG.DH.SETTINGS.gameSettings.appearance + ).hideAttribution; + const headerAttribution = !this.#nonHeaderAttribution.includes(this.document.type); + if (!hideAttribution && this.document.system.metadata.hasAttribution && headerAttribution) { + const { source, page } = this.document.system.attribution; + const attribution = [source, page ? `pg ${page}.` : null].filter(x => x).join('. '); + const element = ``; + this.window.controls.insertAdjacentHTML('beforebegin', element); + } + + return frame; + } + + /** + * Refresh the custom parts of the application frame + */ + refreshFrame() { + const hideAttribution = game.settings.get( + CONFIG.DH.id, + CONFIG.DH.SETTINGS.gameSettings.appearance + ).hideAttribution; + const headerAttribution = !this.#nonHeaderAttribution.includes(this.document.type); + if (!hideAttribution && this.document.system.metadata.hasAttribution && headerAttribution) { + const { source, page } = this.document.system.attribution; + const attribution = [source, page ? `pg ${page}.` : null].filter(x => x).join('. '); + + const label = this.window.header.querySelector('.attribution-header-label'); + label.innerHTML = attribution; + } + } + /** * Related documents that should cause a rerender of this application when updated. */ @@ -548,6 +588,14 @@ export default function DHApplicationMixin(Base) { return new ItemBrowser({ presets }).render({ force: true }); } + /** + * Open the attribution dialog + * @type {ApplicationClickAction} + */ + static async #editAttribution() { + new game.system.api.applications.dialogs.AttributionDialog(this.document).render({ force: true }); + } + /** * Create an embedded document. * @type {ApplicationClickAction} diff --git a/module/applications/sheets/api/base-actor.mjs b/module/applications/sheets/api/base-actor.mjs index 67cec44f..33c5a0e2 100644 --- a/module/applications/sheets/api/base-actor.mjs +++ b/module/applications/sheets/api/base-actor.mjs @@ -55,6 +55,9 @@ export default class DHBaseActorSheet extends DHApplicationMixin(ActorSheetV2) { async _prepareContext(_options) { const context = await super._prepareContext(_options); context.isNPC = this.document.isNPC; + context.showAttribution = !game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.appearance) + .hideAttribution; + return context; } diff --git a/module/applications/sheets/api/base-item.mjs b/module/applications/sheets/api/base-item.mjs index a9d3237d..b4af283b 100644 --- a/module/applications/sheets/api/base-item.mjs +++ b/module/applications/sheets/api/base-item.mjs @@ -13,7 +13,16 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) { static DEFAULT_OPTIONS = { classes: ['item'], position: { width: 600 }, - window: { resizable: true }, + window: { + resizable: true, + controls: [ + { + icon: 'fa-solid fa-signature', + label: 'DAGGERHEART.UI.Tooltip.configureAttribution', + action: 'editAttribution' + } + ] + }, form: { submitOnChange: true }, @@ -55,6 +64,15 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) { /* Prepare Context */ /* -------------------------------------------- */ + /**@inheritdoc */ + async _prepareContext(options) { + const context = super._prepareContext(options); + context.showAttribution = !game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.appearance) + .hideAttribution; + + return context; + } + /**@inheritdoc */ async _preparePartContext(partId, context, options) { await super._preparePartContext(partId, context, options); diff --git a/module/config/generalConfig.mjs b/module/config/generalConfig.mjs index 34ca6009..e99c6ff1 100644 --- a/module/config/generalConfig.mjs +++ b/module/config/generalConfig.mjs @@ -624,6 +624,13 @@ export const rollTypes = { } }; +export const attributionSources = { + daggerheart: { + label: 'Daggerheart', + values: [{ label: 'Daggerheart SRD' }] + } +}; + export const fearDisplay = { token: { value: 'token', label: 'DAGGERHEART.SETTINGS.Appearance.fearDisplay.token' }, bar: { value: 'bar', label: 'DAGGERHEART.SETTINGS.Appearance.fearDisplay.bar' }, diff --git a/module/data/actor/adversary.mjs b/module/data/actor/adversary.mjs index e64c64f3..80bcb43e 100644 --- a/module/data/actor/adversary.mjs +++ b/module/data/actor/adversary.mjs @@ -10,7 +10,8 @@ export default class DhpAdversary extends BaseDataActor { return foundry.utils.mergeObject(super.metadata, { label: 'TYPES.Actor.adversary', type: 'adversary', - settingSheet: DHAdversarySettings + settingSheet: DHAdversarySettings, + hasAttribution: true }); } diff --git a/module/data/actor/base.mjs b/module/data/actor/base.mjs index 5b225228..bdb810dd 100644 --- a/module/data/actor/base.mjs +++ b/module/data/actor/base.mjs @@ -39,7 +39,8 @@ export default class BaseDataActor extends foundry.abstract.TypeDataModel { type: 'base', isNPC: true, settingSheet: null, - hasResistances: true + hasResistances: true, + hasAttribution: false }; } @@ -53,6 +54,13 @@ export default class BaseDataActor extends foundry.abstract.TypeDataModel { const fields = foundry.data.fields; const schema = {}; + if (this.metadata.hasAttribution) { + schema.attribution = new fields.SchemaField({ + source: new fields.StringField(), + page: new fields.NumberField(), + artist: new fields.StringField() + }); + } if (this.metadata.isNPC) schema.description = new fields.HTMLField({ required: true, nullable: true }); if (this.metadata.hasResistances) schema.resistance = new fields.SchemaField({ @@ -78,6 +86,13 @@ export default class BaseDataActor extends foundry.abstract.TypeDataModel { */ static DEFAULT_ICON = null; + get attributionLabel() { + if (!this.attribution) return; + + const { source, page } = this.attribution; + return [source, page ? `pg ${page}.` : null].filter(x => x).join('. '); + } + /* -------------------------------------------- */ /** diff --git a/module/data/actor/environment.mjs b/module/data/actor/environment.mjs index adb7dabc..ce1df7cd 100644 --- a/module/data/actor/environment.mjs +++ b/module/data/actor/environment.mjs @@ -12,7 +12,8 @@ export default class DhEnvironment extends BaseDataActor { label: 'TYPES.Actor.environment', type: 'environment', settingSheet: DHEnvironmentSettings, - hasResistances: false + hasResistances: false, + hasAttribution: true }); } diff --git a/module/data/item/base.mjs b/module/data/item/base.mjs index f0b22b44..1b257db4 100644 --- a/module/data/item/base.mjs +++ b/module/data/item/base.mjs @@ -26,7 +26,8 @@ export default class BaseDataItem extends foundry.abstract.TypeDataModel { hasResource: false, isQuantifiable: false, isInventoryItem: false, - hasActions: false + hasActions: false, + hasAttribution: true }; } @@ -37,7 +38,13 @@ export default class BaseDataItem extends foundry.abstract.TypeDataModel { /** @inheritDoc */ static defineSchema() { - const schema = {}; + const schema = { + attribution: new fields.SchemaField({ + source: new fields.StringField(), + page: new fields.NumberField(), + artist: new fields.StringField() + }) + }; if (this.metadata.hasDescription) schema.description = new fields.HTMLField({ required: true, nullable: true }); @@ -110,6 +117,13 @@ export default class BaseDataItem extends foundry.abstract.TypeDataModel { return []; } + get attributionLabel() { + if (!this.attribution) return; + + const { source, page } = this.attribution; + return [source, page ? `pg ${page}.` : null].filter(x => x).join('. '); + } + /** * Obtain a data object used to evaluate any dice rolls associated with this Item Type * @param {object} [options] - Options which modify the getRollData method. diff --git a/module/data/settings/Appearance.mjs b/module/data/settings/Appearance.mjs index e493b187..36f6bb5a 100644 --- a/module/data/settings/Appearance.mjs +++ b/module/data/settings/Appearance.mjs @@ -89,6 +89,11 @@ export default class DhAppearance extends foundry.abstract.DataModel { initial: false, label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.expandRollMessageTarget.label' }) + }), + hideAttribution: new fields.BooleanField({ + required: true, + initial: false, + label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.hideAttribution.label' }) }; } diff --git a/src/packs/adversaries/adversary_Acid_Burrower_89yAh30vaNQOALlz.json b/src/packs/adversaries/adversary_Acid_Burrower_89yAh30vaNQOALlz.json index e226f013..0bc8d39d 100644 --- a/src/packs/adversaries/adversary_Acid_Burrower_89yAh30vaNQOALlz.json +++ b/src/packs/adversaries/adversary_Acid_Burrower_89yAh30vaNQOALlz.json @@ -143,6 +143,11 @@ "difficulty": null, "damageMod": "none" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 75, + "artist": "" } }, "flags": {}, @@ -152,9 +157,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010222829, - "modifiedTime": 1755259462470, + "modifiedTime": 1755384241210, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { diff --git a/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json b/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json index f2eeb23b..c8079e49 100644 --- a/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json +++ b/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 91, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784219, - "modifiedTime": 1755259462665, + "modifiedTime": 1755385356620, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "G7jiltRjgvVhZewm", diff --git a/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json b/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json index 953e7deb..ad630902 100644 --- a/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json +++ b/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json @@ -105,6 +105,11 @@ "img": "icons/weapons/daggers/dagger-bone-black.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 84, + "artist": "" } }, "flags": {}, @@ -114,9 +119,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784220, - "modifiedTime": 1755259462932, + "modifiedTime": 1755384980487, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "vNIbYQ4YSzNf0WPE", diff --git a/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json b/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json index 81287859..720dd90b 100644 --- a/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json +++ b/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json @@ -117,6 +117,11 @@ "img": "icons/magic/unholy/beam-ringed-impact-purple.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 97, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784221, - "modifiedTime": 1755259462752, + "modifiedTime": 1755385620034, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WPEOIGfclNJxWb87", diff --git a/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json b/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json index e2793ca3..2b0bddcd 100644 --- a/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json +++ b/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json @@ -111,6 +111,11 @@ "img": "icons/weapons/bows/longbow-recurve-leather-brown.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 77, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784222, - "modifiedTime": 1755259462476, + "modifiedTime": 1755384306205, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JRhrrEg5UroURiAD", diff --git a/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json b/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json index 643610d3..6f43714d 100644 --- a/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json +++ b/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 84, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784223, - "modifiedTime": 1755259462516, + "modifiedTime": 1755384973132, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "0ts6CGd93lLqGZI5", diff --git a/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json b/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json index 7cffa6de..c69454c6 100644 --- a/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json +++ b/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 84, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784224, - "modifiedTime": 1755259462844, + "modifiedTime": 1755384989183, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "h5RuhzGL17dW5FBT", diff --git a/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json b/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json index cad8ac88..5765ca72 100644 --- a/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json +++ b/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 85, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784224, - "modifiedTime": 1755264708230, + "modifiedTime": 1755385012352, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dgH3fW9FTYLaIDvS", diff --git a/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json b/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json index 688b54f4..a1c06c52 100644 --- a/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json +++ b/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json @@ -117,6 +117,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 75, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784226, - "modifiedTime": 1755259462479, + "modifiedTime": 1755384265295, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "71qKDLKO3CsrNkdy", diff --git a/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json b/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json index 184f5fdf..cd514f93 100644 --- a/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json +++ b/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 77, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784226, - "modifiedTime": 1755259462481, + "modifiedTime": 1755384320981, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "B4LZcGuBAHzyVdzy", diff --git a/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json b/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json index bbdb4e63..052f5c1e 100644 --- a/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json +++ b/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json @@ -115,6 +115,11 @@ "img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 83, + "artist": "" } }, "flags": {}, @@ -124,9 +129,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784231, - "modifiedTime": 1755259462487, + "modifiedTime": 1755384340788, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2UeZ0tEe7AzgSJNd", diff --git a/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json b/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json index 8904e37a..ca46acc2 100644 --- a/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json +++ b/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json @@ -111,6 +111,11 @@ "img": "icons/weapons/clubs/club-banded-barbed-black.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 75, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784233, - "modifiedTime": 1755259462491, + "modifiedTime": 1755384280132, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8Zkqk1jU09nKL2fy", diff --git a/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json b/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json index 652ccc48..ff9b1215 100644 --- a/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json +++ b/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json @@ -106,6 +106,11 @@ "img": "icons/magic/light/beam-rays-magenta.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 85, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784233, - "modifiedTime": 1755259462855, + "modifiedTime": 1755385025439, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jDmHqGvzg5wjgmxE", diff --git a/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json b/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json index 6bea9bbc..51d3f73d 100644 --- a/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json +++ b/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json @@ -99,6 +99,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 85, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784234, - "modifiedTime": 1755259462618, + "modifiedTime": 1755385032835, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "99TqczuQipBmaB8i", diff --git a/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json b/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json index eb5d35a1..ed0d9abd 100644 --- a/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json +++ b/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json @@ -106,6 +106,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 75, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784236, - "modifiedTime": 1755259462495, + "modifiedTime": 1755384289735, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uOP5oT9QzXPlnf3p", diff --git a/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json b/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json index e0cfcf66..6432afab 100644 --- a/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json +++ b/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json @@ -117,6 +117,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 85, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784237, - "modifiedTime": 1755264799637, + "modifiedTime": 1755385040425, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ZxWaWPdzFIUPNC62", diff --git a/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json b/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json index 77181f05..90f7bd6c 100644 --- a/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json +++ b/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 76, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784237, - "modifiedTime": 1755259462499, + "modifiedTime": 1755384362436, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CBBuEXAlLKFMJdjg", diff --git a/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json b/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json index 6c63e29e..d83ce510 100644 --- a/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json +++ b/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json @@ -117,6 +117,11 @@ "img": "icons/weapons/staves/staff-ornate-purple.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 85, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784239, - "modifiedTime": 1755259462512, + "modifiedTime": 1755385049086, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "0NxCSugvKQ4W8OYZ", diff --git a/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json b/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json index 96fc1cc6..236402ea 100644 --- a/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json +++ b/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json @@ -106,6 +106,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 86, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784239, - "modifiedTime": 1755264898243, + "modifiedTime": 1755385067530, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tyBOpLfigAhI9bU3", diff --git a/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json b/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json index fe8d090f..78024303 100644 --- a/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json +++ b/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json @@ -99,6 +99,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 86, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784240, - "modifiedTime": 1755264925295, + "modifiedTime": 1755385079522, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "zx99sOGTXicP4SSD", diff --git a/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json b/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json index 31418d81..d14eff69 100644 --- a/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json +++ b/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json @@ -111,6 +111,11 @@ "img": "icons/magic/nature/root-vines-grow-brown.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 76, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784246, - "modifiedTime": 1755259462506, + "modifiedTime": 1755384371297, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9x2xY9zwc3xzbXo5", diff --git a/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json b/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json index d32c7ef7..e74522d3 100644 --- a/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json +++ b/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 91, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784247, - "modifiedTime": 1755265775161, + "modifiedTime": 1755385363507, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "pnyjIGxxvurcWmTv", diff --git a/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json b/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json index 673a050d..b5313df2 100644 --- a/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json +++ b/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json @@ -112,6 +112,11 @@ "type": "attack", "range": "far", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 92, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784248, - "modifiedTime": 1755266281854, + "modifiedTime": 1755385375748, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kE4dfhqmIQpNd44e", diff --git a/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json b/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json index 23cfe473..61427aab 100644 --- a/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json +++ b/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 92, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784249, - "modifiedTime": 1755259462532, + "modifiedTime": 1755385382792, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2VN3BftageoTTIzu", diff --git a/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json b/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json index d20f1f18..718f4a9a 100644 --- a/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json +++ b/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json @@ -112,6 +112,11 @@ "img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 92, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784249, - "modifiedTime": 1755259462726, + "modifiedTime": 1755385392005, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "SxSOkM4bcVOFyjbo", diff --git a/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json b/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json index 0948c917..5bdeddf9 100644 --- a/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json +++ b/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 92, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784252, - "modifiedTime": 1755259462568, + "modifiedTime": 1755385398938, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5lphJAgzoqZI3VoG", diff --git a/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json b/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json index bd8fa5e9..c3aeac45 100644 --- a/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json +++ b/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 86, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784253, - "modifiedTime": 1755264935543, + "modifiedTime": 1755385087255, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "NoRZ1PqB8N5wcIw0", diff --git a/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json b/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json index 6e2f68a7..fde75123 100644 --- a/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json +++ b/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json @@ -111,6 +111,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 93, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784253, - "modifiedTime": 1755266383523, + "modifiedTime": 1755385409189, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tBWHW00epmMnkawe", diff --git a/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json b/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json index 71a12698..7104b09f 100644 --- a/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json +++ b/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 76, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784257, - "modifiedTime": 1755259591554, + "modifiedTime": 1755384380804, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wNzeuQLfLUMvgHlQ", diff --git a/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json b/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json index c899f15b..7fb7a97d 100644 --- a/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json +++ b/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 93, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784258, - "modifiedTime": 1755259462937, + "modifiedTime": 1755385415645, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wR7cFKrHvRzbzhBT", diff --git a/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json b/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json index 87d1999c..77a84dcf 100644 --- a/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json +++ b/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json @@ -106,6 +106,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 86, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784258, - "modifiedTime": 1755264962798, + "modifiedTime": 1755385098856, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TLzY1nDw0Bu9Ud40", diff --git a/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json b/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json index 227a40af..2e08edfd 100644 --- a/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json +++ b/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json @@ -99,6 +99,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 93, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784259, - "modifiedTime": 1755259462705, + "modifiedTime": 1755385425940, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "P7h54ZePFPHpYwvB", diff --git a/src/packs/adversaries/adversary_Elite_Soldier_bfhVWMBUh61b9J6n.json b/src/packs/adversaries/adversary_Elite_Soldier_bfhVWMBUh61b9J6n.json index 872f0398..a9e26e65 100644 --- a/src/packs/adversaries/adversary_Elite_Soldier_bfhVWMBUh61b9J6n.json +++ b/src/packs/adversaries/adversary_Elite_Soldier_bfhVWMBUh61b9J6n.json @@ -138,6 +138,11 @@ "difficulty": null, "damageMod": "none" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 86, + "artist": "" } }, "flags": {}, @@ -147,9 +152,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754090776362, - "modifiedTime": 1755259462811, + "modifiedTime": 1755385106827, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { diff --git a/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json b/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json index 491e085d..6546153e 100644 --- a/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json +++ b/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 86, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784262, - "modifiedTime": 1755265009751, + "modifiedTime": 1755385114729, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ChwwVqowFw8hJQwT", diff --git a/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json b/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json index 2b4aea79..b87fb26a 100644 --- a/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json +++ b/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json @@ -99,6 +99,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 97, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784264, - "modifiedTime": 1755259462703, + "modifiedTime": 1755385629418, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "OsLG2BjaEdTZUJU9", diff --git a/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json b/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json index 2dece191..91530e2e 100644 --- a/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json +++ b/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json @@ -112,6 +112,11 @@ "img": "icons/weapons/staves/staff-animal-skull-bull.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 97, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784265, - "modifiedTime": 1755259462708, + "modifiedTime": 1755385635754, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "PELRry1vqjBzSAlr", diff --git a/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json b/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json index aa8b015e..73ae6429 100644 --- a/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json +++ b/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json @@ -155,7 +155,12 @@ } } }, - "motivesAndTactics": "Corrupt, dominate, punish, break the weak" + "motivesAndTactics": "Corrupt, dominate, punish, break the weak", + "attribution": { + "source": "Daggerheart SRD", + "page": 97, + "artist": "" + } }, "prototypeToken": { "name": "Fallen Warlord: Realm Breaker", @@ -742,9 +747,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753929378070, - "modifiedTime": 1755259462847, + "modifiedTime": 1755385644142, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!actors!hxZ0sgoFJubh5aj6" diff --git a/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json b/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json index 45a59c7e..d49889b8 100644 --- a/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json +++ b/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json @@ -156,7 +156,12 @@ }, "chatDisplay": false }, - "motivesAndTactics": "Dispatch merciless death, punish the defi ant, secure victory at any cost" + "motivesAndTactics": "Dispatch merciless death, punish the defi ant, secure victory at any cost", + "attribution": { + "source": "Daggerheart SRD", + "page": 98, + "artist": "" + } }, "prototypeToken": { "name": "Fallen Warlord: Undefeated Champion", @@ -800,9 +805,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753929476879, - "modifiedTime": 1755259462720, + "modifiedTime": 1755385652290, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!actors!RXkZTwBRi4dJ3JE5" diff --git a/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json b/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json index 2408d7cd..5c09cd95 100644 --- a/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json +++ b/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 87, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784268, - "modifiedTime": 1755259462604, + "modifiedTime": 1755385128275, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8VZIgU12cB3cvlyH", diff --git a/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json b/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json index db039085..bfcbbba2 100644 --- a/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json +++ b/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 87, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784268, - "modifiedTime": 1755259462794, + "modifiedTime": 1755385135374, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YnObCleGjPT7yqEc", diff --git a/src/packs/adversaries/adversary_Giant_Eagle_OMQ0v6PE8s1mSU0K.json b/src/packs/adversaries/adversary_Giant_Eagle_OMQ0v6PE8s1mSU0K.json index a281a775..b342864e 100644 --- a/src/packs/adversaries/adversary_Giant_Eagle_OMQ0v6PE8s1mSU0K.json +++ b/src/packs/adversaries/adversary_Giant_Eagle_OMQ0v6PE8s1mSU0K.json @@ -138,6 +138,11 @@ "difficulty": null, "damageMod": "none" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 87, + "artist": "" } }, "flags": {}, @@ -147,9 +152,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1754090770908, - "modifiedTime": 1755265221515, + "modifiedTime": 1755385144098, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { diff --git a/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json b/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json index 1cc50da4..a16fab7d 100644 --- a/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json +++ b/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 76, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784269, - "modifiedTime": 1755259619874, + "modifiedTime": 1755384391635, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "IIWV4ysJPFPnTP7W", diff --git a/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json b/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json index e4330c68..9046d679 100644 --- a/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json +++ b/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json @@ -105,6 +105,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 76, + "artist": "" } }, "flags": {}, @@ -114,9 +119,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784270, - "modifiedTime": 1755259636506, + "modifiedTime": 1755384399993, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "4PfLnaCrOcMdb4dK", diff --git a/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json b/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json index 09a3fe45..3365533c 100644 --- a/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json +++ b/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json @@ -99,6 +99,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 87, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784271, - "modifiedTime": 1755259462570, + "modifiedTime": 1755385156358, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5s8wSvpyC5rxY5aD", diff --git a/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json b/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json index 6337dc1c..32dee4b9 100644 --- a/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json +++ b/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 76, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784272, - "modifiedTime": 1755259666128, + "modifiedTime": 1755384410923, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "fmfntuJ8mHRCAktP", diff --git a/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json b/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json index f82aa34f..a79154e5 100644 --- a/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json +++ b/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 77, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784273, - "modifiedTime": 1755259462600, + "modifiedTime": 1755384427339, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8KWVLWXFhlY2kYx0", diff --git a/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json b/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json index 57cb1760..e68bc6f4 100644 --- a/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json +++ b/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json @@ -112,6 +112,11 @@ "img": "icons/weapons/bows/shortbow-recurve-yellow.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 88, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784274, - "modifiedTime": 1755259462608, + "modifiedTime": 1755385192601, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8mJYMpbLTb8qIOrr", diff --git a/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json b/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json index e519b193..59b08577 100644 --- a/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json +++ b/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 93, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784275, - "modifiedTime": 1755259462829, + "modifiedTime": 1755385432586, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dsfB3YhoL5SudvS2", diff --git a/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json b/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json index 57dbc48b..b1da3ec3 100644 --- a/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json +++ b/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 93, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784278, - "modifiedTime": 1755259462945, + "modifiedTime": 1755385438845, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xIICT6tEdnA7dKDV", diff --git a/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json b/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json index 253da042..ca663abf 100644 --- a/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json +++ b/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 80, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784278, - "modifiedTime": 1755259726565, + "modifiedTime": 1755384442882, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "SHXedd9zZPVfUgUa", diff --git a/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json b/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json index fe3f0050..aea1a4eb 100644 --- a/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json +++ b/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 98, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784279, - "modifiedTime": 1755259462863, + "modifiedTime": 1755385664307, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kabueAo6BALApWqp", diff --git a/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json b/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json index 944e53aa..69b1d11d 100644 --- a/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json +++ b/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json @@ -99,6 +99,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 98, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784279, - "modifiedTime": 1755266855456, + "modifiedTime": 1755385672764, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VENwg7xEFcYObjmT", diff --git a/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json b/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json index b0c3f125..52289d7b 100644 --- a/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json +++ b/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json @@ -111,6 +111,11 @@ "img": "icons/weapons/polearms/spear-hooked-rounded.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 77, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784281, - "modifiedTime": 1755259462930, + "modifiedTime": 1755384460991, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uRtghKE9mHlII4rs", diff --git a/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json b/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json index a5ebb68c..467ce106 100644 --- a/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json +++ b/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json @@ -117,6 +117,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 77, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784282, - "modifiedTime": 1755259874457, + "modifiedTime": 1755384472544, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "mK3A5FTx6k8iPU3F", diff --git a/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json b/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json index 0abf7cdb..8ac5ecdb 100644 --- a/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json +++ b/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 95, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784283, - "modifiedTime": 1755266472641, + "modifiedTime": 1755385468446, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "i2UNbRvgyoSs07M6", diff --git a/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json b/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json index c2e5c886..e2cdfbef 100644 --- a/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json +++ b/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json @@ -112,6 +112,11 @@ "img": "icons/skills/melee/strike-blade-hooked-orange-blue.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 98, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784283, - "modifiedTime": 1755259462909, + "modifiedTime": 1755385681541, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "r1mbfSSwKWdcFdAU", diff --git a/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json b/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json index af630cdd..5982e496 100644 --- a/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json +++ b/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 94, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784284, - "modifiedTime": 1755266545039, + "modifiedTime": 1755385452708, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "6hbqmxDXFOzZJDk4", diff --git a/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json b/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json index 170b55a1..d2d4fd83 100644 --- a/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json +++ b/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 94, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784285, - "modifiedTime": 1755259462679, + "modifiedTime": 1755385485548, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "MI126iMOOobQ1Obn", diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json b/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json index 1c8d59c6..9affbacd 100644 --- a/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json +++ b/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 77, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784290, - "modifiedTime": 1755259904640, + "modifiedTime": 1755384483511, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5Lh1T0zaT8Pkr2U2", diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json b/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json index 6ecc3fdd..e1314bb1 100644 --- a/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json +++ b/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json @@ -111,6 +111,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 78, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784291, - "modifiedTime": 1755259462688, + "modifiedTime": 1755384496776, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "MbBPIOxaxXYNApXz", diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json b/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json index 0d5e2133..96f25b1c 100644 --- a/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json +++ b/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json @@ -117,6 +117,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 78, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784292, - "modifiedTime": 1755259941370, + "modifiedTime": 1755384505324, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CBKixLH3yhivZZuL", diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json b/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json index a7caeeee..fbfd0a66 100644 --- a/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json +++ b/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json @@ -105,6 +105,11 @@ "stress": { "max": 1 } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 78, + "artist": "" } }, "flags": {}, @@ -114,9 +119,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784293, - "modifiedTime": 1755259961931, + "modifiedTime": 1755384512770, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "C0OMQqV7pN6t7ouR", diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json b/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json index c551f836..22d89d60 100644 --- a/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json +++ b/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json @@ -111,6 +111,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 78, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784294, - "modifiedTime": 1755259462803, + "modifiedTime": 1755384520025, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "aTljstqteGoLpCBq", diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json b/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json index d3acab90..535d1564 100644 --- a/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json +++ b/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 78, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784295, - "modifiedTime": 1755260040062, + "modifiedTime": 1755384529543, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XF4tYTq9nPJAy2ox", diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json b/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json index b08f3922..443edf04 100644 --- a/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json +++ b/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json @@ -111,6 +111,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 78, + "artist": "" } }, "flags": {}, @@ -120,9 +125,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784296, - "modifiedTime": 1755259462527, + "modifiedTime": 1755384539312, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1zuyof1XuIfi3aMG", diff --git a/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json b/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json index 51740ec5..35dfc091 100644 --- a/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json +++ b/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 88, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784297, - "modifiedTime": 1755259462684, + "modifiedTime": 1755385201114, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "MYXmTx2FHcIjdfYZ", diff --git a/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json b/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json index 86757347..3fe4bac0 100644 --- a/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json +++ b/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json @@ -122,6 +122,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 88, + "artist": "" } }, "flags": {}, @@ -131,9 +136,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784302, - "modifiedTime": 1755265352331, + "modifiedTime": 1755385208695, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "7ai2opemrclQe3VF", diff --git a/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json b/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json index d0b014eb..ff9f41d1 100644 --- a/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json +++ b/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json @@ -112,6 +112,11 @@ "img": "icons/creatures/tentacles/tentacles-octopus-black-pink.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 99, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784303, - "modifiedTime": 1755259462553, + "modifiedTime": 1755385695905, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "4nqv3ZwJGjnmic8j", diff --git a/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json b/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json index a316a402..7d16e606 100644 --- a/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json +++ b/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 88, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784304, - "modifiedTime": 1755265377045, + "modifiedTime": 1755385217678, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "niBpVU7yeo5ccskE", diff --git a/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json b/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json index 26b1374b..2b16ec95 100644 --- a/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json +++ b/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json @@ -117,6 +117,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 84, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784305, - "modifiedTime": 1755259462821, + "modifiedTime": 1755384999362, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dNta0cUzr96xcFhf", diff --git a/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json b/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json index 1f3826ca..c11a9313 100644 --- a/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json +++ b/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 79, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784305, - "modifiedTime": 1755263103972, + "modifiedTime": 1755384552277, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Al3w2CgjfdT3p9ma", diff --git a/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json b/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json index 97f6a052..5b06271d 100644 --- a/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json +++ b/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json @@ -117,6 +117,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 88, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784306, - "modifiedTime": 1755265400782, + "modifiedTime": 1755385228380, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Vy02IhGhkJLuezu4", diff --git a/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json b/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json index 810359dd..9761b071 100644 --- a/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json +++ b/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json @@ -106,6 +106,11 @@ "range": "close", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 79, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784307, - "modifiedTime": 1755259462919, + "modifiedTime": 1755384563851, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "sRn4bqerfARvhgSV", diff --git a/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json b/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json index 9b4e8594..da22947a 100644 --- a/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json +++ b/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json @@ -105,6 +105,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 79, + "artist": "" } }, "flags": {}, @@ -114,9 +119,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784308, - "modifiedTime": 1755259462544, + "modifiedTime": 1755384577384, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "3tqCjDwJAQ7JKqMb", diff --git a/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json b/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json index fa4b9828..34727ef0 100644 --- a/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json +++ b/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 79, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784308, - "modifiedTime": 1755259462650, + "modifiedTime": 1755384584836, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "DscWkNVoHak6P4hh", diff --git a/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json b/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json index 8e05e6fe..fd0e6a51 100644 --- a/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json +++ b/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json @@ -99,6 +99,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 80, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784309, - "modifiedTime": 1755263168654, + "modifiedTime": 1755384597383, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "G62k4oSkhkoXEs2D", diff --git a/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json b/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json index 67cca4a4..b98e3640 100644 --- a/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json +++ b/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json @@ -106,6 +106,11 @@ "img": "icons/weapons/axes/axe-double.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 89, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784310, - "modifiedTime": 1755259462912, + "modifiedTime": 1755385247589, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rM9qCIYeWg9I0B4l", diff --git a/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json b/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json index 8e84e0ec..4f88edeb 100644 --- a/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json +++ b/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json @@ -117,6 +117,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 94, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784312, - "modifiedTime": 1755266608082, + "modifiedTime": 1755385492928, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "yx0vK2yfNVZKWUUi", diff --git a/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json b/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json index fa72fea6..6681a8f2 100644 --- a/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json +++ b/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 89, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784313, - "modifiedTime": 1755259462879, + "modifiedTime": 1755385255652, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "mVV7a7KQAORoPMgZ", diff --git a/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json b/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json index f32a9894..2eade5d2 100644 --- a/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json +++ b/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json @@ -105,6 +105,11 @@ "img": "icons/skills/melee/blood-slash-foam-red.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 95, + "artist": "" } }, "flags": {}, @@ -114,9 +119,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784314, - "modifiedTime": 1755259462770, + "modifiedTime": 1755385515496, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XK78QUfY8c8Go8Uv", diff --git a/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json b/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json index ac8f7c34..3546a587 100644 --- a/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json +++ b/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json @@ -112,6 +112,11 @@ "img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 99, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784315, - "modifiedTime": 1755259462807, + "modifiedTime": 1755385703272, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "befIqd5IYKg6eUz2", diff --git a/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json b/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json index beedfcb5..ee33d4e6 100644 --- a/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json +++ b/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json @@ -106,6 +106,11 @@ "img": "icons/creatures/tentacles/tentacle-earth-green.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 99, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784319, - "modifiedTime": 1755259462626, + "modifiedTime": 1755385710032, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "A0SeeDzwjvqOsyof", diff --git a/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json b/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json index 2c6b7623..e19fb41d 100644 --- a/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json +++ b/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 99, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784320, - "modifiedTime": 1755259462889, + "modifiedTime": 1755385717112, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ms6nuOl3NFkhPj1k", diff --git a/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json b/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json index ac0380b5..94634439 100644 --- a/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json +++ b/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json @@ -99,6 +99,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 99, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784321, - "modifiedTime": 1755266968806, + "modifiedTime": 1755385729840, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "moJhHgKqTKPS2WYS", diff --git a/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json b/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json index c6a5393b..5509e2ff 100644 --- a/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json +++ b/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json @@ -115,6 +115,11 @@ "img": "icons/commodities/biological/hand-clawed-blue.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 83, + "artist": "" } }, "flags": {}, @@ -124,9 +129,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784322, - "modifiedTime": 1755259462653, + "modifiedTime": 1755384671972, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "EQTOAOUrkIvS2z88", diff --git a/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json b/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json index 2062fdb3..e428a33f 100644 --- a/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json +++ b/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 101, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784323, - "modifiedTime": 1755267137806, + "modifiedTime": 1755385787559, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CP6iRfHdyFWniTHY", diff --git a/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json b/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json index 673f9af5..0f7b07a2 100644 --- a/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json +++ b/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 80, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784324, - "modifiedTime": 1755263279700, + "modifiedTime": 1755384656265, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wycLpvebWdUqRhpP", diff --git a/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json b/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json index e485ffb5..343eed99 100644 --- a/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json +++ b/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json @@ -117,6 +117,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 81, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784325, - "modifiedTime": 1755263303289, + "modifiedTime": 1755384693018, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "OROJbjsqagVh7ECV", diff --git a/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json b/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json index 178883bf..7dde8489 100644 --- a/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json +++ b/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 81, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784326, - "modifiedTime": 1755263339105, + "modifiedTime": 1755384706485, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5YgEajn0wa4i85kC", diff --git a/src/packs/adversaries/adversary_Pirate_Tough_mhcVkVFrzIJ18FDm.json b/src/packs/adversaries/adversary_Pirate_Tough_mhcVkVFrzIJ18FDm.json index 8a3839f5..8858ffdb 100644 --- a/src/packs/adversaries/adversary_Pirate_Tough_mhcVkVFrzIJ18FDm.json +++ b/src/packs/adversaries/adversary_Pirate_Tough_mhcVkVFrzIJ18FDm.json @@ -145,7 +145,12 @@ } } }, - "motivesAndTactics": "Plunder, raid, smash, terrorize" + "motivesAndTactics": "Plunder, raid, smash, terrorize", + "attribution": { + "source": "Daggerheart SRD", + "page": 81, + "artist": "" + } }, "prototypeToken": { "name": "Pirate Tough", @@ -449,9 +454,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754089855172, - "modifiedTime": 1755259462883, + "modifiedTime": 1755384713113, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!actors!mhcVkVFrzIJ18FDm" diff --git a/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json b/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json index f8656c9d..55dccaa4 100644 --- a/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json +++ b/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 80, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784338, - "modifiedTime": 1755263361677, + "modifiedTime": 1755384643919, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9rVlbJVrDNn1x7PS", diff --git a/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json b/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json index 3f566841..4a168cac 100644 --- a/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json +++ b/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json @@ -99,6 +99,11 @@ "stress": { "max": 1 } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 83, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784339, - "modifiedTime": 1755263398665, + "modifiedTime": 1755384730622, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gP3fWTLzSFnpA8EJ", diff --git a/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json b/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json index 0632ca05..58e52937 100644 --- a/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json +++ b/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json @@ -117,6 +117,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 89, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784339, - "modifiedTime": 1755259462657, + "modifiedTime": 1755385265369, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "EtLJiTsilPPZvLUX", diff --git a/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json b/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json index 4791237c..ffba4d54 100644 --- a/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json +++ b/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json @@ -117,6 +117,11 @@ "img": "icons/weapons/staves/staff-ornate-purple.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 89, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784341, - "modifiedTime": 1755259462915, + "modifiedTime": 1755385272304, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "sLAccjvCWfeedbpI", diff --git a/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json b/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json index 7e92085f..50bfa399 100644 --- a/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json +++ b/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json @@ -99,6 +99,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 81, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784341, - "modifiedTime": 1755263436436, + "modifiedTime": 1755384775888, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "bgreCaQ6ap2DVpCr", diff --git a/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json b/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json index b2f19954..860b659b 100644 --- a/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json +++ b/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json @@ -106,6 +106,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 84, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784342, - "modifiedTime": 1755263464581, + "modifiedTime": 1755384838975, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2nXz4ilAY4xuhKLm", diff --git a/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json b/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json index 9f29fea3..d8437156 100644 --- a/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json +++ b/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 90, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784342, - "modifiedTime": 1755259462790, + "modifiedTime": 1755385288183, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YmVAkdNsyuXWTtYp", diff --git a/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json b/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json index 27592dd8..cfa42eac 100644 --- a/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json +++ b/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 90, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784344, - "modifiedTime": 1755265520298, + "modifiedTime": 1755385294725, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BK4jwyXSRx7IOQiO", diff --git a/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json b/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json index 29ab00ba..31693f85 100644 --- a/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json +++ b/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json @@ -106,6 +106,11 @@ "img": "icons/weapons/bows/shortbow-leather.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 81, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784345, - "modifiedTime": 1755259462590, + "modifiedTime": 1755384787440, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "7X5q7a6ueeHs5oA9", diff --git a/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json b/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json index 9fccfbd6..f444fb51 100644 --- a/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json +++ b/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json @@ -99,6 +99,11 @@ "stress": { "max": 1 } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 81, + "artist": "" } }, "flags": {}, @@ -108,9 +113,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784347, - "modifiedTime": 1755264328739, + "modifiedTime": 1755384795225, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "6l1a3Fazq8BoKIcc", diff --git a/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json b/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json index 4edf1b89..4696285a 100644 --- a/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json +++ b/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json @@ -106,6 +106,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 82, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784348, - "modifiedTime": 1755264339964, + "modifiedTime": 1755384814146, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Q9LaVTyXF9NF12C7", diff --git a/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json b/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json index 55ab1fb4..5d090b46 100644 --- a/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json +++ b/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json @@ -106,6 +106,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 82, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784350, - "modifiedTime": 1755264406791, + "modifiedTime": 1755384823045, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "10YIQl0lvCJXZLfX", diff --git a/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json b/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json index e556640f..9a0e8aaf 100644 --- a/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json +++ b/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json @@ -112,6 +112,11 @@ "range": "far", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 90, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784351, - "modifiedTime": 1755259462572, + "modifiedTime": 1755385301617, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5tCkhnBByUIN5UdG", diff --git a/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json b/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json index c1d3db63..bd13b3e1 100644 --- a/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json +++ b/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json @@ -112,6 +112,11 @@ "range": "far", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 90, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784352, - "modifiedTime": 1755259462575, + "modifiedTime": 1755385308553, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "65cSO3EQEh6ZH6Xk", diff --git a/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json b/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json index cd4dc479..84a4a49a 100644 --- a/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json +++ b/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json @@ -112,6 +112,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 90, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784353, - "modifiedTime": 1755259462734, + "modifiedTime": 1755385316790, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "UFVGl1osOsJTneLf", diff --git a/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json b/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json index da7fd6d6..80130503 100644 --- a/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json +++ b/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json @@ -113,6 +113,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 82, + "artist": "" } }, "flags": {}, @@ -122,9 +127,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784353, - "modifiedTime": 1755264447203, + "modifiedTime": 1755384873585, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ldbWEL7uZs84vyrR", diff --git a/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json b/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json index fd4244f3..9349713e 100644 --- a/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json +++ b/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 90, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784354, - "modifiedTime": 1755265655362, + "modifiedTime": 1755385323568, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8zlynOhnVA59KpKT", diff --git a/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json b/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json index 13dc9a27..f448bdf0 100644 --- a/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json +++ b/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 94, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784355, - "modifiedTime": 1755266627287, + "modifiedTime": 1755385501283, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "KGVwnLq85ywP9xvB", diff --git a/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json b/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json index 760e1c74..e60fe4cc 100644 --- a/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json +++ b/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json @@ -112,6 +112,11 @@ "range": "melee", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 91, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784355, - "modifiedTime": 1755265669682, + "modifiedTime": 1755385336971, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "3aAS2Qm3R6cgaYfE", diff --git a/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json b/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json index 0e9cfa6d..0a7697cc 100644 --- a/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json +++ b/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json @@ -106,6 +106,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 82, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784356, - "modifiedTime": 1755264462044, + "modifiedTime": 1755384883461, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "qNgs3AbLyJrY19nt", diff --git a/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json b/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json index 0c869376..dc35d8b9 100644 --- a/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json +++ b/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 82, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784356, - "modifiedTime": 1755264471444, + "modifiedTime": 1755384893528, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VtFBt9XBE0WrGGxP", diff --git a/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_PKSXFuaIHUCoH63A.json b/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_PKSXFuaIHUCoH63A.json index f1a00b34..1a8f1087 100644 --- a/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_PKSXFuaIHUCoH63A.json +++ b/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_PKSXFuaIHUCoH63A.json @@ -143,6 +143,11 @@ "difficulty": null, "damageMod": "none" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 82, + "artist": "" } }, "flags": {}, @@ -152,9 +157,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754054959791, - "modifiedTime": 1755259462711, + "modifiedTime": 1755384904068, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { diff --git a/src/packs/adversaries/adversary_Tangle_Bramble_XcAGOSmtCFLT1unN.json b/src/packs/adversaries/adversary_Tangle_Bramble_XcAGOSmtCFLT1unN.json index c61f84aa..6a5b19d5 100644 --- a/src/packs/adversaries/adversary_Tangle_Bramble_XcAGOSmtCFLT1unN.json +++ b/src/packs/adversaries/adversary_Tangle_Bramble_XcAGOSmtCFLT1unN.json @@ -139,6 +139,11 @@ "difficulty": null, "damageMod": "none" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 83, + "artist": "" } }, "flags": {}, @@ -148,9 +153,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754055125822, - "modifiedTime": 1755259462779, + "modifiedTime": 1755384916131, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { diff --git a/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json b/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json index be94d1bd..25247c81 100644 --- a/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json +++ b/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json @@ -102,6 +102,11 @@ "stress": { "max": 1 } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 80, + "artist": "" } }, "flags": {}, @@ -111,9 +116,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784359, - "modifiedTime": 1755264530216, + "modifiedTime": 1755384624947, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "aLkLFuVoKz2NLoBK", diff --git a/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json b/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json index 6c4849d4..07860ef4 100644 --- a/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json +++ b/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json @@ -102,6 +102,11 @@ "damageThresholds": { "major": 5, "severe": 5 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 80, + "artist": "" } }, "flags": {}, @@ -111,9 +116,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784359, - "modifiedTime": 1755264552312, + "modifiedTime": 1755384634569, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1fkLQXVtmILqfJ44", diff --git a/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json b/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json index a5c004b5..b081ca1f 100644 --- a/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json +++ b/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json @@ -98,6 +98,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 95, + "artist": "" } }, "flags": {}, @@ -107,9 +112,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784360, - "modifiedTime": 1755259462897, + "modifiedTime": 1755385523279, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "o63nS0k3wHu6EgKP", diff --git a/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json b/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json index 803934a6..5617570b 100644 --- a/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json +++ b/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 95, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784364, - "modifiedTime": 1755266648769, + "modifiedTime": 1755385538146, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WWyUp6Mxl1S3KYUG", diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json b/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json index 068ce832..5402a6cd 100644 --- a/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json +++ b/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 95, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784367, - "modifiedTime": 1755259462674, + "modifiedTime": 1755385547451, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JqYraOqNmmhHk4Yy", diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json b/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json index 992bb62e..34e698e5 100644 --- a/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json +++ b/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 96, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784368, - "modifiedTime": 1755259462659, + "modifiedTime": 1755385569020, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "FVgYb28fhxlVcGwA", diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json b/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json index 9de89cce..b16a2f85 100644 --- a/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json +++ b/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json @@ -106,6 +106,11 @@ "img": "icons/commodities/tech/metal-joint.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 96, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784368, - "modifiedTime": 1755259462816, + "modifiedTime": 1755385577282, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "c5hGdvY5UnSjlHws", diff --git a/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json b/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json index 51a4cd52..9b65ed36 100644 --- a/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json @@ -145,7 +145,12 @@ } } }, - "motivesAndTactics": "Choke, fly, intimidate, kill or be killed" + "motivesAndTactics": "Choke, fly, intimidate, kill or be killed", + "attribution": { + "source": "Daggerheart SRD", + "page": 101, + "artist": "" + } }, "prototypeToken": { "name": "Volcanic Dragon: Ashen Tyrant", @@ -901,9 +906,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753929252617, - "modifiedTime": 1755267105169, + "modifiedTime": 1755385779475, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!actors!pMuXGCSOQaxpi5tb" diff --git a/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json b/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json index 56e7a0e7..8ea0f54e 100644 --- a/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json @@ -145,7 +145,12 @@ } } }, - "motivesAndTactics": "Douse with lava, incinerate, repel Invaders, reposition" + "motivesAndTactics": "Douse with lava, incinerate, repel Invaders, reposition", + "attribution": { + "source": "Daggerheart SRD", + "page": 100, + "artist": "" + } }, "prototypeToken": { "name": "Volcanic Dragon: Molten Scourge", @@ -901,9 +906,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753929160832, - "modifiedTime": 1755259462833, + "modifiedTime": 1755385761296, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!actors!eArAPuB38CNR0ZIM" diff --git a/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json b/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json index b546dbc0..a87a8d62 100644 --- a/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json @@ -145,7 +145,12 @@ } } }, - "motivesAndTactics": "Defend lair, dive-bomb, fly, hunt, intimidate" + "motivesAndTactics": "Defend lair, dive-bomb, fly, hunt, intimidate", + "attribution": { + "source": "Daggerheart SRD", + "page": 100, + "artist": "" + } }, "prototypeToken": { "name": "Volcanic Dragon: Obsidian Predator", @@ -806,9 +811,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753929001531, - "modifiedTime": 1755259462866, + "modifiedTime": 1755385751958, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!actors!ladm7wykhZczYzrQ" diff --git a/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json b/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json index 714c273e..b77c51a9 100644 --- a/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json +++ b/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json @@ -117,6 +117,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 91, + "artist": "" } }, "flags": {}, @@ -126,9 +131,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784373, - "modifiedTime": 1755259462894, + "modifiedTime": 1755385343007, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "noDdT0tsN6FXSmC8", diff --git a/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json b/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json index fef30f1b..c35018ba 100644 --- a/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json +++ b/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json @@ -106,6 +106,11 @@ }, "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 83, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784373, - "modifiedTime": 1755259462796, + "modifiedTime": 1755384941263, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ZNbQ2jg35LG4t9eH", diff --git a/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json b/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json index 8c89cd72..3fa1cb51 100644 --- a/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json +++ b/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 83, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784374, - "modifiedTime": 1755264623824, + "modifiedTime": 1755384952240, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8yUj2Mzvnifhxegm", diff --git a/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json b/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json index 48b1cd14..b30f12c6 100644 --- a/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json +++ b/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json @@ -112,6 +112,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 96, + "artist": "" } }, "flags": {}, @@ -121,9 +126,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784374, - "modifiedTime": 1755266725295, + "modifiedTime": 1755385585250, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "UGPiPLJsPvMTSKEF", diff --git a/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json b/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json index ce880f7d..4d63e66a 100644 --- a/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json +++ b/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json @@ -106,6 +106,11 @@ "img": "icons/creatures/tentacles/tentacles-octopus-black-pink.webp", "type": "attack", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 101, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784375, - "modifiedTime": 1755259462784, + "modifiedTime": 1755385797660, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YhJrP7rTBiRdX5Fp", diff --git a/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json b/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json index 6f001b5c..a2f6c836 100644 --- a/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json +++ b/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json @@ -106,6 +106,11 @@ "type": "attack", "range": "melee", "chatDisplay": false + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 84, + "artist": "" } }, "flags": {}, @@ -115,9 +120,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753922784375, - "modifiedTime": 1755264639582, + "modifiedTime": 1755384852262, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Nf0v43rtflV56V2T", diff --git a/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json index fe060a41..9f71128c 100644 --- a/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json +++ b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.2xlqKOkDxWHbuj4t" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784381, - "modifiedTime": 1753993914940, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394032819, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ed8BoLR4SHOpeV00", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json index a3861a40..0f5657b4 100644 --- a/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json +++ b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.sRaE3CgkgjBF1UpV" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784382, - "modifiedTime": 1753994173339, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394105939, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VLeOEqkLS0RbF0tB", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json index 8bdd2113..706dc2ec 100644 --- a/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json +++ b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.0RN0baBxh95GT1cm" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784382, - "modifiedTime": 1753994478754, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394117175, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "pDt6fI6otv2E2odf", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json index 84792663..3db7bee2 100644 --- a/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json +++ b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.TfolXWFG2W2hx6sK" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784382, - "modifiedTime": 1753994623487, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394127340, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "q2l6g3Ssa04K84GO", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json index 250444de..93b277e6 100644 --- a/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json +++ b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.WquAjoOcso8lwySW" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784383, - "modifiedTime": 1753994865178, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394136677, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XzJVbb5NT9k79ykR", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json index 628f4a6a..5dc04976 100644 --- a/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json +++ b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.gpW19TfJk0WWFh1S" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784383, - "modifiedTime": 1753995403631, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394142374, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HaYhe6WqoXW5EbRl", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json index 07cc9996..2de5ee24 100644 --- a/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json +++ b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.G5pE8FW94V1W9jJx" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784384, - "modifiedTime": 1753995720164, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394148626, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "hzKmydI8sR3uk4CO", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json index 06146d9c..aa30fc5b 100644 --- a/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json +++ b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.WuwXH2r2uM9sDJtj" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784385, - "modifiedTime": 1753996282858, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394159775, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "J1hX7nBBc5jQiHli", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json index 5d6ca0ae..2817ecf3 100644 --- a/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json +++ b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.UFR67BUOhNGLFyg9" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784385, - "modifiedTime": 1753996656622, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394165825, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "eZNG5Iv0yfbHs5CO", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json index 02b3fa63..d7b6bda0 100644 --- a/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json +++ b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.WRs2jvwM0STmkWIW" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784386, - "modifiedTime": 1753996849286, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394174325, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "3U8CncG92a7ERIJ0", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json index 0e1fb16e..a7f92b00 100644 --- a/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json +++ b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.AXqcoxnRoWBbbKpK" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784386, - "modifiedTime": 1753997126174, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394180109, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "EKPEdIz9lA9grPqH", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json index ea37196d..32b640b5 100644 --- a/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json +++ b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.e2Cu6exxtvfQzc1e" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784387, - "modifiedTime": 1753997257661, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394186643, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CtL2jDjvPOJxNJKm", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json index 58310832..5ef479b6 100644 --- a/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json +++ b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.BNofV1UC4ZbdFTkb" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784388, - "modifiedTime": 1753997481487, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394199176, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wtJ5V5qRppLQn61n", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json index 67e95734..823aedf8 100644 --- a/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json +++ b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.i92lYjDhVB0LyPid" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784388, - "modifiedTime": 1754000194006, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394204627, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "hyxcuF2I0xcZSGkm", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json index f3997143..25819b34 100644 --- a/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json +++ b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.Zj69cAeb3NjIa8Hn" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784388, - "modifiedTime": 1754000474970, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394210762, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "yyW0UM8srD9WuwW7", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json index 0075cf94..dbbfe21b 100644 --- a/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json +++ b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.YhxD1ujZpftPu19w" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784389, - "modifiedTime": 1754000737849, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394218178, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "D1RbUsRV9HpTrPuF", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json index 5624ba77..677852f7 100644 --- a/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json +++ b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.oWbdlh51ajn1Q5kL" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 31, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784389, - "modifiedTime": 1754000881040, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394245530, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HwOoBKXOL9Tf5j85", "sort": 3400000, diff --git a/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json index d09abcdd..647ddf20 100644 --- a/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json +++ b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json @@ -14,19 +14,24 @@ "type": "secondary", "item": "Compendium.daggerheart.ancestries.Item.3lNqft3LmOlEIEkw" } - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 31, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784390, - "modifiedTime": 1754001185010, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394237166, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2yMLxxn7CHEvmShj", "sort": 3400000, diff --git a/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json b/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json index 74d0396e..854e377c 100644 --- a/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json +++ b/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753997402776, - "modifiedTime": 1753997472141, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394506059, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BNofV1UC4ZbdFTkb" } diff --git a/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json b/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json index fbc8de74..f1e07a4a 100644 --- a/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json +++ b/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 31, + "artist": "" + } }, "effects": [], "sort": 0, @@ -23,12 +28,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754000764274, - "modifiedTime": 1754000778312, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394576564, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GVhmLouGq9GWCsN8" } diff --git a/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json b/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json index db455164..98a9ee47 100644 --- a/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json +++ b/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [], "sort": 0, @@ -23,12 +28,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753995211408, - "modifiedTime": 1753995232467, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394383202, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nLL2zuDDDbbyxlrQ" } diff --git a/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json b/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json index e9a240ef..1e6323cd 100644 --- a/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json +++ b/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [ { @@ -81,12 +86,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753994570602, - "modifiedTime": 1753994583518, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394338351, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TfolXWFG2W2hx6sK" } diff --git a/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json b/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json index 319086a4..291785f2 100644 --- a/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json +++ b/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json @@ -72,7 +72,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [], "sort": 0, @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753995559143, - "modifiedTime": 1753995629206, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394400787, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!AA2CZlJSWW8GPhrR" } diff --git a/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json b/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json index e8152918..595a2a6b 100644 --- a/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json +++ b/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753997061290, - "modifiedTime": 1754498245294, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394466678, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!AXqcoxnRoWBbbKpK" } diff --git a/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json b/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json index cc2ba641..3fffc763 100644 --- a/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json +++ b/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753996213198, - "modifiedTime": 1753996272048, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394413905, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WuwXH2r2uM9sDJtj" } diff --git a/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json b/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json index 23adb822..d9b8b729 100644 --- a/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json +++ b/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [ { @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753999985847, - "modifiedTime": 1754000026405, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394529510, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!i92lYjDhVB0LyPid" } diff --git a/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json b/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json index 5d946a88..83ed4b1f 100644 --- a/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json +++ b/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "effects": [ { @@ -81,12 +86,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753993806761, - "modifiedTime": 1753993849345, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394264580, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2xlqKOkDxWHbuj4t" } diff --git a/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json b/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json index ccd0f87e..cb77a1bf 100644 --- a/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json +++ b/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json @@ -82,7 +82,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "effects": [], "sort": 0, @@ -95,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753994055921, - "modifiedTime": 1753994120065, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394293348, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!sRaE3CgkgjBF1UpV" } diff --git a/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json b/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json index 1624957e..6766717a 100644 --- a/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json +++ b/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [ { @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753996738047, - "modifiedTime": 1753996763700, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394456808, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tXWEMdLXafUSZTbK" } diff --git a/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json b/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json index bb8d790c..13cf7f84 100644 --- a/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json +++ b/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753999842518, - "modifiedTime": 1753999969945, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394522944, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IlWvn5kCqCBMuUJn" } diff --git a/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json b/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json index c0547372..09d5dbbe 100644 --- a/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json +++ b/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754000245487, - "modifiedTime": 1754000291789, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394539445, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!lNgbbYnCKgrdvA85" } diff --git a/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json b/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json index 60a74cf4..92dcd32f 100644 --- a/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json +++ b/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json @@ -57,7 +57,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [], "sort": 0, @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753996087513, - "modifiedTime": 1753996189704, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394420289, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9tmeXm623hl4Qnws" } diff --git a/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json b/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json index 81fd4b84..eeae4dd4 100644 --- a/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json +++ b/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [ { @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753997324366, - "modifiedTime": 1753997344417, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394512693, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HMXNJZ7ynzajR2KT" } diff --git a/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json b/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json index 34de2d91..8ecbfb61 100644 --- a/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json +++ b/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753994395837, - "modifiedTime": 1753994468110, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394316666, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0RN0baBxh95GT1cm" } diff --git a/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json b/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json index 00645109..0ebd51ff 100644 --- a/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json +++ b/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [], "sort": 0, @@ -23,12 +28,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753997233606, - "modifiedTime": 1753997248375, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394489091, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!e2Cu6exxtvfQzc1e" } diff --git a/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json b/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json index f9233e32..6f43dad7 100644 --- a/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json +++ b/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json @@ -63,7 +63,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [], "sort": 0, @@ -76,12 +81,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753995249173, - "modifiedTime": 1753995396728, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394376321, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!gpW19TfJk0WWFh1S" } diff --git a/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json b/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json index 4c8cfc30..d474f7ca 100644 --- a/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json +++ b/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json @@ -90,7 +90,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 31, + "artist": "" + } }, "effects": [], "sort": 0, @@ -103,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754000791839, - "modifiedTime": 1754000854253, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394583397, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oWbdlh51ajn1Q5kL" } diff --git a/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json b/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json index 51b33024..6059aa88 100644 --- a/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json +++ b/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753994658436, - "modifiedTime": 1754498186961, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394357635, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!U6iFjZgLYawlOlQZ" } diff --git a/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json b/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json index 01de5030..474c5907 100644 --- a/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json +++ b/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json @@ -78,7 +78,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [], "sort": 0, @@ -91,12 +96,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753997164653, - "modifiedTime": 1753997217376, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394482641, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8O6SQQMxKWr430QA" } diff --git a/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json b/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json index 9f36411f..cfe8f9d4 100644 --- a/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json +++ b/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 31, + "artist": "" + } }, "effects": [ { @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754001064223, - "modifiedTime": 1754001078029, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394600697, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!soQvPL0MrTLLcc31" } diff --git a/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json b/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json index d3539a9f..cd759ff4 100644 --- a/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json +++ b/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 31, + "artist": "" + } }, "effects": [ { @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754001125989, - "modifiedTime": 1754001147782, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394608816, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3lNqft3LmOlEIEkw" } diff --git a/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json b/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json index d805e240..5a541979 100644 --- a/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json +++ b/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "effects": [], "sort": 0, @@ -23,12 +28,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753993755899, - "modifiedTime": 1753993791943, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394275281, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!g6I4tRUQNgL4vZ6H" } diff --git a/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json b/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json index 87c6ec96..522faf75 100644 --- a/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json +++ b/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753994522468, - "modifiedTime": 1753994554455, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394348185, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0NSPSuB8KSEYTJIP" } diff --git a/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json b/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json index b6c974d0..deac5491 100644 --- a/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json +++ b/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [], "sort": 0, @@ -23,12 +28,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753996802591, - "modifiedTime": 1753996830453, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394448890, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WRs2jvwM0STmkWIW" } diff --git a/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json b/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json index 356f9283..59e33ce4 100644 --- a/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json +++ b/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json @@ -33,7 +33,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [ { @@ -104,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753996513763, - "modifiedTime": 1753996553192, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394440308, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!UFR67BUOhNGLFyg9" } diff --git a/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json b/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json index 01e909bb..1987971a 100644 --- a/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json +++ b/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json @@ -62,7 +62,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [ { @@ -122,12 +127,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754000306620, - "modifiedTime": 1754000434953, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394546895, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Zj69cAeb3NjIa8Hn" } diff --git a/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json b/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json index 3b23d6b7..d4a61a00 100644 --- a/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json +++ b/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "effects": [ { @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753993962796, - "modifiedTime": 1753993988373, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394286965, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!u8ZhV962rNmUlzkp" } diff --git a/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json b/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json index 65352d25..06c73c40 100644 --- a/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json +++ b/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [ { @@ -81,12 +86,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753996421284, - "modifiedTime": 1753996433164, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394431506, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!A6a87OWA3tx16g9V" } diff --git a/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json b/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json index 61ff446d..fac77407 100644 --- a/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json +++ b/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [], "sort": 0, @@ -23,12 +28,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754000559764, - "modifiedTime": 1754000590019, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394566830, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!60o3cKUZzxO9EDQF" } diff --git a/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json b/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json index cc0fd804..a11247db 100644 --- a/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json +++ b/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 29, + "artist": "" + } }, "effects": [], "sort": 0, @@ -23,12 +28,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753997026520, - "modifiedTime": 1753997047297, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394473491, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YsJticxv8OFndd4D" } diff --git a/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json b/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json index 6b8aa900..b2716a1c 100644 --- a/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json +++ b/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 27, + "artist": "" + } }, "effects": [ { @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753994247261, - "modifiedTime": 1753994338239, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394307516, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!S0Ww7pYOSREt8qKg" } diff --git a/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json b/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json index 4078ca03..746be465 100644 --- a/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json +++ b/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 30, + "artist": "" + } }, "effects": [ { @@ -112,12 +117,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754000611682, - "modifiedTime": 1754000658375, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394557399, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YhxD1ujZpftPu19w" } diff --git a/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json b/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json index 5d534a67..aa256f5b 100644 --- a/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json +++ b/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json @@ -57,7 +57,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [], "sort": 0, @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753995651913, - "modifiedTime": 1753995700360, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394394521, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!G5pE8FW94V1W9jJx" } diff --git a/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json b/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json index 56ffaacc..7bc73dc6 100644 --- a/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json +++ b/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 28, + "artist": "" + } }, "effects": [ { @@ -106,12 +111,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753994723305, - "modifiedTime": 1753994805028, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394368487, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WquAjoOcso8lwySW" } diff --git a/src/packs/beastforms/beastform_Agile_Scout_a9UoCwtrbgKk02mK.json b/src/packs/beastforms/beastform_Agile_Scout_a9UoCwtrbgKk02mK.json index 9ce4cea5..43c4d556 100644 --- a/src/packs/beastforms/beastform_Agile_Scout_a9UoCwtrbgKk02mK.json +++ b/src/packs/beastforms/beastform_Agile_Scout_a9UoCwtrbgKk02mK.json @@ -36,7 +36,12 @@ "advantages": 2, "features": 2 }, - "examples": "Fox, Mouse, Weasel, etc." + "examples": "Fox, Mouse, Weasel, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [ { @@ -120,12 +125,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753570913893, - "modifiedTime": 1753575463479, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395235599, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "a9UoCwtrbgKk02mK", "sort": 500000, diff --git a/src/packs/beastforms/beastform_Aquatic_Predator_ItBVeCl2u5uetgy7.json b/src/packs/beastforms/beastform_Aquatic_Predator_ItBVeCl2u5uetgy7.json index 75c747ab..6b418b31 100644 --- a/src/packs/beastforms/beastform_Aquatic_Predator_ItBVeCl2u5uetgy7.json +++ b/src/packs/beastforms/beastform_Aquatic_Predator_ItBVeCl2u5uetgy7.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Dolphin, Orca, Shark, etc." + "examples": "Dolphin, Orca, Shark, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626985883, - "modifiedTime": 1753626995174, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395436609, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ItBVeCl2u5uetgy7", "sort": 0, diff --git a/src/packs/beastforms/beastform_Aquatic_Scout_qqzdFCxyYupWZK23.json b/src/packs/beastforms/beastform_Aquatic_Scout_qqzdFCxyYupWZK23.json index 4b5c792c..63f041d5 100644 --- a/src/packs/beastforms/beastform_Aquatic_Scout_qqzdFCxyYupWZK23.json +++ b/src/packs/beastforms/beastform_Aquatic_Scout_qqzdFCxyYupWZK23.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Eel, Fish, Octopus, etc." + "examples": "Eel, Fish, Octopus, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [ { @@ -119,12 +124,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753575463467, - "modifiedTime": 1753575469111, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395249086, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "qqzdFCxyYupWZK23", "sort": 200000, diff --git a/src/packs/beastforms/beastform_Armored_Sentry_8pUHJv3BYdjA4Qdf.json b/src/packs/beastforms/beastform_Armored_Sentry_8pUHJv3BYdjA4Qdf.json index 553fa9e9..0d2d7c4d 100644 --- a/src/packs/beastforms/beastform_Armored_Sentry_8pUHJv3BYdjA4Qdf.json +++ b/src/packs/beastforms/beastform_Armored_Sentry_8pUHJv3BYdjA4Qdf.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Armadillo, Pangolin, Turtle, etc." + "examples": "Armadillo, Pangolin, Turtle, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753580987168, - "modifiedTime": 1753617739186, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395295538, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8pUHJv3BYdjA4Qdf", "sort": 100000, diff --git a/src/packs/beastforms/beastform_Epic_Aquatic_Beast_wT4xbF99I55yjKZV.json b/src/packs/beastforms/beastform_Epic_Aquatic_Beast_wT4xbF99I55yjKZV.json index 895a3467..2666e555 100644 --- a/src/packs/beastforms/beastform_Epic_Aquatic_Beast_wT4xbF99I55yjKZV.json +++ b/src/packs/beastforms/beastform_Epic_Aquatic_Beast_wT4xbF99I55yjKZV.json @@ -38,7 +38,12 @@ "advantages": 2, "features": 2 }, - "examples": "Giant Squid, Whale, etc." + "examples": "Giant Squid, Whale, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [ { @@ -128,12 +133,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628697986, - "modifiedTime": 1753628714911, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395495481, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wT4xbF99I55yjKZV", "sort": 0, diff --git a/src/packs/beastforms/beastform_Great_Predator_afbMt4Ld6nY3mw0N.json b/src/packs/beastforms/beastform_Great_Predator_afbMt4Ld6nY3mw0N.json index e794abf2..e526cb8e 100644 --- a/src/packs/beastforms/beastform_Great_Predator_afbMt4Ld6nY3mw0N.json +++ b/src/packs/beastforms/beastform_Great_Predator_afbMt4Ld6nY3mw0N.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Dire Wolf, Velociraptor, Sabertooth Tiger, etc." + "examples": "Dire Wolf, Velociraptor, Sabertooth Tiger, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625648103, - "modifiedTime": 1753626865950, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395413225, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "afbMt4Ld6nY3mw0N", "sort": 100000, diff --git a/src/packs/beastforms/beastform_Great_Winged_Beast_b4BMnTbJ3iPPidSb.json b/src/packs/beastforms/beastform_Great_Winged_Beast_b4BMnTbJ3iPPidSb.json index 15eed972..a7a78a5d 100644 --- a/src/packs/beastforms/beastform_Great_Winged_Beast_b4BMnTbJ3iPPidSb.json +++ b/src/packs/beastforms/beastform_Great_Winged_Beast_b4BMnTbJ3iPPidSb.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Giant Eagle, Falcon, etc." + "examples": "Giant Eagle, Falcon, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626865938, - "modifiedTime": 1753626874515, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395430043, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "b4BMnTbJ3iPPidSb", "sort": 200000, diff --git a/src/packs/beastforms/beastform_Household_Friend_iDmOtiHJJ80AIAVT.json b/src/packs/beastforms/beastform_Household_Friend_iDmOtiHJJ80AIAVT.json index 57a1ecdf..7cf786f1 100644 --- a/src/packs/beastforms/beastform_Household_Friend_iDmOtiHJJ80AIAVT.json +++ b/src/packs/beastforms/beastform_Household_Friend_iDmOtiHJJ80AIAVT.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Cat, Dog, Rabbit, etc." + "examples": "Cat, Dog, Rabbit, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [ { @@ -119,12 +124,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753573035973, - "modifiedTime": 1753575463479, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395259885, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "iDmOtiHJJ80AIAVT", "sort": 100000, diff --git a/src/packs/beastforms/beastform_Legendary_Beast_mqP6z4Wg4K3oDAom.json b/src/packs/beastforms/beastform_Legendary_Beast_mqP6z4Wg4K3oDAom.json index a73b31d2..6bbfee9e 100644 --- a/src/packs/beastforms/beastform_Legendary_Beast_mqP6z4Wg4K3oDAom.json +++ b/src/packs/beastforms/beastform_Legendary_Beast_mqP6z4Wg4K3oDAom.json @@ -23,7 +23,12 @@ "advantages": 2, "features": 2 }, - "examples": "" + "examples": "", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -95,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753627165434, - "modifiedTime": 1753627165434, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395443346, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "mqP6z4Wg4K3oDAom", "sort": 0, diff --git a/src/packs/beastforms/beastform_Legendary_Hybrid_rRUtgcUjimlpPhnn.json b/src/packs/beastforms/beastform_Legendary_Hybrid_rRUtgcUjimlpPhnn.json index aff94138..99ca7aa0 100644 --- a/src/packs/beastforms/beastform_Legendary_Hybrid_rRUtgcUjimlpPhnn.json +++ b/src/packs/beastforms/beastform_Legendary_Hybrid_rRUtgcUjimlpPhnn.json @@ -23,7 +23,12 @@ "features": 2, "maximumTier": 2 }, - "examples": "" + "examples": "", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -113,12 +118,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753627303526, - "modifiedTime": 1753627303526, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395450377, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rRUtgcUjimlpPhnn", "sort": 0, diff --git a/src/packs/beastforms/beastform_Massive_Behemoth_qjwMzPn33aKZACkv.json b/src/packs/beastforms/beastform_Massive_Behemoth_qjwMzPn33aKZACkv.json index 470cfffe..3022d310 100644 --- a/src/packs/beastforms/beastform_Massive_Behemoth_qjwMzPn33aKZACkv.json +++ b/src/packs/beastforms/beastform_Massive_Behemoth_qjwMzPn33aKZACkv.json @@ -39,7 +39,12 @@ "advantages": 2, "features": 2 }, - "examples": "Elephant, Mammoth, Rhinoceros, etc." + "examples": "Elephant, Mammoth, Rhinoceros, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -129,12 +134,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753627711166, - "modifiedTime": 1753631381561, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395470445, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "qjwMzPn33aKZACkv", "sort": 100000, diff --git a/src/packs/beastforms/beastform_Mighty_Lizard_94tvcC3D5Kp4lzuN.json b/src/packs/beastforms/beastform_Mighty_Lizard_94tvcC3D5Kp4lzuN.json index 374fc301..63bfaa08 100644 --- a/src/packs/beastforms/beastform_Mighty_Lizard_94tvcC3D5Kp4lzuN.json +++ b/src/packs/beastforms/beastform_Mighty_Lizard_94tvcC3D5Kp4lzuN.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Alligator, Crocodile, Gila Monster, etc." + "examples": "Alligator, Crocodile, Gila Monster, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626720443, - "modifiedTime": 1753626865950, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395421310, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "94tvcC3D5Kp4lzuN", "sort": 300000, diff --git a/src/packs/beastforms/beastform_Mighty_Strider_zRLjqKx4Rn2TjivL.json b/src/packs/beastforms/beastform_Mighty_Strider_zRLjqKx4Rn2TjivL.json index e44e01e9..bc46ad18 100644 --- a/src/packs/beastforms/beastform_Mighty_Strider_zRLjqKx4Rn2TjivL.json +++ b/src/packs/beastforms/beastform_Mighty_Strider_zRLjqKx4Rn2TjivL.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Camel, Horse, Zebra, etc." + "examples": "Camel, Horse, Zebra, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753617739175, - "modifiedTime": 1753617745460, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395313904, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "zRLjqKx4Rn2TjivL", "sort": 200000, diff --git a/src/packs/beastforms/beastform_Mythic_Aerial_Hunter_jV6EuEacyQlHW4SN.json b/src/packs/beastforms/beastform_Mythic_Aerial_Hunter_jV6EuEacyQlHW4SN.json index fbd60195..87dabf23 100644 --- a/src/packs/beastforms/beastform_Mythic_Aerial_Hunter_jV6EuEacyQlHW4SN.json +++ b/src/packs/beastforms/beastform_Mythic_Aerial_Hunter_jV6EuEacyQlHW4SN.json @@ -38,7 +38,12 @@ "advantages": 2, "features": 2 }, - "examples": "Dragon, Pterodactyl, Roc, Wyvern, etc." + "examples": "Dragon, Pterodactyl, Roc, Wyvern, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [ { @@ -128,12 +133,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628382723, - "modifiedTime": 1753628401450, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395486698, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jV6EuEacyQlHW4SN", "sort": 200000, diff --git a/src/packs/beastforms/beastform_Mythic_Beast_kObobka52JdpWBSu.json b/src/packs/beastforms/beastform_Mythic_Beast_kObobka52JdpWBSu.json index d7d407a6..0032c72c 100644 --- a/src/packs/beastforms/beastform_Mythic_Beast_kObobka52JdpWBSu.json +++ b/src/packs/beastforms/beastform_Mythic_Beast_kObobka52JdpWBSu.json @@ -23,7 +23,12 @@ "advantages": 2, "features": 2 }, - "examples": "" + "examples": "", + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [ { @@ -101,12 +106,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628844905, - "modifiedTime": 1753628844905, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395505081, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kObobka52JdpWBSu", "sort": 0, diff --git a/src/packs/beastforms/beastform_Mythic_Hybrid_WAbxCf2An8qmxyJ1.json b/src/packs/beastforms/beastform_Mythic_Hybrid_WAbxCf2An8qmxyJ1.json index c0be75db..21e2a834 100644 --- a/src/packs/beastforms/beastform_Mythic_Hybrid_WAbxCf2An8qmxyJ1.json +++ b/src/packs/beastforms/beastform_Mythic_Hybrid_WAbxCf2An8qmxyJ1.json @@ -23,7 +23,12 @@ "features": 3, "maximumTier": 3 }, - "examples": "" + "examples": "", + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [ { @@ -113,12 +118,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628965658, - "modifiedTime": 1753628965658, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395511998, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WAbxCf2An8qmxyJ1", "sort": 0, diff --git a/src/packs/beastforms/beastform_Nimble_Grazer_CItO8yX6amQaqyk7.json b/src/packs/beastforms/beastform_Nimble_Grazer_CItO8yX6amQaqyk7.json index 926b8739..232721d8 100644 --- a/src/packs/beastforms/beastform_Nimble_Grazer_CItO8yX6amQaqyk7.json +++ b/src/packs/beastforms/beastform_Nimble_Grazer_CItO8yX6amQaqyk7.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Deer, Gazelle, Goat, etc." + "examples": "Deer, Gazelle, Goat, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [ { @@ -119,12 +124,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753574930310, - "modifiedTime": 1753575463479, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395265901, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CItO8yX6amQaqyk7", "sort": 300000, diff --git a/src/packs/beastforms/beastform_Pack_Predator_YLisKYYhAGca50WM.json b/src/packs/beastforms/beastform_Pack_Predator_YLisKYYhAGca50WM.json index 38150adb..664b6c83 100644 --- a/src/packs/beastforms/beastform_Pack_Predator_YLisKYYhAGca50WM.json +++ b/src/packs/beastforms/beastform_Pack_Predator_YLisKYYhAGca50WM.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Coyote, Hyena, Wolf, etc." + "examples": "Coyote, Hyena, Wolf, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753575274807, - "modifiedTime": 1753575463479, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395272135, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YLisKYYhAGca50WM", "sort": 400000, diff --git a/src/packs/beastforms/beastform_Pouncing_Predator_33oFSZ1PwFqInHPe.json b/src/packs/beastforms/beastform_Pouncing_Predator_33oFSZ1PwFqInHPe.json index 9073bb23..fe261bf7 100644 --- a/src/packs/beastforms/beastform_Pouncing_Predator_33oFSZ1PwFqInHPe.json +++ b/src/packs/beastforms/beastform_Pouncing_Predator_33oFSZ1PwFqInHPe.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Cheetah, Lion, Panther, etc." + "examples": "Cheetah, Lion, Panther, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753621789186, - "modifiedTime": 1753621803375, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395328437, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "33oFSZ1PwFqInHPe", "sort": 0, diff --git a/src/packs/beastforms/beastform_Powerful_Beast_m8BVTuJI1wCvzTcf.json b/src/packs/beastforms/beastform_Powerful_Beast_m8BVTuJI1wCvzTcf.json index 17d55206..082710f4 100644 --- a/src/packs/beastforms/beastform_Powerful_Beast_m8BVTuJI1wCvzTcf.json +++ b/src/packs/beastforms/beastform_Powerful_Beast_m8BVTuJI1wCvzTcf.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Bear, Bull, Moose, etc." + "examples": "Bear, Bull, Moose, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753582598510, - "modifiedTime": 1753617739186, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395305302, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "m8BVTuJI1wCvzTcf", "sort": 300000, diff --git a/src/packs/beastforms/beastform_Stalking_Arachnid_A4TVRY0D5r9EiVwA.json b/src/packs/beastforms/beastform_Stalking_Arachnid_A4TVRY0D5r9EiVwA.json index 98a949ff..6416e019 100644 --- a/src/packs/beastforms/beastform_Stalking_Arachnid_A4TVRY0D5r9EiVwA.json +++ b/src/packs/beastforms/beastform_Stalking_Arachnid_A4TVRY0D5r9EiVwA.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Tarantula, Wolf Spider, etc." + "examples": "Tarantula, Wolf Spider, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753576016472, - "modifiedTime": 1753576046773, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395283720, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "A4TVRY0D5r9EiVwA", "sort": 0, diff --git a/src/packs/beastforms/beastform_Striking_Serpent_1XrZWGDttBAAUxR1.json b/src/packs/beastforms/beastform_Striking_Serpent_1XrZWGDttBAAUxR1.json index 3f4a5dbb..5efb5d71 100644 --- a/src/packs/beastforms/beastform_Striking_Serpent_1XrZWGDttBAAUxR1.json +++ b/src/packs/beastforms/beastform_Striking_Serpent_1XrZWGDttBAAUxR1.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Cobra, Rattlesnake, Viper, etc." + "examples": "Cobra, Rattlesnake, Viper, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753621251793, - "modifiedTime": 1753621266619, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395321271, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1XrZWGDttBAAUxR1", "sort": 0, diff --git a/src/packs/beastforms/beastform_Terrible_Lizard_5BABxRe2XVrYTj8N.json b/src/packs/beastforms/beastform_Terrible_Lizard_5BABxRe2XVrYTj8N.json index 0614d763..a0025f36 100644 --- a/src/packs/beastforms/beastform_Terrible_Lizard_5BABxRe2XVrYTj8N.json +++ b/src/packs/beastforms/beastform_Terrible_Lizard_5BABxRe2XVrYTj8N.json @@ -38,7 +38,12 @@ "advantages": 2, "features": 2 }, - "examples": "Brachiosaurus, Tyrannosaurus, etc." + "examples": "Brachiosaurus, Tyrannosaurus, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -128,12 +133,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628213224, - "modifiedTime": 1753628382733, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395476212, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5BABxRe2XVrYTj8N", "sort": 300000, diff --git a/src/packs/beastforms/beastform_Winged_Beast_mZ4Wlqtss2FlNNvL.json b/src/packs/beastforms/beastform_Winged_Beast_mZ4Wlqtss2FlNNvL.json index 352b7124..207e0334 100644 --- a/src/packs/beastforms/beastform_Winged_Beast_mZ4Wlqtss2FlNNvL.json +++ b/src/packs/beastforms/beastform_Winged_Beast_mZ4Wlqtss2FlNNvL.json @@ -35,7 +35,12 @@ "advantages": 2, "features": 2 }, - "examples": "Hawk, Owl, Raven, etc." + "examples": "Hawk, Owl, Raven, etc.", + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753624952844, - "modifiedTime": 1753624972889, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395334887, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "mZ4Wlqtss2FlNNvL", "sort": 0, diff --git a/src/packs/beastforms/feature_Agile_xLS5YT1B6yeCiNTg.json b/src/packs/beastforms/feature_Agile_xLS5YT1B6yeCiNTg.json index d36699a4..4c54bebb 100644 --- a/src/packs/beastforms/feature_Agile_xLS5YT1B6yeCiNTg.json +++ b/src/packs/beastforms/feature_Agile_xLS5YT1B6yeCiNTg.json @@ -39,7 +39,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753569752255, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395530698, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xLS5YT1B6yeCiNTg", "sort": 2700000, diff --git a/src/packs/beastforms/feature_Aquatic_kQWWx9P3fCyGSVOI.json b/src/packs/beastforms/feature_Aquatic_kQWWx9P3fCyGSVOI.json index fc8862c7..47bf2c20 100644 --- a/src/packs/beastforms/feature_Aquatic_kQWWx9P3fCyGSVOI.json +++ b/src/packs/beastforms/feature_Aquatic_kQWWx9P3fCyGSVOI.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -21,12 +26,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753575456927, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395593318, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kQWWx9P3fCyGSVOI", "sort": 2100000, diff --git a/src/packs/beastforms/feature_Armored_Shell_nDQZdIF2epKlhauX.json b/src/packs/beastforms/feature_Armored_Shell_nDQZdIF2epKlhauX.json index 5ff9b259..b4d711a5 100644 --- a/src/packs/beastforms/feature_Armored_Shell_nDQZdIF2epKlhauX.json +++ b/src/packs/beastforms/feature_Armored_Shell_nDQZdIF2epKlhauX.json @@ -44,7 +44,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -142,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753580983699, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395623887, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "nDQZdIF2epKlhauX", "sort": 2200000, diff --git a/src/packs/beastforms/feature_Bird_s_Eye_View_FNKQlWQcArSorMPK.json b/src/packs/beastforms/feature_Bird_s_Eye_View_FNKQlWQcArSorMPK.json index 83fdfab1..53fe0c0b 100644 --- a/src/packs/beastforms/feature_Bird_s_Eye_View_FNKQlWQcArSorMPK.json +++ b/src/packs/beastforms/feature_Bird_s_Eye_View_FNKQlWQcArSorMPK.json @@ -31,7 +31,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753624947561, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395710291, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "FNKQlWQcArSorMPK", "sort": 1400000, diff --git a/src/packs/beastforms/feature_Cannonball_jp5KpPRBFBOIs46Q.json b/src/packs/beastforms/feature_Cannonball_jp5KpPRBFBOIs46Q.json index 7b714c75..49f5f88d 100644 --- a/src/packs/beastforms/feature_Cannonball_jp5KpPRBFBOIs46Q.json +++ b/src/packs/beastforms/feature_Cannonball_jp5KpPRBFBOIs46Q.json @@ -61,7 +61,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753580984811, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395630937, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jp5KpPRBFBOIs46Q", "sort": 1900000, diff --git a/src/packs/beastforms/feature_Carrier_EVOJTskJYf4rpuga.json b/src/packs/beastforms/feature_Carrier_EVOJTskJYf4rpuga.json index 4a0dcae2..30c82923 100644 --- a/src/packs/beastforms/feature_Carrier_EVOJTskJYf4rpuga.json +++ b/src/packs/beastforms/feature_Carrier_EVOJTskJYf4rpuga.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -21,12 +26,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753617736331, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395659457, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "EVOJTskJYf4rpuga", "sort": 900000, diff --git a/src/packs/beastforms/feature_Companion_jhWSC5bNZyYUAA5Q.json b/src/packs/beastforms/feature_Companion_jhWSC5bNZyYUAA5Q.json index b54e4a05..2a5504fe 100644 --- a/src/packs/beastforms/feature_Companion_jhWSC5bNZyYUAA5Q.json +++ b/src/packs/beastforms/feature_Companion_jhWSC5bNZyYUAA5Q.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -21,12 +26,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753572888764, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395556952, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jhWSC5bNZyYUAA5Q", "sort": 2600000, diff --git a/src/packs/beastforms/feature_Deadly_Raptor_QQtQ77tos8ijTHag.json b/src/packs/beastforms/feature_Deadly_Raptor_QQtQ77tos8ijTHag.json index d21facf5..e44e8fb5 100644 --- a/src/packs/beastforms/feature_Deadly_Raptor_QQtQ77tos8ijTHag.json +++ b/src/packs/beastforms/feature_Deadly_Raptor_QQtQ77tos8ijTHag.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -21,12 +26,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628380597, - "modifiedTime": 1753628380597, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395796630, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QQtQ77tos8ijTHag", "sort": 0, diff --git a/src/packs/beastforms/feature_Demolish_DfBXO8jTchwFG8dZ.json b/src/packs/beastforms/feature_Demolish_DfBXO8jTchwFG8dZ.json index 4e683d9a..45ceee81 100644 --- a/src/packs/beastforms/feature_Demolish_DfBXO8jTchwFG8dZ.json +++ b/src/packs/beastforms/feature_Demolish_DfBXO8jTchwFG8dZ.json @@ -93,7 +93,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753627699848, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395772711, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "DfBXO8jTchwFG8dZ", "sort": 100000, diff --git a/src/packs/beastforms/feature_Devastating_Strikes_HJbQcKWcFZ9NoFxs.json b/src/packs/beastforms/feature_Devastating_Strikes_HJbQcKWcFZ9NoFxs.json index 1c792e95..9b24e84e 100644 --- a/src/packs/beastforms/feature_Devastating_Strikes_HJbQcKWcFZ9NoFxs.json +++ b/src/packs/beastforms/feature_Devastating_Strikes_HJbQcKWcFZ9NoFxs.json @@ -39,7 +39,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628206110, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395786112, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HJbQcKWcFZ9NoFxs", "sort": 200000, diff --git a/src/packs/beastforms/feature_Elusive_Prey_a7Qvmm14nx9BCysA.json b/src/packs/beastforms/feature_Elusive_Prey_a7Qvmm14nx9BCysA.json index 1de48d46..27b3eb9c 100644 --- a/src/packs/beastforms/feature_Elusive_Prey_a7Qvmm14nx9BCysA.json +++ b/src/packs/beastforms/feature_Elusive_Prey_a7Qvmm14nx9BCysA.json @@ -63,7 +63,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -76,12 +81,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753574925665, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395566717, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "a7Qvmm14nx9BCysA", "sort": 2300000, diff --git a/src/packs/beastforms/feature_Fleet_GhHsSHOa509cwCvr.json b/src/packs/beastforms/feature_Fleet_GhHsSHOa509cwCvr.json index cabc703d..554cba68 100644 --- a/src/packs/beastforms/feature_Fleet_GhHsSHOa509cwCvr.json +++ b/src/packs/beastforms/feature_Fleet_GhHsSHOa509cwCvr.json @@ -39,7 +39,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753621784810, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395691006, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "GhHsSHOa509cwCvr", "sort": 1000000, diff --git a/src/packs/beastforms/feature_Fragile_QFg1hNCEoKVDd9Zo.json b/src/packs/beastforms/feature_Fragile_QFg1hNCEoKVDd9Zo.json index e22b70b4..c4a39892 100644 --- a/src/packs/beastforms/feature_Fragile_QFg1hNCEoKVDd9Zo.json +++ b/src/packs/beastforms/feature_Fragile_QFg1hNCEoKVDd9Zo.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -21,12 +26,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753569754067, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395538450, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QFg1hNCEoKVDd9Zo", "sort": 2500000, diff --git a/src/packs/beastforms/feature_Hobbling_Strike_8u0HkK3WgtU9lWYs.json b/src/packs/beastforms/feature_Hobbling_Strike_8u0HkK3WgtU9lWYs.json index a46fd322..95477418 100644 --- a/src/packs/beastforms/feature_Hobbling_Strike_8u0HkK3WgtU9lWYs.json +++ b/src/packs/beastforms/feature_Hobbling_Strike_8u0HkK3WgtU9lWYs.json @@ -44,7 +44,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [ { @@ -97,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753575250590, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395576634, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8u0HkK3WgtU9lWYs", "sort": 2400000, diff --git a/src/packs/beastforms/feature_Hollow_Bones_xVgmXhj2YgeqS1KK.json b/src/packs/beastforms/feature_Hollow_Bones_xVgmXhj2YgeqS1KK.json index d358b416..7dbcb48b 100644 --- a/src/packs/beastforms/feature_Hollow_Bones_xVgmXhj2YgeqS1KK.json +++ b/src/packs/beastforms/feature_Hollow_Bones_xVgmXhj2YgeqS1KK.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753624948910, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395703373, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xVgmXhj2YgeqS1KK", "sort": 1500000, diff --git a/src/packs/beastforms/feature_Massive_Stride_9QkZSeuEKgXtlpHc.json b/src/packs/beastforms/feature_Massive_Stride_9QkZSeuEKgXtlpHc.json index 17812c9d..05e95201 100644 --- a/src/packs/beastforms/feature_Massive_Stride_9QkZSeuEKgXtlpHc.json +++ b/src/packs/beastforms/feature_Massive_Stride_9QkZSeuEKgXtlpHc.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -21,12 +26,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628207886, - "modifiedTime": 1753628207886, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395780645, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9QkZSeuEKgXtlpHc", "sort": 0, diff --git a/src/packs/beastforms/feature_Ocean_Master_tGDdEH40wyOCsFmH.json b/src/packs/beastforms/feature_Ocean_Master_tGDdEH40wyOCsFmH.json index 37716764..2dab5551 100644 --- a/src/packs/beastforms/feature_Ocean_Master_tGDdEH40wyOCsFmH.json +++ b/src/packs/beastforms/feature_Ocean_Master_tGDdEH40wyOCsFmH.json @@ -36,7 +36,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [ { @@ -87,12 +92,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628691739, - "modifiedTime": 1753628691739, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395806363, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tGDdEH40wyOCsFmH", "sort": 0, diff --git a/src/packs/beastforms/feature_Pack_Hunting_d3q8lfeiEMyTjusT.json b/src/packs/beastforms/feature_Pack_Hunting_d3q8lfeiEMyTjusT.json index d6e58fcb..0c66a4e0 100644 --- a/src/packs/beastforms/feature_Pack_Hunting_d3q8lfeiEMyTjusT.json +++ b/src/packs/beastforms/feature_Pack_Hunting_d3q8lfeiEMyTjusT.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 12, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -21,12 +26,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753575268237, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395582868, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "d3q8lfeiEMyTjusT", "sort": 1800000, diff --git a/src/packs/beastforms/feature_Physical_Defense_StabkQ3BzWRZa8Tz.json b/src/packs/beastforms/feature_Physical_Defense_StabkQ3BzWRZa8Tz.json index effdc34f..4a86cb45 100644 --- a/src/packs/beastforms/feature_Physical_Defense_StabkQ3BzWRZa8Tz.json +++ b/src/packs/beastforms/feature_Physical_Defense_StabkQ3BzWRZa8Tz.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626716369, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395740811, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "StabkQ3BzWRZa8Tz", "sort": 500000, diff --git a/src/packs/beastforms/feature_Rampage_8upqfcZvi7b5hRLE.json b/src/packs/beastforms/feature_Rampage_8upqfcZvi7b5hRLE.json index 0164d236..3ac9731d 100644 --- a/src/packs/beastforms/feature_Rampage_8upqfcZvi7b5hRLE.json +++ b/src/packs/beastforms/feature_Rampage_8upqfcZvi7b5hRLE.json @@ -44,7 +44,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -57,12 +62,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753582591417, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395649724, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8upqfcZvi7b5hRLE", "sort": 2000000, diff --git a/src/packs/beastforms/feature_Snapping_Strike_Ky3rZD3sJMXYZOBC.json b/src/packs/beastforms/feature_Snapping_Strike_Ky3rZD3sJMXYZOBC.json index c22dad6e..e49f6b47 100644 --- a/src/packs/beastforms/feature_Snapping_Strike_Ky3rZD3sJMXYZOBC.json +++ b/src/packs/beastforms/feature_Snapping_Strike_Ky3rZD3sJMXYZOBC.json @@ -44,7 +44,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -96,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626717512, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395734143, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Ky3rZD3sJMXYZOBC", "sort": 300000, diff --git a/src/packs/beastforms/feature_Takedown_0ey4kM9ssj2otHvb.json b/src/packs/beastforms/feature_Takedown_0ey4kM9ssj2otHvb.json index 13ffe145..a1a14198 100644 --- a/src/packs/beastforms/feature_Takedown_0ey4kM9ssj2otHvb.json +++ b/src/packs/beastforms/feature_Takedown_0ey4kM9ssj2otHvb.json @@ -89,7 +89,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -145,12 +150,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753621786000, - "modifiedTime": 1753643111609, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395696040, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "0ey4kM9ssj2otHvb", "sort": 600000, diff --git a/src/packs/beastforms/feature_Thick_Hide_ZYbdXaWVj2zdcmaK.json b/src/packs/beastforms/feature_Thick_Hide_ZYbdXaWVj2zdcmaK.json index 62e74afd..ab765715 100644 --- a/src/packs/beastforms/feature_Thick_Hide_ZYbdXaWVj2zdcmaK.json +++ b/src/packs/beastforms/feature_Thick_Hide_ZYbdXaWVj2zdcmaK.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753582593100, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395643155, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ZYbdXaWVj2zdcmaK", "sort": 1100000, diff --git a/src/packs/beastforms/feature_Trample_A0lgd6eVEfX6oqSB.json b/src/packs/beastforms/feature_Trample_A0lgd6eVEfX6oqSB.json index 15dec8f3..b55d8f6e 100644 --- a/src/packs/beastforms/feature_Trample_A0lgd6eVEfX6oqSB.json +++ b/src/packs/beastforms/feature_Trample_A0lgd6eVEfX6oqSB.json @@ -93,7 +93,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753617737349, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395668076, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "A0lgd6eVEfX6oqSB", "sort": 800000, diff --git a/src/packs/beastforms/feature_Undaunted_ODudjX88Te4vDP57.json b/src/packs/beastforms/feature_Undaunted_ODudjX88Te4vDP57.json index 5137104d..1ed1f2eb 100644 --- a/src/packs/beastforms/feature_Undaunted_ODudjX88Te4vDP57.json +++ b/src/packs/beastforms/feature_Undaunted_ODudjX88Te4vDP57.json @@ -8,7 +8,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753627700926, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395766945, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ODudjX88Te4vDP57", "sort": 400000, diff --git a/src/packs/beastforms/feature_Unyielding_vEAQ4cfsoPmOv2Gg.json b/src/packs/beastforms/feature_Unyielding_vEAQ4cfsoPmOv2Gg.json index 98fe5e15..b1aadec4 100644 --- a/src/packs/beastforms/feature_Unyielding_vEAQ4cfsoPmOv2Gg.json +++ b/src/packs/beastforms/feature_Unyielding_vEAQ4cfsoPmOv2Gg.json @@ -55,7 +55,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753628692761, - "modifiedTime": 1753628692761, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395812715, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "vEAQ4cfsoPmOv2Gg", "sort": 0, diff --git a/src/packs/beastforms/feature_Venomous_Bite_2KlTnfzO03vneVS8.json b/src/packs/beastforms/feature_Venomous_Bite_2KlTnfzO03vneVS8.json index bea17311..150a4ffb 100644 --- a/src/packs/beastforms/feature_Venomous_Bite_2KlTnfzO03vneVS8.json +++ b/src/packs/beastforms/feature_Venomous_Bite_2KlTnfzO03vneVS8.json @@ -36,7 +36,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -86,12 +91,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753576004121, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395614203, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2KlTnfzO03vneVS8", "sort": 1600000, diff --git a/src/packs/beastforms/feature_Venomous_Strike_uW3853pViM9VAfHb.json b/src/packs/beastforms/feature_Venomous_Strike_uW3853pViM9VAfHb.json index 11e60f58..cd44212c 100644 --- a/src/packs/beastforms/feature_Venomous_Strike_uW3853pViM9VAfHb.json +++ b/src/packs/beastforms/feature_Venomous_Strike_uW3853pViM9VAfHb.json @@ -60,7 +60,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -109,12 +114,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753621248553, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395682759, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uW3853pViM9VAfHb", "sort": 1300000, diff --git a/src/packs/beastforms/feature_Vicious_Maul_jYUBi7yLHap5ljpa.json b/src/packs/beastforms/feature_Vicious_Maul_jYUBi7yLHap5ljpa.json index 9c862f3e..06706094 100644 --- a/src/packs/beastforms/feature_Vicious_Maul_jYUBi7yLHap5ljpa.json +++ b/src/packs/beastforms/feature_Vicious_Maul_jYUBi7yLHap5ljpa.json @@ -74,7 +74,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 14, + "artist": "" + } }, "effects": [ { @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625637943, - "modifiedTime": 1753643084893, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395725076, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jYUBi7yLHap5ljpa", "sort": 700000, diff --git a/src/packs/beastforms/feature_Warning_Hiss_cTlqpQZPy5TvdDAT.json b/src/packs/beastforms/feature_Warning_Hiss_cTlqpQZPy5TvdDAT.json index 5380f968..39b4a777 100644 --- a/src/packs/beastforms/feature_Warning_Hiss_cTlqpQZPy5TvdDAT.json +++ b/src/packs/beastforms/feature_Warning_Hiss_cTlqpQZPy5TvdDAT.json @@ -39,7 +39,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [], "folder": "uU8bIoZvXge0rLaU", @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753621249622, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395677589, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cTlqpQZPy5TvdDAT", "sort": 1200000, diff --git a/src/packs/beastforms/feature_Webslinger_D73fS1iM4SZPFimu.json b/src/packs/beastforms/feature_Webslinger_D73fS1iM4SZPFimu.json index 4f6e6717..5e1295e1 100644 --- a/src/packs/beastforms/feature_Webslinger_D73fS1iM4SZPFimu.json +++ b/src/packs/beastforms/feature_Webslinger_D73fS1iM4SZPFimu.json @@ -60,7 +60,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 13, + "artist": "" + } }, "effects": [ { @@ -112,12 +117,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753576005315, - "modifiedTime": 1753628206133, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755395606969, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "D73fS1iM4SZPFimu", "sort": 1700000, diff --git a/src/packs/classes/class_Bard_vegl3bFOq3pcFTWT.json b/src/packs/classes/class_Bard_vegl3bFOq3pcFTWT.json index 836e49b5..f0057263 100644 --- a/src/packs/classes/class_Bard_vegl3bFOq3pcFTWT.json +++ b/src/packs/classes/class_Bard_vegl3bFOq3pcFTWT.json @@ -58,7 +58,12 @@ "suggestedSecondaryWeapon": "Compendium.daggerheart.weapons.Item.wKklDxs5nkzILNp4", "suggestedArmor": "Compendium.daggerheart.armors.Item.yJFp1bfpecDcStVK" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "ownership": { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174600538, - "modifiedTime": 1754325498779, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755390999058, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "vegl3bFOq3pcFTWT", "sort": 300000, diff --git a/src/packs/classes/class_Druid_ZNwUTCyGCEcidZFv.json b/src/packs/classes/class_Druid_ZNwUTCyGCEcidZFv.json index 800598a6..6b7d137d 100644 --- a/src/packs/classes/class_Druid_ZNwUTCyGCEcidZFv.json +++ b/src/packs/classes/class_Druid_ZNwUTCyGCEcidZFv.json @@ -58,7 +58,12 @@ "suggestedSecondaryWeapon": "Compendium.daggerheart.weapons.Item.mxwWKDujgsRcZWPT", "suggestedArmor": "Compendium.daggerheart.armors.Item.nibfdNtp2PtxvbVz" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [], "folder": null, @@ -72,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754222247012, - "modifiedTime": 1754325498779, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391012909, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ZNwUTCyGCEcidZFv" } diff --git a/src/packs/classes/class_Guardian_nRAyoC0fOzXPDa4z.json b/src/packs/classes/class_Guardian_nRAyoC0fOzXPDa4z.json index 2d76ccfb..47677e4f 100644 --- a/src/packs/classes/class_Guardian_nRAyoC0fOzXPDa4z.json +++ b/src/packs/classes/class_Guardian_nRAyoC0fOzXPDa4z.json @@ -54,7 +54,12 @@ "suggestedSecondaryWeapon": null, "suggestedArmor": "Compendium.daggerheart.armors.Item.haULhuEg37zUUvhb" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [], "folder": null, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754246931974, - "modifiedTime": 1754325498779, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391032291, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nRAyoC0fOzXPDa4z" } diff --git a/src/packs/classes/class_Ranger_BTyfve69LKqoOi9S.json b/src/packs/classes/class_Ranger_BTyfve69LKqoOi9S.json index 17fb6b2d..51a016a4 100644 --- a/src/packs/classes/class_Ranger_BTyfve69LKqoOi9S.json +++ b/src/packs/classes/class_Ranger_BTyfve69LKqoOi9S.json @@ -54,7 +54,12 @@ "suggestedSecondaryWeapon": null, "suggestedArmor": "Compendium.daggerheart.armors.Item.nibfdNtp2PtxvbVz" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "folder": null, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754268869310, - "modifiedTime": 1754325517617, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391043325, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BTyfve69LKqoOi9S" } diff --git a/src/packs/classes/class_Rogue_CvHlkHZfpMiCz5uT.json b/src/packs/classes/class_Rogue_CvHlkHZfpMiCz5uT.json index 617ea0f0..aa40d9bf 100644 --- a/src/packs/classes/class_Rogue_CvHlkHZfpMiCz5uT.json +++ b/src/packs/classes/class_Rogue_CvHlkHZfpMiCz5uT.json @@ -58,7 +58,12 @@ "suggestedSecondaryWeapon": "Compendium.daggerheart.weapons.Item.wKklDxs5nkzILNp4", "suggestedArmor": "Compendium.daggerheart.armors.Item.yJFp1bfpecDcStVK" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [], "folder": null, @@ -72,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754325275832, - "modifiedTime": 1754500637635, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755391064025, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CvHlkHZfpMiCz5uT" } diff --git a/src/packs/classes/class_Seraph_5ZnlJ5bEoyOTkUJv.json b/src/packs/classes/class_Seraph_5ZnlJ5bEoyOTkUJv.json index b88da6c2..1f020737 100644 --- a/src/packs/classes/class_Seraph_5ZnlJ5bEoyOTkUJv.json +++ b/src/packs/classes/class_Seraph_5ZnlJ5bEoyOTkUJv.json @@ -54,7 +54,12 @@ "suggestedSecondaryWeapon": "Compendium.daggerheart.weapons.Item.mxwWKDujgsRcZWPT", "suggestedArmor": "Compendium.daggerheart.armors.Item.haULhuEg37zUUvhb" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "folder": null, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754351482530, - "modifiedTime": 1754355938087, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755391077728, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5ZnlJ5bEoyOTkUJv" } diff --git a/src/packs/classes/class_Sorcerer_DchOzHcWIJE9FKcR.json b/src/packs/classes/class_Sorcerer_DchOzHcWIJE9FKcR.json index 15e9bcce..2f04b0c5 100644 --- a/src/packs/classes/class_Sorcerer_DchOzHcWIJE9FKcR.json +++ b/src/packs/classes/class_Sorcerer_DchOzHcWIJE9FKcR.json @@ -62,7 +62,12 @@ "suggestedSecondaryWeapon": null, "suggestedArmor": "Compendium.daggerheart.armors.Item.yJFp1bfpecDcStVK" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "folder": null, @@ -76,12 +81,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349743129, - "modifiedTime": 1754350005553, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755391092028, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DchOzHcWIJE9FKcR" } diff --git a/src/packs/classes/class_Warrior_xCUWwJz4WSthvLfy.json b/src/packs/classes/class_Warrior_xCUWwJz4WSthvLfy.json index 230c3a70..8e0de2a2 100644 --- a/src/packs/classes/class_Warrior_xCUWwJz4WSthvLfy.json +++ b/src/packs/classes/class_Warrior_xCUWwJz4WSthvLfy.json @@ -58,7 +58,12 @@ "suggestedSecondaryWeapon": null, "suggestedArmor": "Compendium.daggerheart.armors.Item.haULhuEg37zUUvhb" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [], "folder": null, @@ -72,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754255776706, - "modifiedTime": 1754325510730, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391103528, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xCUWwJz4WSthvLfy" } diff --git a/src/packs/classes/class_Wizard_5LwX4m8ziY3F1ZGC.json b/src/packs/classes/class_Wizard_5LwX4m8ziY3F1ZGC.json index 9a5790db..c36cef8c 100644 --- a/src/packs/classes/class_Wizard_5LwX4m8ziY3F1ZGC.json +++ b/src/packs/classes/class_Wizard_5LwX4m8ziY3F1ZGC.json @@ -58,7 +58,12 @@ "suggestedSecondaryWeapon": null, "suggestedArmor": "Compendium.daggerheart.armors.Item.nibfdNtp2PtxvbVz" }, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "folder": null, @@ -72,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253505323, - "modifiedTime": 1754325500455, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391118180, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5LwX4m8ziY3F1ZGC" } diff --git a/src/packs/classes/feature_Arcane_Sense_CHK32dfCTTyuxV1A.json b/src/packs/classes/feature_Arcane_Sense_CHK32dfCTTyuxV1A.json index 493a5336..6e737d42 100644 --- a/src/packs/classes/feature_Arcane_Sense_CHK32dfCTTyuxV1A.json +++ b/src/packs/classes/feature_Arcane_Sense_CHK32dfCTTyuxV1A.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349703843, - "modifiedTime": 1754349703843, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755391367476, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CHK32dfCTTyuxV1A" } diff --git a/src/packs/classes/feature_Attack_Of_Opportunity_3hNVqD1c0VIw2Nj5.json b/src/packs/classes/feature_Attack_Of_Opportunity_3hNVqD1c0VIw2Nj5.json index 4fc8f904..aff9be25 100644 --- a/src/packs/classes/feature_Attack_Of_Opportunity_3hNVqD1c0VIw2Nj5.json +++ b/src/packs/classes/feature_Attack_Of_Opportunity_3hNVqD1c0VIw2Nj5.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754257407143, - "modifiedTime": 1754257470399, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391424513, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3hNVqD1c0VIw2Nj5" } diff --git a/src/packs/classes/feature_Beastform_P1K0jcnH2RiS6TLd.json b/src/packs/classes/feature_Beastform_P1K0jcnH2RiS6TLd.json index c93225e2..a0aab233 100644 --- a/src/packs/classes/feature_Beastform_P1K0jcnH2RiS6TLd.json +++ b/src/packs/classes/feature_Beastform_P1K0jcnH2RiS6TLd.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [], "sort": 200000, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754221796297, - "modifiedTime": 1754246230370, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391222871, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!P1K0jcnH2RiS6TLd" } diff --git a/src/packs/classes/feature_Channel_Raw_Power_P02cbN50LIoD662z.json b/src/packs/classes/feature_Channel_Raw_Power_P02cbN50LIoD662z.json index f01b29b1..d0b792cc 100644 --- a/src/packs/classes/feature_Channel_Raw_Power_P02cbN50LIoD662z.json +++ b/src/packs/classes/feature_Channel_Raw_Power_P02cbN50LIoD662z.json @@ -42,7 +42,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -55,12 +60,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349703843, - "modifiedTime": 1754498040342, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391373925, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!P02cbN50LIoD662z" } diff --git a/src/packs/classes/feature_Cloaked_5IT8wYa0m1EFw8Zp.json b/src/packs/classes/feature_Cloaked_5IT8wYa0m1EFw8Zp.json index d5067bf7..f14ef868 100644 --- a/src/packs/classes/feature_Cloaked_5IT8wYa0m1EFw8Zp.json +++ b/src/packs/classes/feature_Cloaked_5IT8wYa0m1EFw8Zp.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754324132841, - "modifiedTime": 1754324172617, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391307139, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5IT8wYa0m1EFw8Zp" } diff --git a/src/packs/classes/feature_Combat_Training_eoSmuAJmgHUyULtp.json b/src/packs/classes/feature_Combat_Training_eoSmuAJmgHUyULtp.json index 83121c84..e13427d4 100644 --- a/src/packs/classes/feature_Combat_Training_eoSmuAJmgHUyULtp.json +++ b/src/packs/classes/feature_Combat_Training_eoSmuAJmgHUyULtp.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754257489875, - "modifiedTime": 1754257512503, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391432013, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!eoSmuAJmgHUyULtp" } diff --git a/src/packs/classes/feature_Evolution_6rlxhrRwFaVgq9fe.json b/src/packs/classes/feature_Evolution_6rlxhrRwFaVgq9fe.json index ed9b87e3..8194c296 100644 --- a/src/packs/classes/feature_Evolution_6rlxhrRwFaVgq9fe.json +++ b/src/packs/classes/feature_Evolution_6rlxhrRwFaVgq9fe.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [], "sort": 100000, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754221506611, - "modifiedTime": 1754353698203, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391214500, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6rlxhrRwFaVgq9fe" } diff --git a/src/packs/classes/feature_Frontline_Tank_YS1g7YdWwOaS629x.json b/src/packs/classes/feature_Frontline_Tank_YS1g7YdWwOaS629x.json index af403628..a0b56f5f 100644 --- a/src/packs/classes/feature_Frontline_Tank_YS1g7YdWwOaS629x.json +++ b/src/packs/classes/feature_Frontline_Tank_YS1g7YdWwOaS629x.json @@ -85,7 +85,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [], "sort": 0, @@ -98,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754246687097, - "modifiedTime": 1754246740977, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391259920, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YS1g7YdWwOaS629x" } diff --git a/src/packs/classes/feature_Hold_Them_Off_2Cyb9ZeuAesf5Sb3.json b/src/packs/classes/feature_Hold_Them_Off_2Cyb9ZeuAesf5Sb3.json index b99116da..f2e99b8f 100644 --- a/src/packs/classes/feature_Hold_Them_Off_2Cyb9ZeuAesf5Sb3.json +++ b/src/packs/classes/feature_Hold_Them_Off_2Cyb9ZeuAesf5Sb3.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 0, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754268431889, - "modifiedTime": 1754268481364, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391281371, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2Cyb9ZeuAesf5Sb3" } diff --git a/src/packs/classes/feature_Life_Support_lSlvSUHbOoX36q2j.json b/src/packs/classes/feature_Life_Support_lSlvSUHbOoX36q2j.json index 289401df..64256829 100644 --- a/src/packs/classes/feature_Life_Support_lSlvSUHbOoX36q2j.json +++ b/src/packs/classes/feature_Life_Support_lSlvSUHbOoX36q2j.json @@ -87,7 +87,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -100,12 +105,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754352191693, - "modifiedTime": 1754352366258, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755391338608, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!lSlvSUHbOoX36q2j" } diff --git a/src/packs/classes/feature_Make_a_Scene_N9E5skDDK2VgvohR.json b/src/packs/classes/feature_Make_a_Scene_N9E5skDDK2VgvohR.json index 0b06f0f2..3d92768d 100644 --- a/src/packs/classes/feature_Make_a_Scene_N9E5skDDK2VgvohR.json +++ b/src/packs/classes/feature_Make_a_Scene_N9E5skDDK2VgvohR.json @@ -44,7 +44,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [ { @@ -102,12 +107,12 @@ "compendiumSource": "Compendium.daggerheart.classes.Item.OxmucTHHfuBSv2dn", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174534518, - "modifiedTime": 1754246214305, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391180683, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/classes/feature_Minor_Illusion_cshTYdtz9yoXYYB3.json b/src/packs/classes/feature_Minor_Illusion_cshTYdtz9yoXYYB3.json index 1bb9865b..a5103190 100644 --- a/src/packs/classes/feature_Minor_Illusion_cshTYdtz9yoXYYB3.json +++ b/src/packs/classes/feature_Minor_Illusion_cshTYdtz9yoXYYB3.json @@ -57,7 +57,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349703843, - "modifiedTime": 1754349703843, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755391393430, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cshTYdtz9yoXYYB3" } diff --git a/src/packs/classes/feature_No_Mercy_njj2C3tMDeCHHOoh.json b/src/packs/classes/feature_No_Mercy_njj2C3tMDeCHHOoh.json index fd65ec54..b131fcdf 100644 --- a/src/packs/classes/feature_No_Mercy_njj2C3tMDeCHHOoh.json +++ b/src/packs/classes/feature_No_Mercy_njj2C3tMDeCHHOoh.json @@ -47,7 +47,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [ { @@ -112,12 +117,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754257270096, - "modifiedTime": 1754257373211, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391439746, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!njj2C3tMDeCHHOoh" } diff --git a/src/packs/classes/feature_Not_This_Time_h3VE0jhcM5xHKBs4.json b/src/packs/classes/feature_Not_This_Time_h3VE0jhcM5xHKBs4.json index 43b53093..fe59bd63 100644 --- a/src/packs/classes/feature_Not_This_Time_h3VE0jhcM5xHKBs4.json +++ b/src/packs/classes/feature_Not_This_Time_h3VE0jhcM5xHKBs4.json @@ -42,7 +42,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -55,12 +60,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254821288, - "modifiedTime": 1754254888546, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391455848, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!h3VE0jhcM5xHKBs4" } diff --git a/src/packs/classes/feature_Prayer_Dice_Xd7RYhfTxIj9aWI2.json b/src/packs/classes/feature_Prayer_Dice_Xd7RYhfTxIj9aWI2.json index 8203a246..6c8f2ee8 100644 --- a/src/packs/classes/feature_Prayer_Dice_Xd7RYhfTxIj9aWI2.json +++ b/src/packs/classes/feature_Prayer_Dice_Xd7RYhfTxIj9aWI2.json @@ -15,7 +15,12 @@ }, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 100000, @@ -30,10 +35,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1754352649696, - "modifiedTime": 1754845640002, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755391345473, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Xd7RYhfTxIj9aWI2" } diff --git a/src/packs/classes/feature_Prestidigitation_SG2uw8h5YuwDviCn.json b/src/packs/classes/feature_Prestidigitation_SG2uw8h5YuwDviCn.json index 3757fde2..d4846155 100644 --- a/src/packs/classes/feature_Prestidigitation_SG2uw8h5YuwDviCn.json +++ b/src/packs/classes/feature_Prestidigitation_SG2uw8h5YuwDviCn.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254907799, - "modifiedTime": 1754254926599, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391463314, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SG2uw8h5YuwDviCn" } diff --git a/src/packs/classes/feature_Rally_PydiMnNCKpd44SGS.json b/src/packs/classes/feature_Rally_PydiMnNCKpd44SGS.json index c5933ca8..f421c6ab 100644 --- a/src/packs/classes/feature_Rally_PydiMnNCKpd44SGS.json +++ b/src/packs/classes/feature_Rally_PydiMnNCKpd44SGS.json @@ -36,7 +36,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174497668, - "modifiedTime": 1754494820213, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391189267, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/classes/feature_Rally__Level_5__TVeEyqmPPiRa2r3i.json b/src/packs/classes/feature_Rally__Level_5__TVeEyqmPPiRa2r3i.json index da124244..50d8e2ab 100644 --- a/src/packs/classes/feature_Rally__Level_5__TVeEyqmPPiRa2r3i.json +++ b/src/packs/classes/feature_Rally__Level_5__TVeEyqmPPiRa2r3i.json @@ -36,7 +36,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174499893, - "modifiedTime": 1754494835723, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391195765, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/classes/feature_Ranger_s_Focus_ncLx2P8BOUtrAD38.json b/src/packs/classes/feature_Ranger_s_Focus_ncLx2P8BOUtrAD38.json index a8b7fa77..4f798663 100644 --- a/src/packs/classes/feature_Ranger_s_Focus_ncLx2P8BOUtrAD38.json +++ b/src/packs/classes/feature_Ranger_s_Focus_ncLx2P8BOUtrAD38.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754268505051, - "modifiedTime": 1754268589700, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391289388, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ncLx2P8BOUtrAD38" } diff --git a/src/packs/classes/feature_Rogue_s_Dodge_hVaaPIjxoextIgSL.json b/src/packs/classes/feature_Rogue_s_Dodge_hVaaPIjxoextIgSL.json index b544f70a..244f46c5 100644 --- a/src/packs/classes/feature_Rogue_s_Dodge_hVaaPIjxoextIgSL.json +++ b/src/packs/classes/feature_Rogue_s_Dodge_hVaaPIjxoextIgSL.json @@ -45,7 +45,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -110,12 +115,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754323951411, - "modifiedTime": 1754324053728, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391319440, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hVaaPIjxoextIgSL" } diff --git a/src/packs/classes/feature_Sneak_Attack_5QqpEwmwkPfZHpMW.json b/src/packs/classes/feature_Sneak_Attack_5QqpEwmwkPfZHpMW.json index ec203e9a..eb637edd 100644 --- a/src/packs/classes/feature_Sneak_Attack_5QqpEwmwkPfZHpMW.json +++ b/src/packs/classes/feature_Sneak_Attack_5QqpEwmwkPfZHpMW.json @@ -37,7 +37,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -108,12 +113,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754324216454, - "modifiedTime": 1754324890997, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391313725, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5QqpEwmwkPfZHpMW" } diff --git a/src/packs/classes/feature_Strange_Patterns_6YsfFjmCGuFYVhT4.json b/src/packs/classes/feature_Strange_Patterns_6YsfFjmCGuFYVhT4.json index afe896de..18e6f87e 100644 --- a/src/packs/classes/feature_Strange_Patterns_6YsfFjmCGuFYVhT4.json +++ b/src/packs/classes/feature_Strange_Patterns_6YsfFjmCGuFYVhT4.json @@ -84,7 +84,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -97,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254942995, - "modifiedTime": 1754498121727, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391470247, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6YsfFjmCGuFYVhT4" } diff --git a/src/packs/classes/feature_Unstoppable_PnD2UCgzIlwX6cY3.json b/src/packs/classes/feature_Unstoppable_PnD2UCgzIlwX6cY3.json index 5505ed44..c768b09f 100644 --- a/src/packs/classes/feature_Unstoppable_PnD2UCgzIlwX6cY3.json +++ b/src/packs/classes/feature_Unstoppable_PnD2UCgzIlwX6cY3.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 15, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754246498657, - "modifiedTime": 1754246649352, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391250586, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PnD2UCgzIlwX6cY3" } diff --git a/src/packs/classes/feature_Volatile_Magic_ieiQlD0joWSqt53D.json b/src/packs/classes/feature_Volatile_Magic_ieiQlD0joWSqt53D.json index b6994b72..08c89b32 100644 --- a/src/packs/classes/feature_Volatile_Magic_ieiQlD0joWSqt53D.json +++ b/src/packs/classes/feature_Volatile_Magic_ieiQlD0joWSqt53D.json @@ -41,7 +41,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "folder": "oNhnBt8HZ2oaSnSn", @@ -55,12 +60,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349703843, - "modifiedTime": 1754349703843, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755391406960, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ieiQlD0joWSqt53D" } diff --git a/src/packs/classes/feature_Wildtouch_fqSdfUYUK9QUcVE4.json b/src/packs/classes/feature_Wildtouch_fqSdfUYUK9QUcVE4.json index efdbe7e7..19f780fd 100644 --- a/src/packs/classes/feature_Wildtouch_fqSdfUYUK9QUcVE4.json +++ b/src/packs/classes/feature_Wildtouch_fqSdfUYUK9QUcVE4.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754221970100, - "modifiedTime": 1754246231149, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391229618, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fqSdfUYUK9QUcVE4" } diff --git a/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json b/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json index be485d0b..58ccda51 100644 --- a/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json +++ b/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json @@ -7,19 +7,24 @@ "description": "
Being part of a highborne community means you’re accustomed to a life of elegance, opulence, and prestige within the upper echelons of society.
Traditionally, members of a highborne community possess incredible material wealth. While this can take a variety of forms depending on the community—including gold and other minerals, land, or controlling the means of production—this status always comes with power and influence. Highborne place great value on titles and possessions, and there is little social mobility within their ranks. Members of a highborne community often control the political and economic status of the areas in which they live due to their ability to influence people and the economy with their substantial wealth. The health and safety of the less affluent people who live in these locations often hinges on the ability of this highborne ruling class to prioritize the well-being of their subjects over profit.
\nHighborne are often amiable, candid, conniving, enterprising, ostentatious, and unflappable.
", "features": [ "Compendium.daggerheart.communities.Item.C7NR6qRatawZusmg" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784392, - "modifiedTime": 1754010352828, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394637367, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "DVw2mOCHB8i0XeBz", "sort": 3400000, diff --git a/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json b/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json index 50530aff..2db69c4d 100644 --- a/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json +++ b/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json @@ -7,19 +7,24 @@ "description": "Being part of a loreborne community means you’re from a society that favors strong academic or political prowess.
Loreborne communities highly value knowledge, frequently in the form of historical preservation, political advancement, scientific study, skill development, or lore and mythology compilation. Most members of these communities research in institutions built in bastions of civilization, while some eclectic few thrive in gathering information from the natural world. Some may be isolationists, operating in smaller enclaves, schools, or guilds and following their own unique ethos. Others still wield their knowledge on a larger scale, making deft political maneuvers across governmental landscapes.
\nLoreborne are often direct, eloquent, inquisitive, patient, rhapsodic, and witty.
", "features": [ "Compendium.daggerheart.communities.Item.JBZJmywisJg5X3tH" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784392, - "modifiedTime": 1754010491764, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394793025, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YsvlyqYoi8QQ8kwm", "sort": 3400000, diff --git a/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json index 7817a2ea..ae6adc86 100644 --- a/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json +++ b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json @@ -7,19 +7,24 @@ "description": "Being part of an orderborne community means you’re from a collective that focuses on discipline or faith, and you uphold a set of principles that reflect your experience there.
Orderborne are frequently some of the most powerful among the surrounding communities. By aligning the members of their society around a common value or goal, such as a god, doctrine, ethos, or even a shared business or trade, the ruling bodies of these enclaves are able to mobilize larger populations with less effort. While orderborne communities take a variety of forms—some even profoundly pacifistic—perhaps the most feared are those that structure themselves around military prowess. In such a case, it’s not uncommon for orderborne to provide soldiers for hire to other cities or countries.
\nOrderborne are often ambitious, benevolent, pensive, prudent, sardonic, and stoic.
", "features": [ "Compendium.daggerheart.communities.Item.7aXWdH3gzaYREK0X" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784393, - "modifiedTime": 1754010626874, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394802410, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TY2TejenASXtS484", "sort": 3400000, diff --git a/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json index 5971d311..1b09ad82 100644 --- a/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json +++ b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json @@ -7,19 +7,24 @@ "description": "Being part of a ridgeborne community means you’ve called the rocky peaks and sharp cliffs of the mountainside home.
Those who’ve lived in the mountains often consider themselves hardier than most because they’ve thrived among the most dangerous terrain many continents have to offer. These groups are adept at adaptation, developing unique technologies and equipment to move both people and products across difficult terrain. As such, ridgeborne grow up scrambling and climbing, making them sturdy and strong-willed. Ridgeborne localities appear in a variety of forms—some cities carve out entire cliff faces, others construct castles of stone, and still more live in small homes on windblown peaks. Outside forces often struggle to attack ridgeborne groups, as the small militias and large military forces of the mountains are adept at utilizing their high-ground advantage.
\nRidgeborne are often bold, hardy, indomitable, loyal, reserved, and stubborn.
", "features": [ "Compendium.daggerheart.communities.Item.DYmmr5CknLtHnwuj" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784394, - "modifiedTime": 1754010655426, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394814094, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WHLA4qrdszXQHOuo", "sort": 3400000, diff --git a/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json index 95798e66..cd474b14 100644 --- a/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json +++ b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json @@ -7,19 +7,24 @@ "description": "Being part of a seaborne community means you lived on or near a large body of water.
Seaborne communities are built, both physically and culturally, around the specific waters they call home. Some of these groups live along the shore, constructing ports for locals and travelers alike. These harbors function as centers of commerce, tourist attractions, or even just a safe place to lay down one’s head after weeks of travel. Other seaborne live on the water in small boats or large ships, with the idea of “home” comprising a ship and its crew, rather than any one landmass. No matter their exact location, seaborne communities are closely tied to the ocean tides and the creatures who inhabit them. Seaborne learn to fish at a young age, and train from birth to hold their breath and swim in even the most tumultuous waters. Individuals from these groups are highly sought after for their sailing skills, and many become captains of vessels, whether within their own community, working for another, or even at the helm of a powerful naval operation.
\nSeaborne are often candid, cooperative, exuberant, fierce, resolute, and weathered.
", "features": [ "Compendium.daggerheart.communities.Item.07x6Qe6qMzDw2xN4" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784395, - "modifiedTime": 1754010861330, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394819693, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "o5AA5J05N7EvH1rN", "sort": 3400000, diff --git a/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json index c038fe90..3d8911be 100644 --- a/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json +++ b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json @@ -7,19 +7,24 @@ "description": "Being part of a slyborne community means you come from a group that operates outside the law, including all manner of criminals, grifters, and con artists.
Being part of a slyborne community means you come from a group that operates outside the law, including all manner of criminals, grifters, and con artists. Members of slyborne communities are brought together by their disreputable goals and their clever means of achieving them. Many people in these communities have an array of unscrupulous skills: forging, thievery, smuggling, and violence. People of any social class can be slyborne, from those who have garnered vast wealth and influence to those without a coin to their name. To the outside eye, slyborne might appear to be ruffians with no loyalty, but these communities possess some of the strictest codes of honor which, when broken, can result in a terrifying end for the transgressor.
\nSlyborne are often calculating, clever, formidable, perceptive, shrewd, and tenacious.
", "features": [ "Compendium.daggerheart.communities.Item.ZmEuBdL0JrvuA8le" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784396, - "modifiedTime": 1754011031727, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394825710, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rGwCPMqZtky7SE6d", "sort": 3400000, diff --git a/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json index 7bd276be..7a5134c6 100644 --- a/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json +++ b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json @@ -7,19 +7,24 @@ "description": "Being part of an underborne community means you’re from a subterranean society.
Many underborne live right beneath the cities and villages of other collectives, while some live much deeper. These communities range from small family groups in burrows to massive metropolises in caverns of stone. In many locales, underborne are recognized for their incredible boldness and skill that enable great feats of architecture and engineering. Underborne are regularly hired for their bravery, as even the least daring among them has likely encountered formidable belowground beasts, and learning to dispatch such creatures is common practice amongst these societies. Because of the dangers of their environment, many underborne communities develop unique nonverbal languages that prove equally useful on the surface.
\nUnderborne are often composed, elusive, indomitable, innovative, resourceful, and unpretentious.
", "features": [ "Compendium.daggerheart.communities.Item.aMla3xQuCHEwORGD" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784398, - "modifiedTime": 1754011085731, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394833394, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "eX0I1ZNMyD3nfaL1", "sort": 3400000, diff --git a/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json index a1b03f93..465e20e3 100644 --- a/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json +++ b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json @@ -7,19 +7,24 @@ "description": "Being part of a wanderborne community means you’ve lived as a nomad, forgoing a permanent home and experiencing a wide variety of cultures.
Unlike many communities that are defined by their locale, wanderborne are defined by their traveling lifestyle. Because of their frequent migration, wanderborne put less value on the accumulation of material possessions in favor of acquiring information, skills, and connections. While some wanderborne are allied by a common ethos, such as a religion or a set of political or economic values, others come together after shared tragedy, such as the loss of their home or land. No matter the reason, the dangers posed by life on the road and the choice to continue down that road together mean that wanderborne are known for their unwavering loyalty.
\nWanderborne are often inscrutable, magnanimous, mirthful, reliable, savvy, and unorthodox.
", "features": [ "Compendium.daggerheart.communities.Item.2RSrQouA2zEJ5Xee" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784398, - "modifiedTime": 1754011123332, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394858795, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "82mDY2EIBfLkNwQj", "sort": 3400000, diff --git a/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json index 73032136..922c3fc7 100644 --- a/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json +++ b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json @@ -7,19 +7,24 @@ "description": "Being part of a wildborne community means you lived deep within the forest.
Wildborne communities are defined by their dedication to the conservation of their homelands, and many have strong religious or cultural ties to the fauna they live among. This results in unique architectural and technological advancements that favor sustainability over short-term, high-yield results. It is a hallmark of wildborne societies to integrate their villages and cities with the natural environment and avoid disturbing the lives of the plants and animals. While some construct their lodgings high in the branches of trees, others establish their homes on the ground beneath the forest canopy. It’s not uncommon for wildborne to remain reclusive and hidden within their woodland homes.
\nWildborne are often hardy, loyal, nurturing, reclusive, sagacious, and vibrant.
", "features": [ "Compendium.daggerheart.communities.Item.TQ1AIQjndC4mYmmU" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784398, - "modifiedTime": 1754011159389, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394854412, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CRJ5pzJj4FjCtIlx", "sort": 3400000, diff --git a/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json b/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json index c93811a9..223afcf6 100644 --- a/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json +++ b/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json @@ -33,7 +33,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "effects": [], "flags": {}, @@ -41,12 +46,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394895431, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json b/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json index d2c1c314..e93245f6 100644 --- a/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json +++ b/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json @@ -18,7 +18,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [], "flags": {}, @@ -26,12 +31,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754498464092, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394912698, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json b/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json index 86d1ba97..2c9028a2 100644 --- a/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json +++ b/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394946768, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json b/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json index 27dde95c..38008333 100644 --- a/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json +++ b/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394926216, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json b/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json index 605c9d7d..2e4c3507 100644 --- a/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json +++ b/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json @@ -41,7 +41,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "effects": [], "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394951501, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json b/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json index 20f015b2..a3d9912a 100644 --- a/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json +++ b/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394874830, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json b/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json index b5618477..1dd3db4f 100644 --- a/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json +++ b/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394919483, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json b/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json index 713f8f53..f3690651 100644 --- a/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json +++ b/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394904715, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json b/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json index 7fd9e397..7ef972a2 100644 --- a/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json +++ b/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394887664, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json index 2177b496..f84e8113 100644 --- a/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json +++ b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json @@ -78,6 +78,11 @@ "img": "icons/magic/light/beam-rays-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784407, - "modifiedTime": 1754304308103, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428101583, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Y08dLFuPXsgeRrHi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json b/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json index 142f6f42..e816526d 100644 --- a/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json +++ b/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json @@ -42,6 +42,11 @@ "img": "icons/magic/fire/flame-burning-hand-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784408, - "modifiedTime": 1754254353257, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428058189, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Zp2S2EnLS5Iv3XuT", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json b/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json index 64c03215..1f7f2aad 100644 --- a/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json +++ b/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json @@ -49,6 +49,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -56,12 +61,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784408, - "modifiedTime": 1754253919218, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428012661, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5PvMQKCjrgSxzstn", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json b/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json index 1bf40321..2a6789be 100644 --- a/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json +++ b/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json @@ -66,6 +66,11 @@ "img": "icons/magic/defensive/barrier-shield-dome-deflect-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784409, - "modifiedTime": 1754254134197, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428031621, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JzSvxy9Mu3RJp1jV", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json b/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json index cc33310b..bb14ed8b 100644 --- a/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json +++ b/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json @@ -77,6 +77,11 @@ "img": "icons/tools/hand/hammer-and-nail.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784409, - "modifiedTime": 1754241866049, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429881876, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cy8GjBPGc9w9RaGO", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json b/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json index a82eb0e7..1927078e 100644 --- a/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json +++ b/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json @@ -40,6 +40,11 @@ "img": "icons/magic/perception/orb-crystal-ball-scrying.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784409, - "modifiedTime": 1754342271751, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429240862, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YNOCNmZ96sCp9NEr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json index 403a8286..ce7669d5 100644 --- a/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json +++ b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json @@ -63,6 +63,11 @@ "max": "1", "icon": "fa-solid fa-hand-sparkles", "recovery": "shortRest" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784411, - "modifiedTime": 1754240991601, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429055116, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "AIbHfryMA2Rvs1ut", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json b/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json index 181e994a..0509faff 100644 --- a/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json +++ b/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json @@ -11,19 +11,24 @@ "type": "ability", "resource": null, "actions": {}, - "inVault": false + "inVault": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754067006722, - "modifiedTime": 1754337008196, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429823165, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "effects": [], "ownership": { diff --git a/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json b/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json index e3c74f7e..be928940 100644 --- a/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json +++ b/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json @@ -108,6 +108,11 @@ "img": "icons/magic/control/buff-flight-wings-runes-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -115,12 +120,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784413, - "modifiedTime": 1754304622040, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428179279, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Ef1JsUG50LIoKx2F", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json b/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json index ccd46389..3b804ddf 100644 --- a/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json +++ b/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json @@ -78,6 +78,11 @@ "img": "icons/magic/life/heart-cross-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784415, - "modifiedTime": 1754304541810, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428149693, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "NeEOghgfyDUBTwBG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json b/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json index 50cabbea..7c2f5e54 100644 --- a/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json +++ b/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json @@ -42,6 +42,11 @@ "img": "icons/magic/control/silhouette-aura-energy.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784414, - "modifiedTime": 1754304799641, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428207522, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "P0ezScyQ5t8ruByf", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json b/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json index 82a13070..f451d5cf 100644 --- a/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json +++ b/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json @@ -8,19 +8,24 @@ "domain": "blade", "recallCost": 1, "level": 7, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784416, - "modifiedTime": 1754304595818, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428164790, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Gb5bqpFSBiuBxUix", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json b/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json index 67fe9335..d211ab8f 100644 --- a/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json +++ b/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json @@ -66,6 +66,11 @@ "img": "icons/magic/symbols/runes-star-orange-purple.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784416, - "modifiedTime": 1754253600839, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427965888, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Qu0iA4s3Xov10Erd", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json b/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json index 763a4fe0..8e3ffa06 100644 --- a/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json +++ b/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json @@ -11,19 +11,24 @@ "type": "ability", "resource": null, "actions": {}, - "inVault": false + "inVault": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754067167343, - "modifiedTime": 1754241470721, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429841164, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "effects": [ { diff --git a/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json b/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json index 9c767f34..164ffb48 100644 --- a/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json +++ b/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json @@ -67,6 +67,11 @@ "img": "icons/skills/wounds/blood-cells-disease-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784418, - "modifiedTime": 1754241531537, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429846358, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tdsL00yTSLNgZWs6", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json b/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json index aa4552c5..89fac249 100644 --- a/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json +++ b/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json @@ -96,6 +96,11 @@ "img": "icons/magic/light/beam-horizon-strike-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -103,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784418, - "modifiedTime": 1754269150878, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429657284, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BNevJyGk7hmN7XOY", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json b/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json index 5932c284..d398e708 100644 --- a/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json +++ b/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json @@ -42,6 +42,11 @@ "img": "icons/magic/holy/barrier-shield-winged-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784419, - "modifiedTime": 1754252494658, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428331915, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ON5bvnoQBy0SYc9Y", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json b/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json index 2c18114e..3fa7e50c 100644 --- a/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json +++ b/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json @@ -237,6 +237,11 @@ "img": "icons/magic/water/projectile-icecicle.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -244,12 +249,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784419, - "modifiedTime": 1754228833533, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428973862, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YtZzYBtR0yLPPA93", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json b/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json index a3808a31..1073b715 100644 --- a/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json +++ b/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json @@ -160,6 +160,11 @@ "img": "icons/creatures/magical/construct-golem-stone-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -167,12 +172,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784420, - "modifiedTime": 1754240355163, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429022342, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oVs2MSC6Uf5GbgEG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json b/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json index 4b04f076..c7f334db 100644 --- a/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json +++ b/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json @@ -136,6 +136,11 @@ "img": "icons/magic/fire/barrier-wall-flame-ring-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784420, - "modifiedTime": 1754240392592, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429032715, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "R0LNheiZycZlZzV3", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json index 6869c1f0..94ff8ca7 100644 --- a/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json +++ b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json @@ -105,19 +105,24 @@ "range": "" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784421, - "modifiedTime": 1754240751151, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429070054, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gFMx08ogQ8hS2Obi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json b/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json index 91943faf..35bfe6b9 100644 --- a/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json +++ b/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json @@ -155,6 +155,11 @@ "img": "icons/magic/perception/third-eye-blue-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784421, - "modifiedTime": 1754228842497, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428980637, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "df4iRqQzRntrF6Qw", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json index d3fdb94f..be949650 100644 --- a/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json +++ b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json @@ -171,6 +171,11 @@ "img": "icons/magic/symbols/runes-star-pentagon-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -178,12 +183,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784423, - "modifiedTime": 1754230131429, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429006130, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cWRFHJdxEZ0M1dAg", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json b/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json index 70d1fc79..4db3e78f 100644 --- a/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json +++ b/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json @@ -160,6 +160,11 @@ "img": "icons/magic/fire/explosion-fireball-large-red-orange.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -167,12 +172,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784423, - "modifiedTime": 1754231026933, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429011603, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WtwSWXTRZa7QVvmo", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json b/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json index 7c0ecab0..b6f8bfcc 100644 --- a/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json +++ b/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json @@ -112,6 +112,11 @@ "img": "icons/magic/unholy/hand-light-green.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -119,12 +124,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784424, - "modifiedTime": 1754233533128, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429102985, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "SZMNR3uGNinJcN4N", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json b/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json index 594c34e1..4ee7c45c 100644 --- a/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json +++ b/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json @@ -118,6 +118,11 @@ "img": "icons/magic/control/silhouette-hold-change-green.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -125,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784424, - "modifiedTime": 1754229292338, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428993189, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "eq8VNqYMRHhF9xw9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json b/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json index ed29fd87..e974f58a 100644 --- a/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json +++ b/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json @@ -176,6 +176,11 @@ "img": "icons/magic/air/fog-gas-smoke-dense-gray.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -183,12 +188,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784426, - "modifiedTime": 1754241041570, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428986804, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1VXzwRbvbBj5bd5V", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json b/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json index a54f4c5f..28e768a2 100644 --- a/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json +++ b/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json @@ -158,6 +158,11 @@ "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -165,12 +170,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784427, - "modifiedTime": 1754240299795, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428999015, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "aknDDYtN7EObv94t", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json b/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json index e9c8dacf..b001346c 100644 --- a/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json +++ b/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json @@ -91,6 +91,11 @@ "img": "icons/magic/control/energy-stream-link-large-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -98,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784427, - "modifiedTime": 1754233138291, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429085107, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VOIgm2j2Ijszwc5m", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json b/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json index 4e1cdaf6..8cef1c1e 100644 --- a/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json +++ b/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json @@ -91,6 +91,11 @@ "img": "icons/magic/defensive/barrier-shield-dome-deflect-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -98,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784429, - "modifiedTime": 1754234029921, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429115570, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "J1ovx2FpNDvPq1o6", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json b/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json index d6438669..ebc99d4e 100644 --- a/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json +++ b/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json @@ -42,6 +42,11 @@ "img": "icons/skills/movement/arrow-upward-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784430, - "modifiedTime": 1754252472924, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428287690, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VKAHS6eWz28ukcDs", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json b/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json index 4ac9fc40..c477f555 100644 --- a/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json +++ b/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 3, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784431, - "modifiedTime": 1754249663994, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428272090, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QXs4vssSqNGQu5b8", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json b/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json index 8f440bd9..567d7d57 100644 --- a/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json +++ b/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json @@ -47,6 +47,11 @@ "img": "icons/skills/wounds/bone-broken-knee-beam.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784431, - "modifiedTime": 1754252500559, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428345979, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8UANBgSdhMZ0sqfO", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json b/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json index 84704d27..5c1132f9 100644 --- a/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json +++ b/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json @@ -147,6 +147,11 @@ "img": "icons/magic/lightning/bolt-forked-large-magenta.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -154,12 +159,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784433, - "modifiedTime": 1754253714828, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427978632, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "0kAVO6rordCfZqYP", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json b/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json index f0ffe8f8..80176175 100644 --- a/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json +++ b/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json @@ -228,6 +228,11 @@ "img": "icons/skills/melee/strike-axe-blood-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -235,12 +240,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784433, - "modifiedTime": 1754304490701, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428137797, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rnejRbUQsNGX1GMC", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json index f68ba80c..1785da8e 100644 --- a/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json +++ b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json @@ -79,6 +79,11 @@ "img": "icons/magic/control/debuff-chains-shackle-movement-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -86,12 +91,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784434, - "modifiedTime": 1754173330136, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429320800, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "R5GYUalYXLLFRlNl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json index ce88eb60..410bb313 100644 --- a/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json +++ b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json @@ -143,6 +143,11 @@ "img": "icons/magic/fire/flame-burning-earth-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -150,12 +155,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784434, - "modifiedTime": 1754475145346, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755427937789, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5EP2Lgf7ojfrc0Is", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json index 6b5f9ee9..f19833c5 100644 --- a/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json +++ b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json @@ -47,6 +47,11 @@ "img": "icons/magic/perception/shadow-stealth-eyes-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784435, - "modifiedTime": 1754254076729, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428020354, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Zhw7PtK8nMPlsOqD", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json b/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json index 2e3caa80..69c40e15 100644 --- a/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json +++ b/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json @@ -67,6 +67,11 @@ "img": "icons/magic/symbols/star-inverted-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784435, - "modifiedTime": 1754232995094, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429075701, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "7Pu83ABdMukTxu3e", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json b/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json index ee91b2fc..b4f0d1b5 100644 --- a/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json +++ b/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json @@ -117,6 +117,11 @@ "resource": { "type": "simple", "value": 0 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -124,12 +129,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784437, - "modifiedTime": 1754501480068, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428037022, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "R8NDiJXJWmC48WSr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json b/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json index 87226a85..9d243ade 100644 --- a/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json +++ b/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json @@ -181,6 +181,11 @@ "img": "icons/creatures/invertebrates/wasp-swarm-movement.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -188,12 +193,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784438, - "modifiedTime": 1754338003443, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429481288, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rZPH0BY8Sznc9sFG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json b/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json index 6c23ae92..a4361133 100644 --- a/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json +++ b/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json @@ -45,6 +45,11 @@ "img": "icons/creatures/mammals/deer-movement-leap-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784438, - "modifiedTime": 1754339195316, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429572061, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Jkp6cMDiHHaBZQRS", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json b/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json index 6e9762c6..2785ecaa 100644 --- a/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json +++ b/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json @@ -34,6 +34,11 @@ "img": "icons/magic/perception/hand-eye-black.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -41,12 +46,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784439, - "modifiedTime": 1754499898585, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429253976, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "3A7LZ1xmDEMGa165", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json b/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json index e5e4532f..ef1cd258 100644 --- a/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json +++ b/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json @@ -116,6 +116,11 @@ "img": "icons/magic/acid/dissolve-bone-white.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -123,12 +128,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784439, - "modifiedTime": 1754338276907, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429496161, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "qJaSNTuDfbPVr8Lb", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json b/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json index 63ed214d..511e4f14 100644 --- a/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json +++ b/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json @@ -57,6 +57,11 @@ "img": "icons/magic/control/hypnosis-mesmerism-watch.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784440, - "modifiedTime": 1754253523353, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427950892, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "6dhqo1kzGxejCjHa", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json b/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json index ba3c5685..747eb272 100644 --- a/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json +++ b/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json @@ -51,6 +51,11 @@ "img": "icons/magic/light/hand-sparks-glow-yellow.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -58,12 +63,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784441, - "modifiedTime": 1754241711823, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429855659, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ABp9pUfBS69NomTD", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json b/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json index 8b142a56..352e1941 100644 --- a/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json +++ b/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 7, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784442, - "modifiedTime": 1754252496659, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428338581, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "bap1eCWryPNowbyo", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json b/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json index 2e680a1a..b92f15cd 100644 --- a/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json +++ b/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json @@ -64,6 +64,11 @@ "img": "icons/magic/control/mouth-smile-deception-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -71,12 +76,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784442, - "modifiedTime": 1754331078647, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429363025, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "yL2qrSWmTwXVOySH", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json b/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json index 62b40269..df82f1aa 100644 --- a/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json +++ b/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json @@ -38,6 +38,11 @@ "img": "icons/skills/targeting/crosshair-pointed-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -45,12 +50,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784443, - "modifiedTime": 1754304260916, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428127375, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xxZOXC4tiZQ6kg1e", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json b/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json index 4341f03f..437100da 100644 --- a/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json +++ b/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json @@ -216,6 +216,11 @@ "img": "icons/magic/nature/root-vine-beanstalk-moon.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -223,12 +228,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784444, - "modifiedTime": 1754338651654, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429513441, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "x0FVGE1YbfXalJiw", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json b/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json index 4d415f76..a4e50ac7 100644 --- a/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json +++ b/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json @@ -42,6 +42,11 @@ "img": "icons/magic/movement/trail-streak-zigzag-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784445, - "modifiedTime": 1754252515126, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428374555, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xFOSn8IVVNizgHFq", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json index 0ac724a6..c55fc136 100644 --- a/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json +++ b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json @@ -45,6 +45,11 @@ "img": "icons/magic/life/heart-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784445, - "modifiedTime": 1754340779197, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429137161, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "38znCh6kHTkaPwYi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json b/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json index bdf4cbd0..1880da2e 100644 --- a/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json +++ b/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json @@ -47,6 +47,11 @@ "img": "icons/skills/movement/arrow-upward-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784446, - "modifiedTime": 1754249648390, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428242266, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dc4rAXlv95srZUct", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json b/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json index cf5c2cc0..1f229fca 100644 --- a/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json +++ b/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json @@ -58,19 +58,24 @@ "range": "far" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784447, - "modifiedTime": 1754240832214, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429109019, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kja5qvh4rdeDBB96", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json b/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json index 0c7e5530..5c97f2dc 100644 --- a/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json +++ b/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json @@ -42,6 +42,11 @@ "img": "icons/skills/trades/academics-astronomy-navigation-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784448, - "modifiedTime": 1754269593038, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429706201, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "K8oFepK24UVsAX8B", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json b/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json index 6b8cc8b1..83ebfad4 100644 --- a/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json +++ b/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json @@ -99,19 +99,24 @@ "range": "veryFar" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784449, - "modifiedTime": 1754501560924, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428045130, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "C0qLOwSSvZ6PG3Ws", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json index 855d336e..d51c23cd 100644 --- a/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json +++ b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json @@ -114,6 +114,11 @@ "img": "icons/skills/wounds/anatomy-organ-brain-pink-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -121,12 +126,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784449, - "modifiedTime": 1754331279468, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429426240, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "62Sj67PdPFzwWVe3", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json b/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json index 43b6cf22..ef4eb1ad 100644 --- a/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json +++ b/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json @@ -56,6 +56,11 @@ "img": "icons/magic/light/explosion-impact-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -63,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784450, - "modifiedTime": 1754342166865, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429267094, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "klahWDFwihqqEhXP", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json b/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json index a226b952..6c11b1b2 100644 --- a/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json +++ b/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json @@ -40,6 +40,11 @@ "img": "icons/sundries/gaming/dice-runed-tan.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784450, - "modifiedTime": 1754341790725, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429228458, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tNzFNlVHghloKsFi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json b/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json index fc87d922..5aca5a59 100644 --- a/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json +++ b/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json @@ -121,6 +121,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -128,12 +133,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784451, - "modifiedTime": 1754500747453, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429143444, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "a8lFiKX1o8T924ze", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json b/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json index fd032d37..60018023 100644 --- a/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json +++ b/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json @@ -92,6 +92,11 @@ "img": "icons/magic/light/projectiles-star-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -99,12 +104,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784452, - "modifiedTime": 1754501517016, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428063874, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "hZJp9mdkMnqKDROe", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json b/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json index 05477e79..a2c18ba5 100644 --- a/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json +++ b/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json @@ -15,6 +15,11 @@ "recovery": "longRest", "max": "", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784452, - "modifiedTime": 1754336327302, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429617500, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "F2m9wvZ3v5c3yCtv", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json index feb74897..483c6a7d 100644 --- a/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json +++ b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json @@ -33,6 +33,11 @@ "img": "icons/skills/melee/maneuver-daggers-paired-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784453, - "modifiedTime": 1754249658710, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428260608, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jSQsSP61CX4MhSN7", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json b/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json index 61cd64e6..17f4c969 100644 --- a/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json +++ b/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json @@ -57,6 +57,11 @@ "img": "icons/magic/death/undead-skeleton-fire-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784454, - "modifiedTime": 1754269243084, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429677699, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Nbw6Jnh1vRZzwHQI", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json b/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json index 1b4970d2..97a3fcf7 100644 --- a/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json +++ b/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json @@ -100,6 +100,11 @@ "value": 0, "max": "", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -107,12 +112,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784454, - "modifiedTime": 1754253557569, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427958620, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "54GUjNuBEy7xdzMz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json b/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json index 62a36dcf..17cf7e0c 100644 --- a/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json +++ b/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json @@ -38,6 +38,11 @@ "img": "icons/magic/perception/eye-tendrils-web-purple.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -45,12 +50,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784455, - "modifiedTime": 1754253473206, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427943550, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wOQLu7nLMQ7v6Ogw", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json b/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json index 5e039fb9..652a79e1 100644 --- a/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json +++ b/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json @@ -238,6 +238,11 @@ "img": "icons/consumables/potions/bottle-bulb-corked-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -245,12 +250,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784456, - "modifiedTime": 1754339631526, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429578094, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "06UapZuaA5S6fAKl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json b/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json index bf4a1e0d..ff9b1ebf 100644 --- a/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json +++ b/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json @@ -75,6 +75,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784456, - "modifiedTime": 1754340347669, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429633230, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "LzVpMkD5I4QeaIHf", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Forceful_Push_z8FFPhDh2SdFkFfS.json b/src/packs/domains/domainCard_Forceful_Push_z8FFPhDh2SdFkFfS.json index 1943eac9..3212a11c 100644 --- a/src/packs/domains/domainCard_Forceful_Push_z8FFPhDh2SdFkFfS.json +++ b/src/packs/domains/domainCard_Forceful_Push_z8FFPhDh2SdFkFfS.json @@ -48,19 +48,24 @@ } }, "resource": null, - "inVault": false + "inVault": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754067019520, - "modifiedTime": 1754241411518, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429828890, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "effects": [ { diff --git a/src/packs/domains/domainCard_Forest_Sprites_JrkUMTzaFmQNBHVm.json b/src/packs/domains/domainCard_Forest_Sprites_JrkUMTzaFmQNBHVm.json index 6b812038..a881ec6c 100644 --- a/src/packs/domains/domainCard_Forest_Sprites_JrkUMTzaFmQNBHVm.json +++ b/src/packs/domains/domainCard_Forest_Sprites_JrkUMTzaFmQNBHVm.json @@ -70,6 +70,11 @@ "img": "icons/creatures/magical/humanoid-silhouette-dashing-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -77,12 +82,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784457, - "modifiedTime": 1754339713793, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429599034, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JrkUMTzaFmQNBHVm", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json index b48a2e09..a0a58f74 100644 --- a/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json +++ b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json @@ -8,19 +8,24 @@ "domain": "blade", "recallCost": 0, "level": 4, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784458, - "modifiedTime": 1754304268859, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428132316, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oVa49lI107eZILZr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json b/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json index d8718735..87dddb15 100644 --- a/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json +++ b/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json @@ -38,6 +38,11 @@ "img": "icons/magic/fire/projectile-wave-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -45,12 +50,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784459, - "modifiedTime": 1754304635322, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428186983, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "MMl7abdGRLl7TJLO", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json b/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json index ca10655c..15ffb49e 100644 --- a/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json +++ b/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json @@ -45,6 +45,11 @@ "img": "icons/magic/control/buff-flight-wings-runes-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784460, - "modifiedTime": 1754498928489, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429931329, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "SgvjJfMyubZowPxS", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json b/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json index 91b55807..a35dcd3c 100644 --- a/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json +++ b/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json @@ -9,19 +9,24 @@ "recallCost": 1, "level": 1, "type": "ability", - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784460, - "modifiedTime": 1754304045807, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428082275, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BFWN2cObMdlk9uVz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json b/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json index a9e66110..f4cc79de 100644 --- a/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json +++ b/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json @@ -45,6 +45,11 @@ "img": "icons/magic/nature/stealth-hide-eyes-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784461, - "modifiedTime": 1754337461017, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429462909, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VZ2b4zfRzV73XTuT", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json b/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json index b01a8e00..71e1a34a 100644 --- a/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json +++ b/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json @@ -46,6 +46,11 @@ "img": "systems/daggerheart/assets/icons/domains/domain-card/blade.png", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784462, - "modifiedTime": 1754304608102, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428170369, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "nCNCqSH7UgW4O3To", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json b/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json index 99b6b683..d630e5f7 100644 --- a/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json +++ b/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json @@ -70,6 +70,11 @@ "img": "icons/magic/symbols/runes-triangle-blue.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -77,12 +82,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784463, - "modifiedTime": 1754330838174, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429335032, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "B5HXqYRJiL3xMNKT", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json b/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json index 03c1b5e0..9066a308 100644 --- a/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json +++ b/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json @@ -87,6 +87,11 @@ "img": "icons/magic/control/mouth-smile-deception-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784464, - "modifiedTime": 1754241738411, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429869259, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HufF5KzuNfEb9RTi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json b/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json index 6c8de699..bfb91236 100644 --- a/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json +++ b/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json @@ -146,6 +146,11 @@ "img": "icons/magic/holy/barrier-shield-winged-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -153,12 +158,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784464, - "modifiedTime": 1754304753469, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428195100, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "3zvjgZ5Od343wHzx", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json index f1d82163..2a59fb30 100644 --- a/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json +++ b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json @@ -92,6 +92,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -99,12 +104,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784465, - "modifiedTime": 1754341871438, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429233975, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "KAuNb51AwhD8KEXk", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json b/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json index 4e603ff8..02091c6c 100644 --- a/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json +++ b/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json @@ -91,6 +91,11 @@ "img": "icons/magic/earth/barrier-stone-brown-green.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -98,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784466, - "modifiedTime": 1754242257735, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429937836, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WnGldYhJPDhx8v9X", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json b/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json index a9b0561d..d97dea73 100644 --- a/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json +++ b/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json @@ -175,6 +175,11 @@ "max": "1", "icon": "", "progression": "decreasing" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -182,12 +187,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784466, - "modifiedTime": 1754499077474, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429518847, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "GlRm1Dxlc0Z1b04o", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json b/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json index a7aeb6b2..2f626025 100644 --- a/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json +++ b/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json @@ -370,6 +370,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -377,12 +382,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784467, - "modifiedTime": 1754269408742, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429684407, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WTlhnQMajc1r8i50", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json b/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json index 6c3dd4fd..76af7794 100644 --- a/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json +++ b/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json @@ -87,6 +87,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-green.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784468, - "modifiedTime": 1754269824514, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429756749, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XtSc0jIJLOoMTMYS", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json b/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json index 0ab4d205..b572243f 100644 --- a/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json +++ b/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json @@ -73,6 +73,11 @@ "img": "icons/magic/defensive/shield-barrier-blue.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784468, - "modifiedTime": 1754242400496, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429945423, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kdFoLo3KXwn4LqTG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json b/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json index 93dfbf97..f60aaf26 100644 --- a/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json +++ b/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json @@ -70,6 +70,11 @@ "img": "icons/magic/unholy/orb-glowing-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -77,12 +82,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784470, - "modifiedTime": 1754331001689, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429348547, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gwmYasmfgXZ7tFS6", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json b/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json index a221859c..7579ac02 100644 --- a/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json +++ b/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json @@ -88,6 +88,11 @@ "img": "icons/magic/control/hypnosis-mesmerism-swirl.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -95,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784471, - "modifiedTime": 1754341315075, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429167606, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2ZeuCGVatQdPOVC6", "sort": 3400000, diff --git a/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json b/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json index 1699800f..866589a1 100644 --- a/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json +++ b/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json @@ -42,19 +42,24 @@ } }, "resource": null, - "inVault": false + "inVault": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754067020844, - "modifiedTime": 1754241453261, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429834425, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "effects": [], "ownership": { diff --git a/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json b/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json index 0960839a..0633f0e3 100644 --- a/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json +++ b/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json @@ -66,6 +66,11 @@ "img": "icons/skills/melee/maneuver-sword-katana-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784472, - "modifiedTime": 1754249651973, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428247643, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Kp6RejHGimnuoBom", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json b/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json index 78718d6b..18afea52 100644 --- a/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json +++ b/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json @@ -8,19 +8,24 @@ "domain": "valor", "recallCost": 1, "level": 6, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784472, - "modifiedTime": 1754242058119, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429896649, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XTT8c8uJ4D7fvtbL", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json b/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json index 424b08b7..ceb386d3 100644 --- a/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json +++ b/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json @@ -243,6 +243,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -250,12 +255,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784473, - "modifiedTime": 1754499693699, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429148644, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cWu1o82ZF7GvnbXc", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json b/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json index 9bdf44e7..e655d21b 100644 --- a/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json +++ b/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json @@ -66,6 +66,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784474, - "modifiedTime": 1754270049868, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429801608, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "X8OfkEoI5gLTRf1B", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Invisibility_KHkzA4Zrw8EWN1CH.json b/src/packs/domains/domainCard_Invisibility_KHkzA4Zrw8EWN1CH.json index a0bff97c..ac5337f1 100644 --- a/src/packs/domains/domainCard_Invisibility_KHkzA4Zrw8EWN1CH.json +++ b/src/packs/domains/domainCard_Invisibility_KHkzA4Zrw8EWN1CH.json @@ -76,6 +76,11 @@ "value": 0, "max": "@cast", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784475, - "modifiedTime": 1754341402828, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429172642, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "KHkzA4Zrw8EWN1CH", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json index 53ef85a7..2a86115c 100644 --- a/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json +++ b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json @@ -98,6 +98,11 @@ "img": "icons/magic/perception/eye-ringed-glow-angry-small-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784475, - "modifiedTime": 1754252480391, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428299138, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "O38MQMhJWdZnXi6b", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json b/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json index 67f8e04c..fa6f3c10 100644 --- a/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json +++ b/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json @@ -45,6 +45,11 @@ "img": "icons/magic/control/buff-flight-wings-runes-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784475, - "modifiedTime": 1754242464667, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429951881, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YWCRplmtwpCjpq5i", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json b/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json index aecbe898..73bfee2b 100644 --- a/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json +++ b/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json @@ -77,6 +77,11 @@ "img": "icons/magic/life/heart-cross-strong-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784477, - "modifiedTime": 1754241703151, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429861185, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BdePs1ZWpZTZvY1Z", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json b/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json index 78b2ec5e..1c680cd4 100644 --- a/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json +++ b/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json @@ -47,6 +47,11 @@ "img": "icons/magic/defensive/shield-barrier-deflect-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784478, - "modifiedTime": 1754269642386, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429712212, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "OszbCj0jTqq2ADx9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json b/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json index acb35822..077ea5d0 100644 --- a/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json +++ b/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json @@ -66,6 +66,11 @@ "img": "icons/magic/symbols/ring-circle-smoke-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784479, - "modifiedTime": 1754240697822, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429040215, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TtGOtWkbr23VhHfH", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json b/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json index 76ea0d6b..050a47a0 100644 --- a/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json +++ b/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json @@ -37,6 +37,11 @@ "img": "icons/skills/social/diplomacy-unity-alliance.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784480, - "modifiedTime": 1754331105670, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429370519, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dT95m0Jam8sWbeuC", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json b/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json index 2713e2c7..29da4453 100644 --- a/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json +++ b/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json @@ -121,6 +121,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -128,12 +133,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784481, - "modifiedTime": 1754499825008, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429247535, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ubpixIgZrJXKyM3b", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json b/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json index 8ab75989..148ce05a 100644 --- a/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json +++ b/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json @@ -8,19 +8,24 @@ "domain": "grace", "recallCost": 0, "level": 9, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784482, - "modifiedTime": 1754229084018, - "lastModifiedBy": "l5jB3XmcVXOTQpRZ" + "modifiedTime": 1755429259836, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "yAGTwXHUC3qxpTeK", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json b/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json index 437adffc..12940038 100644 --- a/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json +++ b/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json @@ -342,6 +342,11 @@ "max": "1", "icon": "fa-solid fa-hands-praying", "recovery": "longRest" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -349,12 +354,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784482, - "modifiedTime": 1754498631054, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429662900, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TGjR4vJVNbQRV8zr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json b/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json index 701f912d..7809506f 100644 --- a/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json +++ b/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json @@ -121,6 +121,11 @@ "img": "icons/creatures/magical/spirit-undead-ghost-purple.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -128,12 +133,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784482, - "modifiedTime": 1754330630881, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429306955, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "FXLsB3QbQvTtqX5B", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json b/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json index 7a06e78e..ac120ef6 100644 --- a/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json +++ b/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json @@ -107,6 +107,11 @@ "img": "icons/skills/wounds/anatomy-organ-brain-pink-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -114,12 +119,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784484, - "modifiedTime": 1754331118511, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429376821, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uSyGKVxOJcnp28po", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json b/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json index 97da5875..974ea647 100644 --- a/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json +++ b/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json @@ -122,6 +122,11 @@ "img": "icons/magic/perception/eye-ringed-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -129,12 +134,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784485, - "modifiedTime": 1754338204263, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429486873, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Tag303LoRNC5zGgl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json b/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json index ed754e5c..d290126d 100644 --- a/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json +++ b/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json @@ -91,6 +91,11 @@ "img": "icons/magic/nature/beam-hand-leaves-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -98,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784485, - "modifiedTime": 1754337595015, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429468262, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "atWLorlCOxcrq8WB", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json b/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json index b53b635d..5549707f 100644 --- a/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json +++ b/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json @@ -184,6 +184,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -191,12 +196,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784486, - "modifiedTime": 1754341729669, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429215057, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "McdncxmO9K1YNP7Y", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json b/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json index cb538eb1..c2abcab4 100644 --- a/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json +++ b/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json @@ -121,19 +121,24 @@ "range": "" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784487, - "modifiedTime": 1754499654051, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429413469, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "zcldCuqOg3dphUVI", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json b/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json index 56abe99f..6d7acdf5 100644 --- a/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json +++ b/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json @@ -8,19 +8,24 @@ "domain": "blade", "recallCost": 1, "level": 1, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784487, - "modifiedTime": 1754244517328, - "lastModifiedBy": "l5jB3XmcVXOTQpRZ" + "modifiedTime": 1755428087961, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xheQZOIYp0ERQhT9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json index aad731ff..7f9244dc 100644 --- a/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json +++ b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json @@ -40,6 +40,11 @@ "img": "icons/magic/light/explosion-star-glow-silhouette.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784489, - "modifiedTime": 1754342229231, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429273228, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "IqxzvvjZiYbgx21A", "sort": 3400000, diff --git a/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json b/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json index b6f6548f..c6978859 100644 --- a/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json +++ b/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 9, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784489, - "modifiedTime": 1754252507659, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428361099, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "zbxPl81kbWEegKQN", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json b/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json index 0d924ef2..79fe6211 100644 --- a/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json +++ b/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json @@ -46,6 +46,11 @@ "img": "icons/skills/melee/strike-axe-blood-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784490, - "modifiedTime": 1754304817948, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428212614, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "I7pNsQ9Yx6mRJX4V", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json b/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json index 68abefea..72a79735 100644 --- a/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json +++ b/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json @@ -71,6 +71,11 @@ "img": "icons/magic/holy/angel-winged-humanoid-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784491, - "modifiedTime": 1754270006714, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429784343, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "iEBLySZD9z8CLdz7", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json b/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json index 7e58df93..43c2d220 100644 --- a/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json +++ b/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json @@ -70,6 +70,11 @@ "img": "icons/magic/control/silhouette-hold-beam-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -77,12 +82,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784491, - "modifiedTime": 1754331063221, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429354517, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "0vdpIn06ifF3xxqZ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json b/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json index 23e477a9..8556feb3 100644 --- a/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json +++ b/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json @@ -8,19 +8,24 @@ "domain": "midnight", "recallCost": 0, "level": 1, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784492, - "modifiedTime": 1754330601777, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429286495, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HdgZUfWd7Hyj7nBW", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json b/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json index 8176850e..665a7af9 100644 --- a/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json +++ b/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json @@ -57,6 +57,11 @@ "img": "icons/magic/nature/tree-elm-roots-brown.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784493, - "modifiedTime": 1754499238543, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429623471, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9a6xP5pxhVvdugk9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json b/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json index 8a590089..5ec9f9b8 100644 --- a/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json +++ b/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json @@ -49,6 +49,11 @@ "recovery": "longRest", "max": "1", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -56,12 +61,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784494, - "modifiedTime": 1754253731528, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427986895, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "aC43NiFQLpOADyjO", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json b/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json index 2460130f..9240a534 100644 --- a/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json +++ b/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json @@ -84,6 +84,11 @@ "img": "icons/magic/air/air-pressure-shield-blue.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -91,12 +96,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784495, - "modifiedTime": 1754253657439, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427971834, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1p1cOmbnRd5CoKBp", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json b/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json index b11bd6f9..d9d67737 100644 --- a/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json +++ b/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json @@ -84,6 +84,11 @@ "img": "icons/magic/control/silhouette-aura-energy.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -91,12 +96,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784496, - "modifiedTime": 1754445106667, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428155116, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "GRL0cvs96vrTDckZ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json index 7327a44e..630960f4 100644 --- a/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json +++ b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json @@ -140,6 +140,11 @@ "img": "icons/skills/melee/spear-tips-three-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -147,12 +152,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784497, - "modifiedTime": 1754330607042, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429293162, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Ucenef6JpjQxwXni", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json b/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json index e2f248c7..6da00db8 100644 --- a/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json +++ b/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json @@ -42,6 +42,11 @@ "img": "icons/skills/melee/maneuver-greatsword-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784497, - "modifiedTime": 1754252487558, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428316589, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tceJDcCUefrMS2Ov", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json b/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json index 201005a1..0bc016be 100644 --- a/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json +++ b/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json @@ -66,6 +66,11 @@ "img": "icons/skills/melee/strike-axe-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784498, - "modifiedTime": 1754304768446, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428200348, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "MCgNRlh0s5XUPCfl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json b/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json index 43c17e96..87ec672e 100644 --- a/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json +++ b/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json @@ -33,6 +33,11 @@ "img": "icons/sundries/gaming/dice-pair-white-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784499, - "modifiedTime": 1754498645559, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429669557, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "iYNVTB7uAD1FTCZu", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json b/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json index 7e6d927a..28847ad5 100644 --- a/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json +++ b/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json @@ -42,6 +42,11 @@ "img": "icons/magic/control/silhouette-aura-energy.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784500, - "modifiedTime": 1754304322191, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428107078, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2ooUo2yoilGifY81", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json b/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json index 8b491d49..963abf97 100644 --- a/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json +++ b/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json @@ -38,6 +38,11 @@ "img": "icons/magic/life/cross-beam-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -45,12 +50,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784500, - "modifiedTime": 1754252490411, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428322053, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gsiQFT6q3WOgqerJ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json b/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json index 85a952c3..c30bfb3c 100644 --- a/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json +++ b/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json @@ -42,6 +42,11 @@ "img": "icons/skills/melee/sword-twirl-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784500, - "modifiedTime": 1754252475141, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428292852, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "faU0XkJCbar69PiN", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json b/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json index 4d910604..1ab77475 100644 --- a/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json +++ b/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json @@ -82,6 +82,11 @@ "img": "icons/magic/nature/leaf-hand-green.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -89,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784502, - "modifiedTime": 1754499308449, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429606994, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HtWx5IIemCoorMj2", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json index c75e8ca6..89ebb736 100644 --- a/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json +++ b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json @@ -204,6 +204,11 @@ "img": "icons/magic/light/beam-rays-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -211,12 +216,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784502, - "modifiedTime": 1754498742091, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429742185, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wUQFsRtww18naYaq", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json index 7d580ff9..02c742ef 100644 --- a/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json +++ b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json @@ -104,6 +104,11 @@ "img": "icons/sundries/gaming/dice-runed-brown.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -111,12 +116,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784503, - "modifiedTime": 1754270120120, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429807372, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "z30ciOwQI7g3tHla", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json index 476e9534..76313434 100644 --- a/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json +++ b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json @@ -57,6 +57,11 @@ "img": "icons/magic/earth/projectile-stone-bullet-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784503, - "modifiedTime": 1754253784334, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427997569, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "vd5STqX29RpYbGxa", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json index d7c8c618..964b5736 100644 --- a/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json +++ b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json @@ -77,6 +77,11 @@ "img": "icons/magic/life/heart-cross-strong-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784504, - "modifiedTime": 1754242078238, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429903155, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oDIZoC4l19Nli0Fj", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json b/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json index 47aa96d1..99c411fe 100644 --- a/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json +++ b/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json @@ -32,6 +32,11 @@ "img": "icons/magic/light/hand-sparks-glow-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -39,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784506, - "modifiedTime": 1754242030472, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429887417, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "pcbYD33rBBdAo5f9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json b/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json index ea33cfcb..5e45f832 100644 --- a/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json +++ b/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json @@ -64,6 +64,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-pink-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -71,12 +76,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784506, - "modifiedTime": 1754253212120, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427506566, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "GEhBUmv9Bj7oJfHk", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json index 3f84099c..2ab645bd 100644 --- a/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json +++ b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json @@ -45,6 +45,11 @@ "img": "icons/environment/settlement/watchtower-moonlit-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784506, - "modifiedTime": 1754233292265, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429092085, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "lmBLMPuR8qLbuzNf", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json b/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json index 3f172c21..625ed0d0 100644 --- a/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json +++ b/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json @@ -87,6 +87,11 @@ "max": "1", "icon": "", "recovery": "shortRest" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784507, - "modifiedTime": 1754339963905, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429585605, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VOSFaQHZbmhMyXwi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json b/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json index 0d799f82..baaba0a6 100644 --- a/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json +++ b/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json @@ -87,6 +87,11 @@ "img": "icons/magic/light/beams-rays-orange-purple-large.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784508, - "modifiedTime": 1754270031835, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429792958, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "4uAFGp3LxiC07woC", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json b/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json index 5ca6fc07..77b1b0c8 100644 --- a/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json +++ b/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json @@ -33,6 +33,11 @@ "img": "icons/skills/movement/feet-winged-boots-brown.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784509, - "modifiedTime": 1754304188850, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428115458, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5bBU9jWHOuOY12lR", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json b/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json index 07b037d6..90756d98 100644 --- a/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json +++ b/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json @@ -171,6 +171,11 @@ "recovery": "shortRest", "max": "1", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -178,12 +183,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784509, - "modifiedTime": 1754269533170, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429692907, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ffPbSEvLuFrFsMxl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json b/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json index 227ab463..9e0e7f67 100644 --- a/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json +++ b/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json @@ -57,6 +57,11 @@ "img": "icons/magic/control/debuff-energy-hold-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784511, - "modifiedTime": 1754254316744, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428050507, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gZOMzskSOfeiXn54", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json b/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json index 000a1b1f..25277259 100644 --- a/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json +++ b/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json @@ -61,6 +61,11 @@ "img": "icons/magic/control/debuff-energy-snare-blue.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784512, - "modifiedTime": 1754499502570, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429312498, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kguhWlidhxe2GbT0", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json b/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json index 1b1639fd..e76637df 100644 --- a/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json +++ b/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json @@ -9,19 +9,24 @@ "recallCost": 2, "level": 8, "type": "ability", - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784513, - "modifiedTime": 1754331190370, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429396600, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "A0XzD6MmBXYdk7Ps", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json b/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json index c4eb21a0..87f8bb7a 100644 --- a/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json +++ b/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json @@ -42,6 +42,11 @@ "img": "icons/commodities/stone/geode-raw-white.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784514, - "modifiedTime": 1754269669897, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429726392, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "db4xV3YErHRslbVE", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json b/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json index 62c4de86..202a4e58 100644 --- a/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json +++ b/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json @@ -33,6 +33,11 @@ "img": "systems/daggerheart/assets/icons/domains/domain-card/grace.png", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784515, - "modifiedTime": 1754499760780, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429220432, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8nRle10pw1HO8QVu", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json b/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json index ea63ca5a..e03eaf12 100644 --- a/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json +++ b/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json @@ -47,6 +47,11 @@ "img": "icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784516, - "modifiedTime": 1754269891393, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429770054, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rfIv6lln40Fh6EIl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json index 2b7ccf04..d61473c9 100644 --- a/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json +++ b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json @@ -65,6 +65,11 @@ "img": "icons/magic/defensive/shield-barrier-deflect-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -72,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784516, - "modifiedTime": 1754242112465, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429912530, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JwfhtgmmuRxg4zhI", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json b/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json index cd3e81b3..edb6588b 100644 --- a/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json +++ b/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json @@ -44,6 +44,11 @@ "img": "icons/magic/symbols/triangle-glow-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784517, - "modifiedTime": 1754232249140, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429062367, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "RiuN0lMlfoTAhLJz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json b/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json index 29ab1f5c..b429259a 100644 --- a/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json +++ b/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 5, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784518, - "modifiedTime": 1754252482524, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428307837, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "LWRkhNY968Cu2Zl5", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json b/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json index 939fff19..245db4a2 100644 --- a/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json +++ b/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json @@ -47,6 +47,11 @@ "img": "icons/skills/melee/sword-winged-holy-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784519, - "modifiedTime": 1754498725946, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429734196, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "U1uWJE94HZVudujz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json b/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json index 73bef395..f7520c6c 100644 --- a/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json +++ b/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json @@ -144,6 +144,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -151,12 +156,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784519, - "modifiedTime": 1754341467905, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429180273, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QED2PDYePOSTbLtC", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json b/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json index a5ba7cae..02d43c56 100644 --- a/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json +++ b/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json @@ -45,6 +45,11 @@ "img": "icons/magic/unholy/silhouette-light-fire-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784520, - "modifiedTime": 1754331335651, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429431607, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "iQhgqmLwhcSTYnvr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json b/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json index 651fe897..c0b78538 100644 --- a/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json +++ b/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json @@ -46,6 +46,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784521, - "modifiedTime": 1754331207737, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429406322, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ewhIzXQ2h9fS9I8c", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json b/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json index 0772f92b..03d39a92 100644 --- a/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json +++ b/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json @@ -8,19 +8,24 @@ "domain": "splendor", "recallCost": 2, "level": 7, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784522, - "modifiedTime": 1754268980895, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429762596, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JT5dM3gVL6chDBYU", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json b/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json index ed3d5f4c..20f8deca 100644 --- a/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json +++ b/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json @@ -66,6 +66,11 @@ "img": "icons/skills/melee/strike-sword-steel-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784522, - "modifiedTime": 1754501075258, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428367184, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TYKfM3H9vBXyWiH4", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json b/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json index a19143c9..f5a140d6 100644 --- a/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json +++ b/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json @@ -40,6 +40,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784523, - "modifiedTime": 1754330848539, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429340856, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "NIUhmuQGwbb3UClZ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json b/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json index ae4ab09d..b984da10 100644 --- a/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json +++ b/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json @@ -50,6 +50,11 @@ "img": "icons/skills/targeting/crosshair-arrowhead-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -57,12 +62,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784523, - "modifiedTime": 1754501630846, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428265451, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5b1awkgTmMp3FVrm", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json b/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json index b601a08d..103765e3 100644 --- a/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json +++ b/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json @@ -152,6 +152,11 @@ "img": "icons/magic/light/beam-strike-village-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -159,12 +164,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784524, - "modifiedTime": 1754269929319, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429776475, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "lRHo6ZkK1zybeEoG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json b/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json index 04c3c64c..1d5f2cf7 100644 --- a/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json +++ b/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json @@ -40,6 +40,11 @@ "img": "icons/magic/holy/barrier-shield-winged-blue.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784525, - "modifiedTime": 1754241759840, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429875110, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "stId5syX7YpP2JGz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json b/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json index 0dc8c2c9..cc2a4a10 100644 --- a/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json +++ b/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json @@ -146,6 +146,11 @@ "img": "icons/magic/life/cross-beam-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -153,12 +158,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784526, - "modifiedTime": 1754252518993, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428380396, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "H6TqCJBaa1eWEQ1z", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json b/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json index bcd56d25..eb3546f1 100644 --- a/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json +++ b/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 3, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784526, - "modifiedTime": 1754249669078, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428277274, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WChWEH36lUpXAC0K", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json b/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json index 22a7d347..cffac839 100644 --- a/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json +++ b/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json @@ -131,6 +131,11 @@ "img": "icons/magic/control/energy-stream-link-spiral-blue.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -138,12 +143,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784527, - "modifiedTime": 1754253886885, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428003177, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "FgzBppvLjXr0UbUI", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json b/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json index e1569b1a..9e4e39ec 100644 --- a/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json +++ b/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json @@ -56,6 +56,11 @@ "img": "icons/magic/movement/pinwheel-turning-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -63,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784528, - "modifiedTime": 1754231629691, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429045982, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HnPwVrWblYa9hwSt", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json index f25819c7..b1fef374 100644 --- a/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json +++ b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json @@ -82,6 +82,11 @@ "img": "icons/magic/control/voodoo-doll-pain-damage-red.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -89,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784529, - "modifiedTime": 1754341185897, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429155562, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HTv9QEPS466WsstP", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json b/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json index 71d1dc6a..69161e38 100644 --- a/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json +++ b/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json @@ -244,6 +244,11 @@ "img": "icons/magic/air/air-wave-gust-smoke-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -251,12 +256,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784530, - "modifiedTime": 1754340540933, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429646639, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "X7YaZgFieBlqaPdZ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json b/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json index 6aca1471..6c56de38 100644 --- a/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json +++ b/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json @@ -78,6 +78,11 @@ "max": "@cast", "icon": "", "dieFaces": "d6" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784531, - "modifiedTime": 1754338832102, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429528391, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oUipGK84E2KjoKqh", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json index 3717b810..ed0e7184 100644 --- a/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json +++ b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json @@ -91,6 +91,11 @@ "img": "icons/magic/control/fear-fright-shadow-monster-purple.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -98,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784532, - "modifiedTime": 1754341613759, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429199741, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "B4choj481tqajWb9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json b/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json index 4c3d2611..03c43739 100644 --- a/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json +++ b/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json @@ -37,6 +37,11 @@ "img": "icons/magic/perception/eye-slit-pink.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784533, - "modifiedTime": 1754341493606, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429187901, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "7b0mzV5QMPjVPT4o", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json b/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json index 124144a8..a4ab4541 100644 --- a/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json +++ b/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json @@ -130,19 +130,24 @@ "range": "" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784534, - "modifiedTime": 1754499113867, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429505289, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "n0P3VS1WfxvmXbB6", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json b/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json index 10ef5d47..91539c93 100644 --- a/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json +++ b/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json @@ -47,6 +47,11 @@ "img": "icons/magic/light/explosion-beam-impact-silhouette.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784534, - "modifiedTime": 1754240901607, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429121503, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kVkoCLBXLAIifqpz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json b/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json index 5bcd3482..9d8e3db8 100644 --- a/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json +++ b/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json @@ -83,6 +83,11 @@ "img": "icons/magic/control/fear-fright-monster-purple-blue.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -90,12 +95,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784535, - "modifiedTime": 1754341260325, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429160838, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JrdZedm1BFKeV7Yb", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json b/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json index c4c06be8..620e0558 100644 --- a/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json +++ b/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json @@ -76,6 +76,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-blue.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784535, - "modifiedTime": 1754331253303, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429419135, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "SDjjV61TC1NceV1m", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json index 3d06e736..d79fa2a7 100644 --- a/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json +++ b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json @@ -56,6 +56,11 @@ "img": "icons/magic/life/heart-cross-strong-flame-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -63,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784536, - "modifiedTime": 1754242513278, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429961365, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CUIQmrPjf9VCHmwJ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json b/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json index a90187c0..1d0456ce 100644 --- a/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json +++ b/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json @@ -77,6 +77,11 @@ "value": 0, "max": "@cast", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784537, - "modifiedTime": 1754330615594, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429298602, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TV56wSysbU5xAlOa", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json index 17f934d6..8137b243 100644 --- a/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json +++ b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json @@ -133,6 +133,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -140,12 +145,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784537, - "modifiedTime": 1754501257508, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755427920648, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "o62i0QdbUDIiAhSq", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json index 89b4cbee..548f9eee 100644 --- a/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json +++ b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 1, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784538, - "modifiedTime": 1754249654207, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428252550, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9QElncQUDSakuSdR", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json b/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json index a5b3ed83..2c991d8d 100644 --- a/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json +++ b/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json @@ -8,19 +8,24 @@ "domain": "valor", "recallCost": 1, "level": 10, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784538, - "modifiedTime": 1754242525301, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429967098, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "s3zRsOMeUkuDwgd8", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json b/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json index ec66bbd6..8ff2e41a 100644 --- a/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json +++ b/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json @@ -77,6 +77,11 @@ "img": "icons/equipment/chest/breastplate-collared-steel-grey.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784539, - "modifiedTime": 1754242143242, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429918794, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "k1AtYd3lSchIymBr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json b/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json index 1d9e2108..29ba6f90 100644 --- a/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json +++ b/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json @@ -45,6 +45,11 @@ "img": "icons/magic/perception/shadow-stealth-eyes-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784539, - "modifiedTime": 1754331169719, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429382850, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "GBMIElIpk4cvk1Bd", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json b/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json index 917c2e93..3e0a4623 100644 --- a/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json +++ b/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json @@ -61,6 +61,11 @@ "img": "icons/magic/unholy/barrier-shield-glowing-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784541, - "modifiedTime": 1754173368653, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429328234, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gV4L5ZZmfPrEbIDh", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json b/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json index c8134c0c..6d4db3d1 100644 --- a/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json +++ b/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json @@ -42,6 +42,11 @@ "img": "icons/magic/control/silhouette-aura-energy.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784541, - "modifiedTime": 1754304293769, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428120598, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wQ53ImDswEHv5SGQ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json b/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json index cedcec36..042cb330 100644 --- a/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json +++ b/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json @@ -123,6 +123,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -130,12 +135,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784541, - "modifiedTime": 1754338467256, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429474482, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "qvpvTnkAoRn9vYO4", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json b/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json index 3e41ae1a..6d85b5b5 100644 --- a/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json +++ b/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json @@ -46,6 +46,11 @@ "img": "systems/daggerheart/assets/icons/domains/domain-card/blade.png", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784542, - "modifiedTime": 1754304501280, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428142811, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "sWUlSPOJEaXyQLCj", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json b/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json index 481caddf..dd661b1e 100644 --- a/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json +++ b/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json @@ -8,19 +8,24 @@ "domain": "splendor", "recallCost": 1, "level": 3, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784542, - "modifiedTime": 1754268954870, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429699193, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "t3RRGH6mMYYJJCcF", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json b/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json index e4c48b0e..0b32e34d 100644 --- a/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json +++ b/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json @@ -47,6 +47,11 @@ "img": "icons/creatures/invertebrates/spider-pink-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784543, - "modifiedTime": 1754253399849, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427927041, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1ROT08E1UVBwHLAS", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json b/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json index a6013aa6..a4614046 100644 --- a/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json +++ b/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json @@ -42,6 +42,11 @@ "img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -49,12 +54,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784545, - "modifiedTime": 1754304354572, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428093764, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "anO0arioUy7I5zBg", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json b/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json index 69bc5bc8..57c0fd94 100644 --- a/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json +++ b/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json @@ -71,6 +71,11 @@ "value": 0, "max": "3", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784546, - "modifiedTime": 1754339127606, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429562599, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9dFvcM1i3bxG3BSA", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json b/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json index 269139cf..06eb5b84 100644 --- a/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json +++ b/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json @@ -46,6 +46,11 @@ "img": "icons/magic/control/debuff-energy-hold-levitate-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784547, - "modifiedTime": 1754499199811, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429591650, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "DjnKlZQYaWdQGKcK", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json index b1e6aaa2..86f046c2 100644 --- a/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json +++ b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json @@ -87,6 +87,11 @@ "img": "icons/skills/melee/strike-axe-energy-pink.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784548, - "modifiedTime": 1754341685992, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429205496, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ZjAdi1FSNCDDHI3X", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json index 76b17134..30e8cb4e 100644 --- a/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json +++ b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json @@ -57,6 +57,11 @@ "img": "icons/skills/melee/sword-engraved-glow-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784549, - "modifiedTime": 1754252503293, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428352791, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9DwSxHoUwl8Kxj3n", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json b/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json index c712284d..3e5b643c 100644 --- a/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json +++ b/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json @@ -58,19 +58,24 @@ "range": "far" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784549, - "modifiedTime": 1754498786877, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429748542, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "lOZaRb4fCVgQsWB5", "sort": 3400000, diff --git a/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json b/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json index 1f1d5722..9e855978 100644 --- a/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json +++ b/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json @@ -1,6 +1,6 @@ { "name": "Abandoned Grove", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -27,19 +27,24 @@ "tier": 1, "description": "A former druidic grove lying fallow and fully reclaimed by nature.
", "type": "exploration", - "impulses": "Draw in the curious, echo the past" + "impulses": "Draw in the curious, echo the past", + "attribution": { + "source": "Daggerheart SRD", + "page": 103, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784553, - "modifiedTime": 1754208922163, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890228, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "pGEdzdLkqYtBhxnG", "sort": 3400000, @@ -55,7 +60,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "AbominationVaults.webp", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json index a705fa2d..7135bd42 100644 --- a/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json +++ b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json @@ -1,6 +1,6 @@ { "name": "Ambushed", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -10,19 +10,24 @@ "tier": 1, "description": "An ambush is set to catch an unsuspecting party off-guard.
", "type": "event", - "impulses": "Overwhelm, scatter, surround" + "impulses": "Overwhelm, scatter, surround", + "attribution": { + "source": "Daggerheart SRD", + "page": 103, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784553, - "modifiedTime": 1754211171895, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890231, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uGEdNYERCTJBEjc5", "sort": 3400000, @@ -38,7 +43,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json index 3a8e3092..6510bc5c 100644 --- a/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json +++ b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json @@ -1,6 +1,6 @@ { "name": "Ambushers", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -10,19 +10,24 @@ "tier": 1, "description": "An ambush is set by the PCs to catch unsuspecting adversaries off-guard.
", "type": "event", - "impulses": "Escape, group up, protect the most vulnerable" + "impulses": "Escape, group up, protect the most vulnerable", + "attribution": { + "source": "Daggerheart SRD", + "page": 103, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784554, - "modifiedTime": 1754211550898, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890234, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uXZpebPR77YQ1oXI", "sort": 3400000, @@ -38,7 +43,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json b/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json index a1949373..5683f6f5 100644 --- a/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json +++ b/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json @@ -1,6 +1,6 @@ { "name": "Burning Heart of the Woods", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "MfrIkJK12PAEfbPL", "system": { @@ -32,19 +32,24 @@ "tier": 3, "description": "Thick indigo ash fills the air around a towering moss-covered tree that burns eternally with flames a sickly shade of blue.
", "type": "exploration", - "impulses": "Beat out an uncanny rhythm for all to follow, corrupt the woods" + "impulses": "Beat out an uncanny rhythm for all to follow, corrupt the woods", + "attribution": { + "source": "Daggerheart SRD", + "page": 108, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784554, - "modifiedTime": 1754218065764, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890258, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oY69NN4rYxoRE4hl", "sort": 3400000, @@ -60,7 +65,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json index f68ad8fd..11b458c1 100644 --- a/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json +++ b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json @@ -1,6 +1,6 @@ { "name": "Bustling Marketplace", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -25,19 +25,24 @@ "tier": 1, "description": "The economic heart of the settlement, with local artisans, traveling merchants, and patrons across social classes.
", "type": "social", - "impulses": "Buy low, and sell high, tempt and tantalize with wares from near and far" + "impulses": "Buy low, and sell high, tempt and tantalize with wares from near and far", + "attribution": { + "source": "Daggerheart SRD", + "page": 104, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784554, - "modifiedTime": 1754212085334, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890236, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HZKA7hkej7JJY503", "sort": 3400000, @@ -53,7 +58,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json index 1739e6bd..88d9096e 100644 --- a/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json +++ b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json @@ -1,6 +1,6 @@ { "name": "Castle Siege", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "MfrIkJK12PAEfbPL", "system": { @@ -29,19 +29,24 @@ "tier": 3, "description": "An active siege with an attacking force fighting to gain entry to a fortified castle.
", "type": "event", - "impulses": "Bleed out the will to fi ght, breach the walls, build tension" + "impulses": "Bleed out the will to fi ght, breach the walls, build tension", + "attribution": { + "source": "Daggerheart SRD", + "page": 109, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784555, - "modifiedTime": 1754218654354, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890261, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1eZ32Esq7rfZOjlu", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json index fe3f3349..d31300b5 100644 --- a/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json +++ b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json @@ -1,6 +1,6 @@ { "name": "Chaos Realm", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "IKumu5HTLqONLYqb", "system": { @@ -19,19 +19,24 @@ "tier": 4, "description": "An otherworldly space where the laws of reality are unstable and dangerous.
", "type": "traversal", - "impulses": "Annihilate certainty, consume power, defy logic" + "impulses": "Annihilate certainty, consume power, defy logic", + "attribution": { + "source": "Daggerheart SRD", + "page": 110, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784556, - "modifiedTime": 1754219630584, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890266, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2Z1mKc65LxNk2PqR", "sort": 3400000, @@ -47,7 +52,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json index 67a6e7ea..43a0f61f 100644 --- a/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json +++ b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json @@ -1,6 +1,6 @@ { "name": "Cliffside Ascent", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -20,19 +20,24 @@ "tier": 1, "description": "A steep, rocky cliffside tall enough to make traversal dangerous.
", "type": "traversal", - "impulses": "Cast the unready down to a rocky doom, draw people in with promise of what lies at the top" + "impulses": "Cast the unready down to a rocky doom, draw people in with promise of what lies at the top", + "attribution": { + "source": "Daggerheart SRD", + "page": 104, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784557, - "modifiedTime": 1754212638870, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890238, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "LPpfdlNKqiZIl04w", "sort": 3400000, @@ -48,7 +53,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json index a1d1ed38..ded1d14f 100644 --- a/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json +++ b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json @@ -1,6 +1,6 @@ { "name": "Cult Ritual", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -20,19 +20,24 @@ "tier": 2, "description": "A Fallen cult assembles around a sigil of the defeated gods and a bonfire that burns a sickly shade of green.
", "type": "event", - "impulses": "Profane the land, unite the Mortal Realm with the Circles Below" + "impulses": "Profane the land, unite the Mortal Realm with the Circles Below", + "attribution": { + "source": "Daggerheart SRD", + "page": 106, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784557, - "modifiedTime": 1754215595854, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890248, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QAXXiOKBDmCTauHD", "sort": 3400000, @@ -48,7 +53,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json index c0b9e8e8..b924328f 100644 --- a/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json +++ b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json @@ -1,6 +1,6 @@ { "name": "Divine Usurpation", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "IKumu5HTLqONLYqb", "system": { @@ -21,19 +21,24 @@ "tier": 4, "description": "A massive ritual designed to breach the gates of the Hallows Above and unseat the New Gods themselves.
", "type": "event", - "impulses": "Collect power, overawe, silence dissent" + "impulses": "Collect power, overawe, silence dissent", + "attribution": { + "source": "Daggerheart SRD", + "page": 110, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784558, - "modifiedTime": 1754220432059, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890271, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "4DLYez7VbMCFDAuZ", "sort": 3400000, @@ -49,7 +54,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json index 745414dc..8eed0247 100644 --- a/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json +++ b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json @@ -1,6 +1,6 @@ { "name": "Hallowed Temple", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -19,19 +19,24 @@ "tier": 2, "description": "A bustling but well-kept temple that provides healing and hosts regular services, overseen by a priest or seraph.
", "type": "social", - "impulses": "Connect the Mortal Realm with the Hallows Above, display the power of the divine, provide aid and succor to the faithful" + "impulses": "Connect the Mortal Realm with the Hallows Above, display the power of the divine, provide aid and succor to the faithful", + "attribution": { + "source": "Daggerheart SRD", + "page": 107, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784558, - "modifiedTime": 1754216032747, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890251, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dsA6j69AnaJhUyqH", "sort": 3400000, @@ -47,7 +52,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json index 11c98e66..0653ae50 100644 --- a/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json +++ b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json @@ -1,6 +1,6 @@ { "name": "Haunted City", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -19,19 +19,24 @@ "tier": 2, "description": "An abandoned city populated by the restless spirits of eras past.
", "type": "exploration", - "impulses": "Misdirect and disorient, replay apocalypses both public and personal" + "impulses": "Misdirect and disorient, replay apocalypses both public and personal", + "attribution": { + "source": "Daggerheart SRD", + "page": 107, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784559, - "modifiedTime": 1754216926766, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890253, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "OzYbizKraK92FDiI", "sort": 3400000, @@ -47,7 +52,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json index ab2c1ef8..1a9888f1 100644 --- a/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json +++ b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json @@ -1,6 +1,6 @@ { "name": "Imperial Court", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "IKumu5HTLqONLYqb", "system": { @@ -21,19 +21,24 @@ "tier": 4, "description": "The majestic domain of a powerful empire, lavishly appointed with stolen treasures.
", "type": "social", - "impulses": "Justify and perpetuate imperial rule, seduce rivals with promises of power and comfort" + "impulses": "Justify and perpetuate imperial rule, seduce rivals with promises of power and comfort", + "attribution": { + "source": "Daggerheart SRD", + "page": 111, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784559, - "modifiedTime": 1754220962410, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890268, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jr1xAoXzVwVblzxI", "sort": 3400000, @@ -49,7 +54,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json index cb440aab..1bc1c17f 100644 --- a/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json +++ b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json @@ -1,6 +1,6 @@ { "name": "Local Tavern", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -33,19 +33,24 @@ "tier": 1, "description": "A lively tavern that serves as the social hub for its town.
", "type": "social", - "impulses": "Provide opportunities for adventurers, nurture community" + "impulses": "Provide opportunities for adventurers, nurture community", + "attribution": { + "source": "Daggerheart SRD", + "page": 105, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784561, - "modifiedTime": 1754213299544, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890240, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cM4X81DOyvxNIi52", "sort": 3400000, @@ -61,7 +66,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json index e2a31c41..85e442e1 100644 --- a/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json +++ b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json @@ -1,6 +1,6 @@ { "name": "Mountain Pass", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -27,19 +27,24 @@ "tier": 2, "description": "Stony peaks that pierce the clouds, with a twisting path winding its way up and over through many switchbacks.
", "type": "traversal", - "impulses": "Exact a chilling toll in supplies and stamina, reveal magical tampering, slow down travel" + "impulses": "Exact a chilling toll in supplies and stamina, reveal magical tampering, slow down travel", + "attribution": { + "source": "Daggerheart SRD", + "page": 108, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784562, - "modifiedTime": 1754217303533, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890256, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "acMu9wJrMZZzLSTJ", "sort": 3400000, @@ -55,7 +60,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json b/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json index 5afc9db6..dc76c382 100644 --- a/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json +++ b/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json @@ -1,6 +1,6 @@ { "name": "Necromancer’s Ossuary", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "IKumu5HTLqONLYqb", "system": { @@ -18,19 +18,24 @@ "tier": 4, "description": "A dusty crypt with a library, twisting corridors, and abundant sarcophagi, spattered with the blood of ill-fated invaders.
", "type": "exploration", - "impulses": "Confound intruders, delve into secrets best left buried, manifest unlife, unleash a tide of undead" + "impulses": "Confound intruders, delve into secrets best left buried, manifest unlife, unleash a tide of undead", + "attribution": { + "source": "Daggerheart SRD", + "page": 111, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784563, - "modifiedTime": 1754221404218, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890275, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "h3KyRL7AshhLAmcH", "sort": 3400000, @@ -46,7 +51,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json index 8e58b6a8..ef961283 100644 --- a/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json +++ b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json @@ -1,6 +1,6 @@ { "name": "Outpost Town", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -29,19 +29,24 @@ "tier": 1, "description": "A small town on the outskirts of a nation or region, close to a dungeon, tombs, or other adventuring destinations.
", "type": "social", - "impulses": "Drive the desperate to certain doom, profi t off of ragged hope" + "impulses": "Drive the desperate to certain doom, profi t off of ragged hope", + "attribution": { + "source": "Daggerheart SRD", + "page": 105, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784564, - "modifiedTime": 1754213845896, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890243, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YezryR32uo39xRxW", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json index 3db3d3b6..abd838dd 100644 --- a/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json +++ b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json @@ -1,6 +1,6 @@ { "name": "Pitched Battle", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "MfrIkJK12PAEfbPL", "system": { @@ -29,19 +29,24 @@ "tier": 3, "description": "A massive combat between two large groups of armed combatants.
", "type": "event", - "impulses": "Seize people, land, and wealth, spill blood for greed and glory" + "impulses": "Seize people, land, and wealth, spill blood for greed and glory", + "attribution": { + "source": "Daggerheart SRD", + "page": 109, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784565, - "modifiedTime": 1754219040722, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890264, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "EWD3ZsLoK6VMVOf7", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json index 211c619a..47ec74e2 100644 --- a/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json +++ b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json @@ -1,6 +1,6 @@ { "name": "Raging River", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -29,19 +29,24 @@ "tier": 1, "description": "A swift-moving river without a bridge crossing, deep enough to sweep away most people.
", "type": "traversal", - "impulses": "Bar crossing, carry away the unready, divide the land" + "impulses": "Bar crossing, carry away the unready, divide the land", + "attribution": { + "source": "Daggerheart SRD", + "page": 106, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784565, - "modifiedTime": 1754214189395, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890245, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "t4cdqTfzcqP3H1vJ", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json index 96a2edd7..c5155cb4 100644 --- a/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json +++ b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 13, "severe": 31 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807810859, - "modifiedTime": 1753807844642, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431740693, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LzLOJ9EVaHWAjoq9" } diff --git a/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json b/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json index 4d97b8bb..4946d733 100644 --- a/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json +++ b/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 15, "severe": 35 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809204693, - "modifiedTime": 1753809243349, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431745995, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!crIbCb9NZ4K0VpoU" } diff --git a/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json b/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json index 032ebe6d..74ea9cf7 100644 --- a/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json +++ b/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 9, "severe": 23 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807704469, - "modifiedTime": 1753807740230, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431751044, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!epkAmlZVk7HOfUUT" } diff --git a/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json b/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json index ef9d64f9..2c2699a6 100644 --- a/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json +++ b/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 11, "severe": 27 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807744573, - "modifiedTime": 1753807795515, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431757894, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!itSOp2GCyem0f7oM" } diff --git a/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json b/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json index fb4bad0e..a3d805ed 100644 --- a/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json +++ b/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 11, "severe": 27 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807855787, - "modifiedTime": 1753807887685, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431768795, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WuoVwZA53XRAIt6d" } diff --git a/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json b/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json index 60521ffc..2c4d0b5b 100644 --- a/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json +++ b/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 16, "severe": 39 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808752024, - "modifiedTime": 1753808787752, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431763662, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mNN6pvcsS10ChrWF" } diff --git a/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json b/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json index f7d07f32..2c2df8c9 100644 --- a/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json +++ b/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 7, "severe": 15 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805286605, - "modifiedTime": 1753805329039, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431648072, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!haULhuEg37zUUvhb" } diff --git a/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json b/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json index 3d795985..efae1b77 100644 --- a/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json +++ b/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809433880, - "modifiedTime": 1753809460722, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431807296, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vMJxEWz1srfwMsoj" } diff --git a/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json b/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json index 52002171..33924bf9 100644 --- a/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json +++ b/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json @@ -56,6 +56,11 @@ "baseThresholds": { "major": 11, "severe": 27 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -69,12 +74,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807902750, - "modifiedTime": 1753809495490, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431776878, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mdQ69eFHyAQUDmE7" } diff --git a/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json b/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json index 9a6b1baa..4b08aa31 100644 --- a/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json +++ b/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json @@ -80,6 +80,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -93,12 +98,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809264956, - "modifiedTime": 1753809422818, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431812730, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hAY6UgdGT7dj22Pr" } diff --git a/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json b/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json index 0825a7a1..8a395b4a 100644 --- a/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json +++ b/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 9, "severe": 21 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805557786, - "modifiedTime": 1753805605453, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431672675, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Q6LxmtFetDDkoZVZ" } diff --git a/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json b/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json index 3c471a93..2dfb8b29 100644 --- a/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json +++ b/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json @@ -79,6 +79,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -94,10 +99,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753809470138, - "modifiedTime": 1754853048367, - "lastModifiedBy": "7zAk0CoP90J7ebn0" + "modifiedTime": 1755431817865, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bcQUh4QG3qFX0Vx6" } diff --git a/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json b/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json index 73ecfc96..7b2820b4 100644 --- a/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json +++ b/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 15, "severe": 40 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809653710, - "modifiedTime": 1753809691935, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431822964, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7emTSt6nhZuTlvt5" } diff --git a/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json b/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json index 4b45cf7e..14d9257d 100644 --- a/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json +++ b/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 8, "severe": 17 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805338471, - "modifiedTime": 1753805365355, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431655405, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!UdUJNa31WxFW2noa" } diff --git a/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json b/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json index c51838e0..c02ddd6f 100644 --- a/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json +++ b/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 5, "severe": 11 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753804995685, - "modifiedTime": 1753805399875, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431660555, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yJFp1bfpecDcStVK" } diff --git a/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json b/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json index 85dd7864..efb272fe 100644 --- a/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json +++ b/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json @@ -72,6 +72,11 @@ "baseThresholds": { "major": 9, "severe": 21 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805616349, - "modifiedTime": 1753807254838, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431677692, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dvyQeUVRLc9y6rnt" } diff --git a/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json b/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json index 62648557..e39f7ebf 100644 --- a/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json +++ b/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 11, "severe": 24 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805490635, - "modifiedTime": 1753805512828, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431684575, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!K5WkjS0NGqHYmhU3" } diff --git a/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json b/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json index 7e5e36df..3d2355fc 100644 --- a/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json +++ b/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 13, "severe": 28 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805522506, - "modifiedTime": 1753805544375, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431689873, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9f7RozpPTqrzJS1m" } diff --git a/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json b/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json index 8c6a8f2c..b16a0219 100644 --- a/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json +++ b/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 7, "severe": 16 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805377869, - "modifiedTime": 1753805418921, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431695440, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jphnMZjnS2FkOH3s" } diff --git a/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json b/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json index 4d225093..9794cf70 100644 --- a/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json +++ b/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 9, "severe": 20 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805428821, - "modifiedTime": 1753805482906, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431701475, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!t91M61pSCMKStTNt" } diff --git a/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json b/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json index 71ad95a9..4fa628b4 100644 --- a/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json +++ b/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 9, "severe": 20 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -90,12 +95,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807283589, - "modifiedTime": 1753807455497, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431706974, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tzZntboNtHL5C6VM" } diff --git a/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json b/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json index 1d87a030..32e577c0 100644 --- a/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json +++ b/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 6, "severe": 13 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805219679, - "modifiedTime": 1753805275427, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431666089, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nibfdNtp2PtxvbVz" } diff --git a/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json b/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json index 1192b4d5..b61b613c 100644 --- a/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json +++ b/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 15, "severe": 40 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809118507, - "modifiedTime": 1753809151454, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431827865, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EsIN5OLKe9ZYFNXZ" } diff --git a/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json b/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json index 5b2d4a97..1459709a 100644 --- a/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json +++ b/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 17, "severe": 44 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809163051, - "modifiedTime": 1753809225793, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431832881, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SXWjUR2aUR6bYvdl" } diff --git a/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json b/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json index e05e5f32..7b425421 100644 --- a/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json +++ b/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 11, "severe": 32 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809031184, - "modifiedTime": 1753809064934, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431838049, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!c6tMXz4rPf9ioQrf" } diff --git a/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json b/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json index 9dc82529..c456bc79 100644 --- a/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json +++ b/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809078323, - "modifiedTime": 1753809106203, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431845786, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Tptgl5WOj76TyFn7" } diff --git a/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json b/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json index 0cc3415d..ed64499f 100644 --- a/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json +++ b/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 16, "severe": 39 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808797896, - "modifiedTime": 1753808820623, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431781312, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!AQzU2RsqS5V5bd1v" } diff --git a/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json b/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json index a0cb99f1..48eb7fde 100644 --- a/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json +++ b/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json @@ -48,6 +48,11 @@ "baseThresholds": { "major": 11, "severe": 23 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -61,12 +66,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807654078, - "modifiedTime": 1753807692793, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431712574, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tN8kAeBvNKM3EBFo" } diff --git a/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json b/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json index 33fef2f5..ab892847 100644 --- a/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json +++ b/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json @@ -56,6 +56,11 @@ "baseThresholds": { "major": 17, "severe": 43 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -69,12 +74,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808832397, - "modifiedTime": 1753809018449, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431788295, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!P4qAEDJUoNLgVRsA" } diff --git a/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json b/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json index df5cb28f..1edf8517 100644 --- a/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json +++ b/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json @@ -56,6 +56,11 @@ "baseThresholds": { "major": 9, "severe": 20 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -69,12 +74,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807528637, - "modifiedTime": 1753808232404, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431718527, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tHlBUDQC24YMZqd6" } diff --git a/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json b/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json index 4d8ccfa6..78689fcf 100644 --- a/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json +++ b/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 18, "severe": 48 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -108,12 +113,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809733405, - "modifiedTime": 1753809762536, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431850849, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8X16lJQ3xltTwynm" } diff --git a/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json b/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json index 07536704..c744b0b1 100644 --- a/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json +++ b/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 10, "severe": 25 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808464678, - "modifiedTime": 1753808691813, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431794279, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QjwsIhXKqnlvRBMv" } diff --git a/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json b/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json index ae9c849b..60da770c 100644 --- a/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json +++ b/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json @@ -48,6 +48,11 @@ "baseThresholds": { "major": 8, "severe": 18 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -61,12 +66,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807607742, - "modifiedTime": 1753807646156, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431725559, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PSW3BxCGmtLeWOxM" } diff --git a/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json b/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json index 44f644b0..829c3e40 100644 --- a/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json +++ b/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json @@ -48,6 +48,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -61,12 +66,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809706360, - "modifiedTime": 1753809725217, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431856135, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OvzgUTYy2RCN85vV" } diff --git a/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json b/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json index 78da26af..e092929a 100644 --- a/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json +++ b/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590344700, - "modifiedTime": 1754394373835, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432861888, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cfVFmS8vT9dbq9s1" } diff --git a/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json b/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json index 20aeeb50..62049319 100644 --- a/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json +++ b/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json @@ -38,7 +38,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588973384, - "modifiedTime": 1754394381368, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432710896, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!VlbsCjvvLNfTzNXb" } diff --git a/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json b/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json index 39f74078..9e316540 100644 --- a/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json +++ b/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587033468, - "modifiedTime": 1754394388974, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432536588, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!JGD3M9hBHtVAA8XP" } diff --git a/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json b/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json index 0913fb6d..e0e2eb55 100644 --- a/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json +++ b/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json @@ -35,7 +35,12 @@ "range": "close" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -89,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592512731, - "modifiedTime": 1754394410769, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433077981, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!eAXHdzA5qNPldOpn" } diff --git a/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json b/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json index 103b102f..a1b70dc6 100644 --- a/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json +++ b/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589954973, - "modifiedTime": 1754394423870, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432804800, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!pDGzmczoTlKGmKgd" } diff --git a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json index 0c33a50e..7519c7ab 100644 --- a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json +++ b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753586850134, - "modifiedTime": 1754394431654, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432522101, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FOPQNqXbiVO0ilYL" } diff --git a/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json b/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json index 61b0fb2f..64984603 100644 --- a/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json +++ b/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592033119, - "modifiedTime": 1754394442471, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433017227, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PfQvqopXgvroBklL" } diff --git a/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json b/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json index a03ba6fe..6a199792 100644 --- a/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json +++ b/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591685990, - "modifiedTime": 1754394450971, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432982976, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!RrIasiMCt6mqVTps" } diff --git a/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json b/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json index c93bb512..76e8833a 100644 --- a/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json +++ b/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590192533, - "modifiedTime": 1754394463123, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432844735, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IKMVQ6VwtapwoUim" } diff --git a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json index 26e03cb2..46e8f8e6 100644 --- a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json +++ b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587097370, - "modifiedTime": 1754394471027, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432545153, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CVBbFfOY75YwyQsp" } diff --git a/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json b/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json index cdbae661..aa4917eb 100644 --- a/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json +++ b/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json @@ -38,7 +38,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590692159, - "modifiedTime": 1754394477728, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432898488, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!elsyP6VhHw1JjGSl" } diff --git a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json index f158628e..17fc697d 100644 --- a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json +++ b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753586944889, - "modifiedTime": 1754394484407, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432529169, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!eeBhZSGLjuNZuJuI" } diff --git a/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json b/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json index b7d636bc..e0b8a28c 100644 --- a/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json +++ b/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592717630, - "modifiedTime": 1754394494474, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433085832, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xDnJeF1grkmKck8Q" } diff --git a/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json b/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json index da89cf7a..9389ca85 100644 --- a/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json +++ b/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json @@ -79,7 +79,12 @@ "range": "close" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -93,12 +98,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591525829, - "modifiedTime": 1753591674720, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432974525, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wM18PWWW2Ami4fBG" } diff --git a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json index fa9da4cf..81c57691 100644 --- a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json +++ b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json @@ -61,7 +61,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590938047, - "modifiedTime": 1754394503675, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432918239, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!eU8VpbWB2NHIL47n" } diff --git a/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json b/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json index 08ba032e..87be77e4 100644 --- a/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json +++ b/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587185754, - "modifiedTime": 1754394512375, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432555520, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!aWHSO2AqDufi7nL4" } diff --git a/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json b/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json index 79a7a676..e463d5c3 100644 --- a/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json +++ b/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json @@ -124,7 +124,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -138,12 +143,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591925502, - "modifiedTime": 1754394521825, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433009779, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!aX6NyxkNzu0LcJpt" } diff --git a/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json b/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json index 7b4816a5..31a5b7fd 100644 --- a/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json +++ b/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590624634, - "modifiedTime": 1754394529842, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432889504, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DpxEMpwfasEBpORU" } diff --git a/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json b/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json index 33130fd2..5e770de0 100644 --- a/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json +++ b/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589241094, - "modifiedTime": 1754394537845, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432719146, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Nvbb9mze6o5D0AEg" } diff --git a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json index ba7fd727..e2150bed 100644 --- a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json +++ b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -101,12 +106,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587386639, - "modifiedTime": 1754394547827, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432584688, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8WkhvSzeOmLdnoLJ" } diff --git a/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json b/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json index ad36fe3e..055fd275 100644 --- a/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json +++ b/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -100,12 +105,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592174440, - "modifiedTime": 1754394557196, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433036930, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fl2f3ees8RFMze9t" } diff --git a/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json b/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json index 4279f73c..22afde4d 100644 --- a/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json +++ b/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json @@ -74,7 +74,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588839527, - "modifiedTime": 1754394566378, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432692443, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Aruc2NLutWuVIjP1" } diff --git a/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json b/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json index 7aa146d4..9f814705 100644 --- a/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json +++ b/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589998065, - "modifiedTime": 1754394576928, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432817234, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!VSwa1LpQ9PjZKsWF" } diff --git a/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json b/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json index 9747d8d2..75c96d1b 100644 --- a/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json +++ b/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590388618, - "modifiedTime": 1754394599463, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432869271, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EhaQCPJ8oiqpRIwB" } diff --git a/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json b/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json index dc86564b..2319ae44 100644 --- a/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json +++ b/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json @@ -81,7 +81,12 @@ "range": "far" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -95,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589403341, - "modifiedTime": 1754394607830, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432739380, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nQTo6mNoPTEVBtkm" } diff --git a/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json b/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json index 9b1ac237..1ad9bdb4 100644 --- a/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json +++ b/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -101,12 +106,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588170670, - "modifiedTime": 1754394620213, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432643893, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BqBWXXe9T07AMV4u" } diff --git a/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json b/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json index df45fcf2..cff7849b 100644 --- a/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json +++ b/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json @@ -61,7 +61,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591372075, - "modifiedTime": 1754394648049, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432964594, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yUol6M5b8jsbk9za" } diff --git a/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json b/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json index bbe9e1a4..352c229d 100644 --- a/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json +++ b/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588566489, - "modifiedTime": 1754394659649, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432674260, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!c2putn9apuurJhWX" } diff --git a/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json b/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json index 02a13b6c..17a2992e 100644 --- a/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json +++ b/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592240392, - "modifiedTime": 1754394668583, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433061047, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nL9IALzm9BNi5oSt" } diff --git a/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json b/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json index ff722381..002bd46d 100644 --- a/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json +++ b/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json @@ -79,7 +79,12 @@ "range": "far" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -93,12 +98,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590515261, - "modifiedTime": 1754394676288, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432877237, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!AA7bmiwv00lshPrC" } diff --git a/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json b/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json index 63b3dfbf..127bcd72 100644 --- a/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json +++ b/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589747286, - "modifiedTime": 1754394684950, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432778983, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CCPFm5iXXwvyYYwR" } diff --git a/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json b/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json index 58b988f9..90d28bc8 100644 --- a/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json +++ b/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589623872, - "modifiedTime": 1754394694337, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432764001, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mnyQDRtngWWQeRXF" } diff --git a/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json b/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json index 65c01549..8d5d83c6 100644 --- a/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json +++ b/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589816684, - "modifiedTime": 1754394702935, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432785816, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IJLAUlQymbSjzsri" } diff --git a/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json b/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json index ff85d8ed..dfab73ea 100644 --- a/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json +++ b/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589675185, - "modifiedTime": 1754394710253, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432772014, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!80s1FLmTLtohZ5GH" } diff --git a/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json b/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json index d2b26b03..c51237fc 100644 --- a/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json +++ b/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589874661, - "modifiedTime": 1754394718504, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432794986, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SDdv1G2veMLKrxcJ" } diff --git a/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json b/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json index 454373f8..49d0f6f7 100644 --- a/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json +++ b/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json @@ -74,7 +74,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591046168, - "modifiedTime": 1754394726288, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432927907, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cM7pHe8bBAxSZ2xR" } diff --git a/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json b/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json index 12ce1a3d..f28faa25 100644 --- a/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json +++ b/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json @@ -74,7 +74,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591113317, - "modifiedTime": 1754394330048, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432935058, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!I4cQ03xbxnc81EGa" } diff --git a/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json b/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json index a88a1c48..80dcead1 100644 --- a/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json +++ b/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589545730, - "modifiedTime": 1754394734536, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432751630, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yK6eEDUrsPbZA8G0" } diff --git a/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json b/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json index 8e6ebe0a..bc7bb074 100644 --- a/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json +++ b/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json @@ -74,7 +74,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587253431, - "modifiedTime": 1754394742922, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432566654, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tPfKtKRRjv8qdSqy" } diff --git a/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json b/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json index b8944384..b4bd2a2c 100644 --- a/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json +++ b/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json @@ -74,7 +74,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587324465, - "modifiedTime": 1754394346717, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432574155, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!b6vGSPFWOlzZZDLO" } diff --git a/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json b/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json index caa7a36d..1415d195 100644 --- a/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json +++ b/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json @@ -38,7 +38,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -52,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592792213, - "modifiedTime": 1754394753189, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433095534, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!UFQVwgYOUZ88UxcH" } diff --git a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json index 5c6bfa94..ce16c984 100644 --- a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json +++ b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json @@ -43,7 +43,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -102,12 +107,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588254032, - "modifiedTime": 1754394761890, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432657276, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!f1NHVSIHJJCIOaBl" } diff --git a/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json b/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json index 1201b838..f720881e 100644 --- a/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json +++ b/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -101,12 +106,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590241722, - "modifiedTime": 1754394769155, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432854453, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Zsh2AvZr8EkGtLyw" } diff --git a/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json b/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json index 2e3f60d4..38ef8357 100644 --- a/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json +++ b/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591168468, - "modifiedTime": 1754394777490, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432944044, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!qr1bosjFcUfuwq4B" } diff --git a/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json b/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json index 990cb6eb..41b29bdf 100644 --- a/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json +++ b/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -100,12 +105,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588038000, - "modifiedTime": 1754394786974, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432626825, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dvL8oaxpEF6jKvYN" } diff --git a/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json b/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json index 41408713..e14b5524 100644 --- a/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json +++ b/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -101,12 +106,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590061810, - "modifiedTime": 1754394793758, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432828838, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!s2Exl2XFuoOhtIov" } diff --git a/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json b/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json index 8488df22..68681ddd 100644 --- a/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json +++ b/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753589306667, - "modifiedTime": 1754394802909, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432726696, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yJkwz4AP6yhGo8Vj" } diff --git a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json index 95e84b30..f2336545 100644 --- a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json +++ b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -100,12 +105,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592077792, - "modifiedTime": 1754394810891, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433027028, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HGixKenQwhyRAYNk" } diff --git a/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json b/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json index 9ac76466..a397074b 100644 --- a/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json +++ b/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json @@ -75,7 +75,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -89,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591837472, - "modifiedTime": 1754394819077, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432997515, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XZavUVlHEvE2srEt" } diff --git a/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json b/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json index 5edcef3d..86879588 100644 --- a/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json +++ b/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json @@ -83,7 +83,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -97,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588752841, - "modifiedTime": 1754394825942, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432682259, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cg6VtQ0eVZjDdcK0" } diff --git a/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json b/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json index 3fc1c15d..8837f815 100644 --- a/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json +++ b/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json @@ -74,7 +74,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588904835, - "modifiedTime": 1754394357617, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432700497, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hf3k1POoVSooJyN2" } diff --git a/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json b/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json index cd30d320..7d6bf0cd 100644 --- a/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json +++ b/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json @@ -61,7 +61,12 @@ "range": "veryFar" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -75,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592933782, - "modifiedTime": 1754394853714, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433102382, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!y4c1jrlHrf0wBWOq" } diff --git a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json index b28dd0c7..3849ac0d 100644 --- a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json +++ b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753585993187, - "modifiedTime": 1754394862377, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432512018, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!lNtcrkgFGOJNaroE" } diff --git a/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json b/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json index d9e28567..3ee1ec60 100644 --- a/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json +++ b/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json @@ -54,7 +54,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753590791260, - "modifiedTime": 1754394871161, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432908523, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!kwexUzdM9wm1Qums" } diff --git a/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json b/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json index 25780390..8dac2f79 100644 --- a/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json +++ b/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json @@ -140,7 +140,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -154,12 +159,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753592391195, - "modifiedTime": 1754394899780, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755433069335, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GrDrRqWgv7gvl9vn" } diff --git a/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json b/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json index 33e77c66..ab941d10 100644 --- a/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json +++ b/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json @@ -81,7 +81,12 @@ "range": "far" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -95,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587732694, - "modifiedTime": 1754394908763, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432611972, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mUepnLbkvFk0ha4Z" } diff --git a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json index 20d2ddea..aef91404 100644 --- a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json +++ b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json @@ -75,7 +75,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -89,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587484164, - "modifiedTime": 1754394924546, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432594538, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hvy5BkG3F6iOIXTx" } diff --git a/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json b/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json index b65c1dec..56957a44 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json +++ b/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json @@ -30,7 +30,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753588345314, - "modifiedTime": 1754394933247, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432665859, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Nwv5ydGf0MWnzq1n" } diff --git a/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json b/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json index 3f318842..26dc7ede 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json +++ b/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753587590537, - "modifiedTime": 1754394940997, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432602190, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!VqEX5YwK5oL3r1t6" } diff --git a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json index f07a6fc9..32552f86 100644 --- a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json +++ b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json @@ -35,7 +35,12 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753591283853, - "modifiedTime": 1754394949465, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432952411, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!n10vozlmosVR6lo4" } diff --git a/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json b/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json index fbfe3800..3f368be7 100644 --- a/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json +++ b/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json @@ -29,6 +29,11 @@ "img": "icons/equipment/neck/amulet-carved-stone-spiral-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638435202, - "modifiedTime": 1753638500393, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432212303, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cTYvyaSKBxosM9Y9" } diff --git a/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json b/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json index 8e77f2bb..dc8c30e4 100644 --- a/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json +++ b/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json @@ -6,7 +6,12 @@ "system": { "description": "You can light this magic torch at will. The flame’s light fills a much larger space than it should, enough to illuminate a cave bright as day.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625181140, - "modifiedTime": 1753625205417, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431934319, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MeEg57T6MKpw3sme" } diff --git a/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json b/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json index c8b3c168..bf0a7352 100644 --- a/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json +++ b/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json @@ -6,7 +6,12 @@ "system": { "description": "A creature with a Spellcast trait wearing this cloak can adjust its color, texture, and size at will.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625371758, - "modifiedTime": 1753625392529, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431960072, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4STt98biZwjFoKOe" } diff --git a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json index b1fa3700..dc3376cb 100644 --- a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json +++ b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json @@ -34,6 +34,11 @@ "img": "icons/commodities/gems/gem-faceted-trillion-blue.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [ @@ -93,12 +98,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626536923, - "modifiedTime": 1753989088942, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432045259, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Mn1eo2Mdtu1kzyxB" } diff --git a/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json b/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json index 59909fa7..3473c512 100644 --- a/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json +++ b/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Instinct. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639587267, - "modifiedTime": 1753639733198, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432312623, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vK6bKyQTT3m8WvMh" } diff --git a/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json b/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json index 767dc8e0..69817496 100644 --- a/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json +++ b/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json @@ -58,6 +58,11 @@ "img": "icons/containers/bags/pouch-cloth-tan.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [ @@ -119,12 +124,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637946114, - "modifiedTime": 1753989248198, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432176800, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!v758j4FwNVAurhYK" } diff --git a/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json b/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json index 717f4024..acd9ffee 100644 --- a/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json +++ b/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json @@ -37,6 +37,11 @@ "img": "icons/equipment/waist/belt-buckle-ornate-steel.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" } }, "effects": [], @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640971116, - "modifiedTime": 1753641065768, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432474549, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!gFzkUGCjkRJtyoe9" } diff --git a/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json b/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json index f5a19dff..52a85f8a 100644 --- a/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json +++ b/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this stone to a weapon that doesn’t already have a feature. The weapon gains the following feature.
Brutal: When you roll the maximum value on a damage die, roll an additional damage die.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637532005, - "modifiedTime": 1753637570344, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432124214, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oMd78vhL2x2NO8Mg" } diff --git a/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json b/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json index 695b8a1c..719d3a37 100644 --- a/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json +++ b/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Strength. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639461783, - "modifiedTime": 1753639473676, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432292506, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!m3EpxlDgxn2tCDDR" } diff --git a/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json b/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json index 3112c665..ee305349 100644 --- a/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json +++ b/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json @@ -53,6 +53,11 @@ "img": "icons/containers/boxes/crate-heavy-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -67,12 +72,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638361357, - "modifiedTime": 1753989365853, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432203301, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bZyT7Qw7iafswlTY" } diff --git a/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json b/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json index 82a1078a..8ba9f0bc 100644 --- a/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json +++ b/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json @@ -53,6 +53,11 @@ "img": "icons/equipment/neck/amulet-round-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -67,12 +72,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637842111, - "modifiedTime": 1753989405747, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432160633, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tgFFMxpuRSiRrrEB" } diff --git a/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json b/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json index 19ef04c7..5bff2a6b 100644 --- a/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json +++ b/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json @@ -6,7 +6,12 @@ "system": { "description": "When you succeed on an attack with an arrow stored in this quiver, gain a bonus to the damage roll equal to your current tier.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [ { @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625025089, - "modifiedTime": 1753989432098, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431911218, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!gsUDP90d4SRtLEUn" } diff --git a/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json b/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json index a1c80a2b..419c7b1d 100644 --- a/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json +++ b/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Presence. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639686831, - "modifiedTime": 1753639719586, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432321075, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9P9jqGSlxVCbTdLe" } diff --git a/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json b/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json index d60c928c..e45c91b0 100644 --- a/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json +++ b/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json @@ -6,7 +6,12 @@ "system": { "description": "When you sculpt this ball of clay into a clay animal companion, it behaves as that animal. For example, a clay spider can spin clay webs, while a clay bird can fly. The clay companion retains memory and identity across different shapes, but they can adopt new mannerisms with each form.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640057300, - "modifiedTime": 1753640276057, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432384479, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!lGIk9vBNz0jvskXD" } diff --git a/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json b/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json index 65854d4c..94b37cc8 100644 --- a/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json +++ b/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json @@ -6,7 +6,12 @@ "system": { "description": "This case can fit a small animal companion. While the companion is inside, the animal and case are immune to all damage and harmful effects.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625898190, - "modifiedTime": 1753625935379, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432012809, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!V25uXkAQvK3hUta4" } diff --git a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json index 9245934b..b2c0b796 100644 --- a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json +++ b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Finesse. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639492071, - "modifiedTime": 1753639541446, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432304157, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QPGBDItjrRhXU6iJ" } diff --git a/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json b/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json index 4a1a0848..9519e392 100644 --- a/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json +++ b/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json @@ -29,6 +29,11 @@ "img": "icons/magic/light/orbs-smoke-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637155361, - "modifiedTime": 1753637366036, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432083881, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!G0RktbmtnuAlKCRH" } diff --git a/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json b/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json index f99220c9..3d6ab8be 100644 --- a/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json +++ b/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json @@ -6,7 +6,12 @@ "system": { "description": "This flask can hold two different liquids. You can swap between them by flipping a small switch on the flask’s side.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637893309, - "modifiedTime": 1753637932763, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432168119, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HCvcAu3sdHCspGMP" } diff --git a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json index 6b007a29..215658b1 100644 --- a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json +++ b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json @@ -34,6 +34,11 @@ "img": "icons/equipment/neck/pendant-rough-silver-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [ @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638931971, - "modifiedTime": 1753989758225, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432243222, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PkmTZXRMZL022O75" } diff --git a/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json b/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json index bb6ca519..ea8649d3 100644 --- a/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json +++ b/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json @@ -6,7 +6,12 @@ "system": { "description": "This magical chest appears empty. When you speak a specific trigger word or action and open the chest, you can see the items stored within it.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625859659, - "modifiedTime": 1753625887033, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432002874, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!p2yy61uKsyIsl8cU" } diff --git a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json index 0f992ddf..cbba2957 100644 --- a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json +++ b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Knowledge. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639753586, - "modifiedTime": 1753639789835, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432328609, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vSGx1f9SYUiA29L3" } diff --git a/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json b/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json index bcdda979..be48c507 100644 --- a/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json +++ b/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json @@ -29,6 +29,11 @@ "img": "icons/containers/kitchenware/jug-wrapped-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625575791, - "modifiedTime": 1753625617382, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431975757, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!X6RMkIt89wf7qX2E" } diff --git a/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json b/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json index bb7f8495..4f87a4d2 100644 --- a/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json +++ b/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json @@ -6,7 +6,12 @@ "system": { "description": "While you carry this pendant, your weapons with a Melee range that deal physical damage have a gossamer sheen and can attack targets within Very Close range.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639935227, - "modifiedTime": 1753639964153, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432355676, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9VKYSBQxN9XFWlAm" } diff --git a/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json b/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json index 3dbdae76..578eb7c5 100644 --- a/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json +++ b/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json @@ -6,7 +6,12 @@ "system": { "description": "You can climb up vertical surfaces and across ceilings.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637390470, - "modifiedTime": 1753637455936, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432092979, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CGzjBpHJRG8KSt5Y" } diff --git a/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json b/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json index 86b17e74..68eef682 100644 --- a/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json +++ b/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Agility when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640285473, - "modifiedTime": 1753640317903, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432422196, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zecFwBUSWtB3HW8X" } diff --git a/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json b/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json index 07d44a2c..b592cd2d 100644 --- a/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json +++ b/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Presence when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640590771, - "modifiedTime": 1753640602606, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432430946, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hMu9It3ThCLCXuCA" } diff --git a/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json b/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json index 03743b23..7f75d412 100644 --- a/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json +++ b/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Instinct when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640563344, - "modifiedTime": 1753640580953, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432436597, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TbgeT9ZxKHqFqJSN" } diff --git a/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json b/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json index 8395388f..19d6f2c4 100644 --- a/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json +++ b/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Strength when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640512721, - "modifiedTime": 1753640527143, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432442699, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!rtSInNPc4B3ChBUZ" } diff --git a/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json b/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json index 6dc57398..0d10ff19 100644 --- a/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json +++ b/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Finesse when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640535939, - "modifiedTime": 1753640553552, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432448347, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CrvJ7vb4s40YgEcy" } diff --git a/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json b/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json index 4128007b..cb3de994 100644 --- a/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json +++ b/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Knowledge when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640610217, - "modifiedTime": 1753640623916, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432454597, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ua351S7CsH22X1x2" } diff --git a/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json b/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json index dacc4376..6b233757 100644 --- a/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json +++ b/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json @@ -37,6 +37,11 @@ "img": "icons/commodities/treasure/token-engraved-purple-glowing.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625773657, - "modifiedTime": 1753625847459, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431995057, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Pj17cvdJ1XG1jv6I" } diff --git a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json index 799e170f..2457d2e2 100644 --- a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json +++ b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json @@ -37,6 +37,11 @@ "img": "icons/commodities/leather/leather-patch-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637642501, - "modifiedTime": 1753989923053, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432142381, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CiXwelozmBDcPY48" } diff --git a/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json b/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json index e19ac9a6..72d434f9 100644 --- a/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json +++ b/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this stone to a weapon that doesn’t already have a feature. The weapon gains the following feature.
Powerful: On a successful attack, roll an additional damage die and discard the lowest result.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637596921, - "modifiedTime": 1753637633941, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432133748, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!y7zABzR0Q2fRskTw" } diff --git a/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json b/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json index be6e9ad5..93bbb201 100644 --- a/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json +++ b/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json @@ -6,7 +6,12 @@ "system": { "description": "These two compasses point toward each other no matter how far apart they are.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637089789, - "modifiedTime": 1753637129113, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432074527, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yrAGYlDyoe4OYl7d" } diff --git a/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json b/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json index 4fb5b0de..6bf34bee 100644 --- a/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json +++ b/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to an Experience of your choice. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639799902, - "modifiedTime": 1753639815534, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432343825, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SAAnEAeXDnhBbLjB" } diff --git a/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json b/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json index 6899908f..83356cb6 100644 --- a/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json +++ b/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json @@ -99,6 +99,11 @@ "img": "icons/equipment/neck/amulet-round-engraved-spiral-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -113,12 +118,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639224510, - "modifiedTime": 1753639329411, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432255622, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9DcFR75tsnBYIp6Z" } diff --git a/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json b/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json index 83044c0f..1a82453c 100644 --- a/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json +++ b/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json @@ -6,7 +6,12 @@ "system": { "description": "When you store items in this bag, they are kept in a pocket dimension that never runs out of space. You can retrieve an item at any time.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639339762, - "modifiedTime": 1753639361505, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432274021, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Iedjw1LVWEozVh0J" } diff --git a/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json b/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json index b64c2faf..1c5a2c64 100644 --- a/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json +++ b/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json @@ -6,7 +6,12 @@ "system": { "description": "You can walk on the surface of water as if it were soft ground.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639975496, - "modifiedTime": 1753639999823, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432366912, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!NgvmrJYKpA2PrRSo" } diff --git a/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json b/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json index 8a1fd26e..16bb3186 100644 --- a/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json +++ b/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json @@ -6,7 +6,12 @@ "system": { "description": "You can store the name and details of up to three hostile creatures inside this book. You gain a +1 bonus to action rolls against those creatures.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637467427, - "modifiedTime": 1753637489198, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432101012, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!JsPYzrqpITqGj23I" } diff --git a/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json b/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json index cbeb9f38..ba762c74 100644 --- a/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json +++ b/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json @@ -6,7 +6,12 @@ "system": { "description": "This pair of locking cuffs comes with a key.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625337217, - "modifiedTime": 1753625362038, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431952005, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GkmATIuemyFtQX1D" } diff --git a/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json b/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json index 2d8c286b..a84e783a 100644 --- a/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json +++ b/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can use a vial of blood to craft a Minor Health Potion.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637045921, - "modifiedTime": 1753637071130, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432066493, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PQxvxAVBbkt0TleC" } diff --git a/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json b/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json index d963d82d..8069ae69 100644 --- a/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json +++ b/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can use the bone of a creature to craft a Minor Stamina Potion.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626639554, - "modifiedTime": 1753626666369, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432058259, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1TLpFsp3PLDsqoTw" } diff --git a/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json b/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json index 2325a405..dfc1916d 100644 --- a/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json +++ b/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can use a handful of fine gold dust to craft Mythic Dust.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640163566, - "modifiedTime": 1753640190943, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432395196, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5YZls8XH3MB7twNa" } diff --git a/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json b/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json index f62b7895..ab2f2cc3 100644 --- a/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json +++ b/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json @@ -37,6 +37,11 @@ "img": "icons/equipment/neck/choker-chain-thin-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638721391, - "modifiedTime": 1753638917868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432230353, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!F4hoRfvVdZq5bhhI" } diff --git a/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json b/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json index a51d206b..2cd09252 100644 --- a/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json +++ b/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json @@ -6,7 +6,12 @@ "system": { "description": "If you have at least one Phoenix Feather on you when you fall unconscious, you gain a +1 bonus to the roll you make to determine whether you gain a scar.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638285123, - "modifiedTime": 1753638336982, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432194183, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QNtzJSVENww63THa" } diff --git a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json index a3789138..9a056431 100644 --- a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json +++ b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json @@ -29,6 +29,11 @@ "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [ @@ -101,12 +106,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625947079, - "modifiedTime": 1753990194353, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432020809, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!I63LTFD6GXHgyGpR" } diff --git a/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json b/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json index b0e2954c..1a059ae1 100644 --- a/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json +++ b/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json @@ -6,7 +6,12 @@ "system": { "description": "This handcrafted whistle has a distinctive sound. When you blow this whistle, its piercing tone can be heard within a 1-mile radius.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753624968366, - "modifiedTime": 1753625011843, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431902952, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!v4PIoCCEjeE3acys" } diff --git a/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json b/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json index 4eb1e0d7..d09850e3 100644 --- a/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json +++ b/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json @@ -6,7 +6,12 @@ "system": { "description": "You can plant this seed in the ground to grow a portal in that spot. The portal is ready to use in 24 hours. You can use this portal to travel to any other location where you planted a portal seed. A portal can be destroyed by dealing any amount of magic damage to it.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638512020, - "modifiedTime": 1753638586392, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432221837, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!eRd5Gk7J7hPCqp11" } diff --git a/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json b/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json index 9d90b78b..f000d904 100644 --- a/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json +++ b/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json @@ -68,6 +68,11 @@ "img": "icons/sundries/survival/bedroll-blue-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753624827945, - "modifiedTime": 1753624908866, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431895118, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QGYPNBIufpBguwjC" } diff --git a/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json b/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json index f241cf1f..628fe395 100644 --- a/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json +++ b/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json @@ -29,6 +29,11 @@ "img": "icons/equipment/finger/ring-shield-silver.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638222884, - "modifiedTime": 1753638266245, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432185583, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!aUqRifqR5JXXa1dN" } diff --git a/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json b/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json index 502c73b2..b6de3da5 100644 --- a/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json +++ b/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json @@ -37,6 +37,11 @@ "img": "icons/equipment/finger/ring-ball-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [ @@ -96,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637775628, - "modifiedTime": 1753637832657, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432151648, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!K1ysGnTpNyxPu5Au" } diff --git a/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json b/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json index 94f8bdec..e4a4511f 100644 --- a/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json +++ b/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json @@ -37,6 +37,11 @@ "img": "icons/equipment/finger/ring-faceted-gold-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" } }, "effects": [], @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640632212, - "modifiedTime": 1753640958684, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432465536, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!kn71qCQY0DnjmQBJ" } diff --git a/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json b/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json index 46beee5a..f6d004e4 100644 --- a/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json +++ b/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json @@ -37,6 +37,11 @@ "img": "icons/commodities/gems/gem-rough-navette-purple-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" } }, "effects": [], @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640199098, - "modifiedTime": 1753990369010, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432405079, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2ULPgNyqCrxea0v0" } diff --git a/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json b/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json index 4b480459..d05a0de4 100644 --- a/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json +++ b/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json @@ -53,6 +53,11 @@ "img": "icons/sundries/misc/key-ornate-iron-black.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -67,12 +72,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626370278, - "modifiedTime": 1753626508104, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432037375, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!edkNgwy4xghZreBa" } diff --git a/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json b/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json index 1239b6ab..af9fc42c 100644 --- a/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json +++ b/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json @@ -6,7 +6,12 @@ "system": { "description": "This pair of orbs allows any creatures holding them to communicate with each other across any distance.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625222662, - "modifiedTime": 1753625327080, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431943587, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LZrG6CFiSjpLA2F1" } diff --git a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json index 9f169207..15edb13a 100644 --- a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json +++ b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Agility. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639376996, - "modifiedTime": 1753639432017, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432282538, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FfJISMzYATaPQPLc" } diff --git a/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json b/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json index 83ca772a..7932eb77 100644 --- a/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json +++ b/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json @@ -6,7 +6,12 @@ "system": { "description": "This flat rod is inscribed with runes. When you activate the rod, it is immediately suspended in place. Until the rod is deactivated, it can’t move, doesn’t abide by the rules of gravity, and remains in place.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625627433, - "modifiedTime": 1753625765676, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431985810, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nnj12RiFanq7s5zv" } diff --git a/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json b/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json index 6970a396..39cb89d7 100644 --- a/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json +++ b/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this stone to armor that doesn’t already have a feature. The armor gains the following feature.
Resilient: Before you mark your last Armor Slot, roll a d6. On a result of 6, reduce the severity by one threshold without marking an Armor Slot.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626167593, - "modifiedTime": 1753626237350, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432029408, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7yywua9TmQ4WP5WH" } diff --git a/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json b/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json index d9ad7e17..29bb21fc 100644 --- a/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json +++ b/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can mark a Stress to craft a Vial of Darksmoke.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637508452, - "modifiedTime": 1753637524868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432114401, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MhCo8i0cRXzdnXbA" } diff --git a/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json b/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json index 3013f603..32fa6c6b 100644 --- a/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json +++ b/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json @@ -58,6 +58,11 @@ "img": "icons/tools/fishing/net-tan.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [ @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625403538, - "modifiedTime": 1753625550934, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431968372, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ARuv48PWUGJGBC4n" } diff --git a/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json b/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json deleted file mode 100644 index a51a5c14..00000000 --- a/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "folder": "OKJC8cHvPuseBHWq", - "name": "Black Powder Revolver", - "type": "loot", - "_id": "NUbvkPLS71XO073r", - "img": "icons/weapons/guns/gun-pistol-brass.webp", - "system": { - "description": "", - "quantity": 1, - "actions": {} - }, - "effects": [], - "sort": 0, - "ownership": { - "default": 0, - "FecEtPuoQh6MpjQ0": 3 - }, - "flags": {}, - "_stats": { - "compendiumSource": null, - "duplicateSource": null, - "exportSource": null, - "coreVersion": "13.346", - "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1753832431607, - "modifiedTime": 1753832439003, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" - }, - "_key": "!items!NUbvkPLS71XO073r" -} diff --git a/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json b/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json index 0dc1f068..03472e33 100644 --- a/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json +++ b/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753835285790, - "modifiedTime": 1754815224721, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431272519, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ijodu5yNBoMxpkHV" } diff --git a/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json b/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json index 0abfe057..db39bfcf 100644 --- a/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json +++ b/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -159,10 +164,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836715885, - "modifiedTime": 1754845968271, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430195943, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "la3sAWgnvadc4NvP", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json b/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json index 7e06132f..5e75aae7 100644 --- a/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json +++ b/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833079329, - "modifiedTime": 1753833112531, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431151799, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hXR56fTKwZ6s1obs" } diff --git a/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json b/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json index b99dee62..ad176f61 100644 --- a/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json +++ b/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831668041, - "modifiedTime": 1753831689481, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430983569, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FcbvY1ydbNVMjKvk" } diff --git a/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json b/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json index 19a6d9bf..927b0310 100644 --- a/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json +++ b/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753831599435, - "modifiedTime": 1754814950120, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430988859, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WtQAGz0TUgz8Xg70" } diff --git a/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json b/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json index cd64eb4b..017002b4 100644 --- a/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json +++ b/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832024062, - "modifiedTime": 1753832046861, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430993878, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3HGs0AgVrdIBTaKG" } diff --git a/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json b/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json index f2dd3e0f..2c00a2cf 100644 --- a/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json +++ b/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831881396, - "modifiedTime": 1753831904535, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430999379, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bw9WO9lxkM9bWZxQ" } diff --git a/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json b/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json index 17aa209b..9fd77076 100644 --- a/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json +++ b/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831785214, - "modifiedTime": 1753831814649, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431005188, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mrioysDjNQEIE8hN" } diff --git a/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json b/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json index dc665696..eed619c5 100644 --- a/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json +++ b/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833383897, - "modifiedTime": 1753833411958, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431162464, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!X5x3sC7v2f3L9sjL" } diff --git a/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json b/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json index c647f3da..338ddc71 100644 --- a/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json +++ b/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833176806, - "modifiedTime": 1753833243855, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431169037, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!InQoh8mZPnwarQkX" } diff --git a/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json b/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json index ffb6bb44..4477b871 100644 --- a/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json +++ b/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753795033661, - "modifiedTime": 1753795079243, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430411064, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7vvhVl4TDJHtjpFK" } diff --git a/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json b/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json index cbd63dd5..dd768c28 100644 --- a/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json +++ b/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833576312, - "modifiedTime": 1753833602381, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431174265, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4UzxqfkwF8gDSdu7" } diff --git a/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json b/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json index 81d05554..d1dff9f7 100644 --- a/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json +++ b/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831701352, - "modifiedTime": 1753831723203, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431010340, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MAC6YWTo4lzSotQc" } diff --git a/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json b/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json index d314f604..cc9dddea 100644 --- a/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json +++ b/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831933214, - "modifiedTime": 1753831956886, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431016287, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!C8gQn7onAc9wsrCs" } diff --git a/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json b/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json index 52840548..48b52862 100644 --- a/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json +++ b/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833120834, - "modifiedTime": 1753833164907, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431179762, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BiyXKX2Mo1TQbKgk" } diff --git a/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json b/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json index ef1eb127..6b893013 100644 --- a/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json +++ b/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753795089792, - "modifiedTime": 1753795117775, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430416538, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Lsvocst8aGqkBj7g" } diff --git a/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json b/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json index 9f78b140..2ecb02ce 100644 --- a/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json +++ b/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833253569, - "modifiedTime": 1753833282989, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431184599, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PQACczSghZIVTdgZ" } diff --git a/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json b/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json index f8257028..9b7f4816 100644 --- a/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json +++ b/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -150,10 +155,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836675558, - "modifiedTime": 1754845996869, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430171326, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "eT2Qwb0RdrLX2hH1", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json b/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json index 324af2b1..9321abf8 100644 --- a/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json +++ b/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json @@ -129,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -143,10 +148,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836614032, - "modifiedTime": 1754846020904, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430232313, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BuMfupnCzHbziQ8o", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json b/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json index 0ebb1d08..237d30c2 100644 --- a/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json +++ b/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832060079, - "modifiedTime": 1753832086913, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431035842, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!M5CywMAyPKGgebsJ" } diff --git a/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json b/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json index 8b44c759..e7977c92 100644 --- a/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json +++ b/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831635467, - "modifiedTime": 1753831658646, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431029688, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9xkB3MWXahrsVP4N" } diff --git a/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json b/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json index 770a061c..1dd1f447 100644 --- a/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json +++ b/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831730528, - "modifiedTime": 1753831747562, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431024022, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WreMYiH5uhVDaoVw" } diff --git a/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json b/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json index e9a2ff48..60d059ef 100644 --- a/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json +++ b/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831826360, - "modifiedTime": 1753831868734, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431045472, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zJtm2f9ZFKZRtCRg" } diff --git a/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json b/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json index e108d48f..9352e5de 100644 --- a/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json +++ b/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831909596, - "modifiedTime": 1753831926420, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431050992, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!KxFne76d7cak15dO" } diff --git a/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json b/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json index e549ce09..04a8537c 100644 --- a/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json +++ b/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833291783, - "modifiedTime": 1753833332963, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431189871, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!sIGXA4KMeYBUjcEO" } diff --git a/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json b/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json index 9240fbaf..6384e2b8 100644 --- a/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json +++ b/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794853303, - "modifiedTime": 1753794890718, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430422255, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hiEOGF2reabGLUoi" } diff --git a/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json b/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json index 0f24c888..8410acba 100644 --- a/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json +++ b/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833421806, - "modifiedTime": 1753835888435, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431194696, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2Khzuj768yoWN9QK" } diff --git a/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json b/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json index e54b4eea..c6cf9e45 100644 --- a/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json +++ b/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831998635, - "modifiedTime": 1753832018423, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431055980, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!JpSlJvDR0X8VFDns" } diff --git a/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json b/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json index b09613da..b9f8abd7 100644 --- a/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json +++ b/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833341389, - "modifiedTime": 1753833375298, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431199497, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!T5exRCqOXhrjSYnI" } diff --git a/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json b/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json index a7b33030..3602de12 100644 --- a/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json +++ b/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753794821174, - "modifiedTime": 1755268343096, + "modifiedTime": 1755430427239, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!p3nz5CaGUoyuGVg0" diff --git a/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json b/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json index 958bda92..aec66a76 100644 --- a/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json +++ b/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753794938643, - "modifiedTime": 1755268350050, + "modifiedTime": 1755430432441, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0thN0BpN05KT8Avx" diff --git a/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json b/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json index 0bfb4a8f..a1a7ad44 100644 --- a/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json +++ b/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831962536, - "modifiedTime": 1753831987004, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431061358, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!pK6dsNABKKp1CIGN" } diff --git a/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json b/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json index 33d9f577..47982de2 100644 --- a/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json +++ b/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794904892, - "modifiedTime": 1753794929241, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430438607, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OfOzQbs4hg6QbfTG" } diff --git a/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json b/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json index 65bd9fc3..4e427132 100644 --- a/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json +++ b/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833518519, - "modifiedTime": 1753833553163, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431205397, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jU9jWIardjtdAQcs" } diff --git a/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json b/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json index 56eb31fc..7d3276c6 100644 --- a/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json +++ b/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831754451, - "modifiedTime": 1753831777547, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431066673, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8Lipw3RRKDgBVP0p" } diff --git a/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json b/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json index b9c4242d..99cae67f 100644 --- a/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json +++ b/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753795001576, - "modifiedTime": 1753808405822, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430443629, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!01izMUSJcAUo79IX" } diff --git a/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json b/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json index 3dd7d463..ca0b07d7 100644 --- a/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json +++ b/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836689082, - "modifiedTime": 1754845945327, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430185213, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XRChepscgr75Uug7" } diff --git a/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json b/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json index abef59b7..9eb20491 100644 --- a/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json +++ b/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828194643, - "modifiedTime": 1753828233213, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430636989, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PC5EyEIq7NWBV0n5" } diff --git a/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json b/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json index ae0f0398..eb5c8e2b 100644 --- a/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json +++ b/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833614959, - "modifiedTime": 1753833653403, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431211441, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YcS1rHgfnSlla8Xf" } diff --git a/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json b/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json index 00034072..63ed7753 100644 --- a/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json +++ b/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827787429, - "modifiedTime": 1753827801986, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430553429, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fbDYUja3ll9vCtrB" } diff --git a/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json b/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json index 916958c9..699b06ae 100644 --- a/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json +++ b/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832483435, - "modifiedTime": 1753832502167, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431071691, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!AokqTusPzn0hghkE" } diff --git a/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json b/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json index 9e188b9f..c7a74b26 100644 --- a/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json +++ b/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829680830, - "modifiedTime": 1753829701111, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430702556, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5faflfNz20cFW1EM" } diff --git a/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json b/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json index f4d8d52a..83ef5820 100644 --- a/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json +++ b/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json @@ -168,6 +168,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -181,12 +186,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833663905, - "modifiedTime": 1754406631151, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431216258, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!n1oPTk5czTIGTkVj" } diff --git a/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json b/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json index abd09941..1273d9a8 100644 --- a/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json +++ b/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836256052, - "modifiedTime": 1753836294025, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431424609, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IoMVDz92WVvfGGdc" } diff --git a/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json b/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json index 7d211d92..e6fefe1c 100644 --- a/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json +++ b/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829780930, - "modifiedTime": 1753829802107, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430707621, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SLFrK0WmldPo0shz" } diff --git a/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json b/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json index 6b9af93d..920985fa 100644 --- a/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json +++ b/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797203355, - "modifiedTime": 1753797247008, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430470813, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QEvgVoz9xKBSKsGi" } diff --git a/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json b/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json index b5d7559f..29ccef77 100644 --- a/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json +++ b/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832142373, - "modifiedTime": 1753832160787, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431087258, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QZrWAkprA2tL2MOI" } diff --git a/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json b/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json index 959a8547..10bbaf8c 100644 --- a/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json +++ b/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753827734892, - "modifiedTime": 1754814769821, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430559304, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1cwWNt4sqlgA8gCT" } diff --git a/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json index 852a213f..8e6ef6ca 100644 --- a/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json +++ b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json @@ -137,6 +137,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -189,12 +194,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753795181779, - "modifiedTime": 1753808413753, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430450631, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EmFTp9wzT6MHSaNz" } diff --git a/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json b/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json index 6394645b..45924203 100644 --- a/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json +++ b/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json @@ -164,6 +164,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -177,12 +182,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831124348, - "modifiedTime": 1753831194254, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430854985, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2Fbf2cxLfbdGkU4I" } diff --git a/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json b/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json index ac1fdb6a..b0915863 100644 --- a/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json +++ b/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828109370, - "modifiedTime": 1753828127762, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430563597, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cw7HG1Z7hp7OOLD0" } diff --git a/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json b/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json index c3c4b5d6..0ce2a676 100644 --- a/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json +++ b/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835098261, - "modifiedTime": 1753835125696, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431277893, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Fk69R40svV0kanZD" } diff --git a/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json b/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json index 42839516..601ac04e 100644 --- a/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json +++ b/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827943490, - "modifiedTime": 1753827960371, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430570250, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CWrbnethuILXrEpA" } diff --git a/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json b/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json index fe6e34bb..74b81e48 100644 --- a/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json +++ b/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827894955, - "modifiedTime": 1753827907060, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430575107, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iStO0BbeMTTR0rQi" } diff --git a/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json b/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json index 153220f1..8a97fe05 100644 --- a/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json +++ b/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831203997, - "modifiedTime": 1753831225429, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430861829, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!C5wSGglR8e0euQnY" } diff --git a/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json b/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json index 2a3a6095..86145c0f 100644 --- a/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json +++ b/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832332785, - "modifiedTime": 1753832367770, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431095042, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xm1yU7k58fMgXxRR" } diff --git a/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json b/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json index 4463cef4..1c4f75ce 100644 --- a/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json +++ b/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834935521, - "modifiedTime": 1753835006406, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431282742, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nXjuBa215H1sTUK3" } diff --git a/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json b/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json index 35cf3dd6..44487b58 100644 --- a/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json +++ b/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828411828, - "modifiedTime": 1753828446546, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430641953, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!j8cdNeIUYxxzFVji" } diff --git a/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json b/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json index 2d54aa50..82f90f23 100644 --- a/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json +++ b/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831084805, - "modifiedTime": 1753831108928, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430867175, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!G7rH31KQ5eEZXcv0" } diff --git a/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json b/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json index f9637a9e..7441238b 100644 --- a/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json +++ b/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831304971, - "modifiedTime": 1753831327540, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430872430, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!JdWcn9W1edhAEInL" } diff --git a/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json b/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json index 65b0a657..0c28d943 100644 --- a/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json +++ b/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835136460, - "modifiedTime": 1753835169098, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431287604, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fJHKMxZokVP34MCi" } diff --git a/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json b/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json index 5dba19c9..d4c8bb5b 100644 --- a/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json +++ b/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829844531, - "modifiedTime": 1753829859088, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430717775, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ykF3jouxHZ6YR8Bg" } diff --git a/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json b/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json index f71b63b2..e10f1fd7 100644 --- a/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json +++ b/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833915734, - "modifiedTime": 1753834249920, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431221418, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BtCm2RhWEfs00g38" } diff --git a/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json b/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json index 6696a3fb..d37f7142 100644 --- a/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json +++ b/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832095587, - "modifiedTime": 1753832129589, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431100825, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xLJ5RRpUoTRmAC3G" } diff --git a/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json b/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json index 48087189..16237fff 100644 --- a/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json +++ b/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836170763, - "modifiedTime": 1753836240655, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431431739, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3vti3xfo0wJND7ew" } diff --git a/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json b/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json index e8e14abb..ac039ece 100644 --- a/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json +++ b/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836449043, - "modifiedTime": 1753836485751, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431436926, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!uK1RhtYAsDeoPNGx" } diff --git a/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json b/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json index a5d39bea..2a3853ea 100644 --- a/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json +++ b/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json @@ -93,6 +93,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -106,12 +111,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833724570, - "modifiedTime": 1753833788108, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431226770, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6gFvOFTE97QZ74Zr" } diff --git a/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json b/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json index bf6423c5..ff8d606b 100644 --- a/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json +++ b/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833878513, - "modifiedTime": 1753833907298, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431231849, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ctTgFfMbM3YtmsYU" } diff --git a/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json b/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json index e9372819..f92fa49f 100644 --- a/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json +++ b/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829584359, - "modifiedTime": 1753829600720, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430712705, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!VwcOgqnzjf9LBj2S" } diff --git a/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json b/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json index d1b43470..b0a515e1 100644 --- a/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json +++ b/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828268892, - "modifiedTime": 1753828300354, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430650322, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wG9f5NpCwSbaLy8t" } diff --git a/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json b/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json index 760cd787..585473ad 100644 --- a/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json +++ b/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744418464, - "modifiedTime": 1753794424526, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430265968, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iEzPscUc18GuFoB6" } diff --git a/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json b/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json index 40092016..64800e1b 100644 --- a/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json +++ b/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829810496, - "modifiedTime": 1753829836266, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430723754, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MXBpbqQsZFln4rZk" } diff --git a/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json b/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json index 91ab35c3..24a37b60 100644 --- a/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json +++ b/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828546209, - "modifiedTime": 1753828572366, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430656056, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Yk8pTEmyLLi4095S" } diff --git a/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json b/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json index 88d68120..c3cfc91a 100644 --- a/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json +++ b/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827812456, - "modifiedTime": 1753827837860, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430580231, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!70ysaFJDREwTgvZa" } diff --git a/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json b/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json index 76ef57d5..5ddc4cf0 100644 --- a/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json +++ b/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828005240, - "modifiedTime": 1753828027571, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430586032, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!qT7FfmauAumOjJoq" } diff --git a/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json b/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json index dfb94b82..11e0cc87 100644 --- a/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json +++ b/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828229603, - "modifiedTime": 1753828259599, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430661659, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Vayg7CnRTFBrunjM" } diff --git a/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json b/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json index 79b179e2..0c00da28 100644 --- a/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json +++ b/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831233943, - "modifiedTime": 1753831254600, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430877137, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0lAkBEUvbM9Osmqb" } diff --git a/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json b/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json index 0733bc22..0a1d9dab 100644 --- a/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json +++ b/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832169515, - "modifiedTime": 1753832195344, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431106242, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1R4uzOpWD8bkYRUm" } diff --git a/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json b/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json index 9dfce730..20370546 100644 --- a/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json +++ b/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835328057, - "modifiedTime": 1753835363359, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431292435, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MyGz8nd5sieRQ7zl" } diff --git a/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json b/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json index 7cbbeaec..61ce4d99 100644 --- a/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json +++ b/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744526958, - "modifiedTime": 1753794520954, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430274014, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zxKt6qXe7uZB6ljm" } diff --git a/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json b/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json index b16488ce..18da1680 100644 --- a/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json +++ b/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828308338, - "modifiedTime": 1753828333546, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430667859, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3whiedn0jBMNRdIb" } diff --git a/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json b/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json index 39a16ddb..42d6b73e 100644 --- a/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json +++ b/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json @@ -164,6 +164,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -177,12 +182,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753796778752, - "modifiedTime": 1753796892053, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430455807, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!RAIaoMi6iO1PKIlK" } diff --git a/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json b/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json index b4c48925..a3aad851 100644 --- a/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json +++ b/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -154,10 +159,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836652314, - "modifiedTime": 1754845988869, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430156096, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XjPQjhRCH08VUIbr" } diff --git a/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json b/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json index 5d2ad638..51bb46e8 100644 --- a/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json +++ b/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834324778, - "modifiedTime": 1753834352088, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431237332, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TMrUzVC3KvcHmdt8" } diff --git a/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json b/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json index 5dd794d9..b817a332 100644 --- a/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json +++ b/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835022121, - "modifiedTime": 1753835056093, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431297704, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Zg6IutksQVOqAg8K" } diff --git a/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json b/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json index 69744aab..2fa3de9b 100644 --- a/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json +++ b/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -159,10 +164,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836714712, - "modifiedTime": 1754845960700, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430190586, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "N9P695V5KKlJbAY5", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json b/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json index ace2d7f5..4fc65837 100644 --- a/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json +++ b/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830663702, - "modifiedTime": 1753830688044, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430881797, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!kENTDpa1hr5LDhIT" } diff --git a/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json b/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json index 78a1d9ce..32ef07e2 100644 --- a/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json +++ b/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829159520, - "modifiedTime": 1753829179084, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430728755, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nxGUpuHLmuKdKsDC" } diff --git a/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json b/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json index 69e46858..9828108d 100644 --- a/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json +++ b/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753829098118, - "modifiedTime": 1754814935815, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430733489, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OcKeLJxvmdT81VBc" } diff --git a/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json b/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json index 4ebf336e..9607f5dd 100644 --- a/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json +++ b/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829524850, - "modifiedTime": 1753829540618, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430738916, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!55NwHIIZHUeKSE3M" } diff --git a/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json b/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json index 57ead715..f72fd026 100644 --- a/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json +++ b/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829336088, - "modifiedTime": 1753829379988, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430744857, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ddRjXnp2vbohu7rJ" } diff --git a/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json b/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json index 09e93778..509be257 100644 --- a/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json +++ b/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829275876, - "modifiedTime": 1753829295031, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430751928, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ScjTkb9qrndhlk9S" } diff --git a/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json b/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json index a55aedd0..e6227e27 100644 --- a/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json +++ b/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830887023, - "modifiedTime": 1753830918763, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430886600, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!f7hhHlZ5nL3AhYEM" } diff --git a/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json b/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json index 1ee640bb..09fc7d78 100644 --- a/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json +++ b/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830729041, - "modifiedTime": 1753830753601, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430892102, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!N5amhkxR1xn3B7r2" } diff --git a/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json b/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json index d8b91be7..b10eb764 100644 --- a/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json +++ b/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794386984, - "modifiedTime": 1753795053642, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430314424, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3T3o9zfe61t22L1H" } diff --git a/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json b/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json index 9b239f60..ab3f7d21 100644 --- a/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json +++ b/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831031130, - "modifiedTime": 1753831074766, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430897181, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LCuTrYXi4lhg6LqW" } diff --git a/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json b/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json index 28cad987..eae9543b 100644 --- a/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json +++ b/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829188168, - "modifiedTime": 1753829211950, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430760464, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FPX4ouDrxXiQ5MDf" } diff --git a/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json b/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json index bc88174b..ac5197ed 100644 --- a/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json +++ b/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829414070, - "modifiedTime": 1753829436559, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430766141, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!F9PETfCQGwczBPif" } diff --git a/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json b/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json index 818c0f55..d9bc2a64 100644 --- a/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json +++ b/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830697026, - "modifiedTime": 1753830717920, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430905049, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wFOXMN2uiX4j6Gd9" } diff --git a/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json b/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json index 63e7f363..8227c35d 100644 --- a/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json +++ b/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794476404, - "modifiedTime": 1753794517681, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430322922, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XEDRkuw3BhMoVBn9" } diff --git a/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json b/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json index 246a4dff..05f8955c 100644 --- a/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json +++ b/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830762576, - "modifiedTime": 1753830786247, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430910158, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jMEukC3VpNDz5AOD" } diff --git a/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json b/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json index 70531b7c..c22323d0 100644 --- a/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json +++ b/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -150,10 +155,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836674233, - "modifiedTime": 1754845992757, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430164612, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "L5KeCtrs768PmYWW", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json b/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json index 737e2c55..e774d93d 100644 --- a/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json +++ b/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json @@ -129,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -143,10 +148,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836612291, - "modifiedTime": 1754846018260, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430225855, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ZJsetdHKV77ygtCE", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json b/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json index 18b98cc0..f23b203e 100644 --- a/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json +++ b/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829548741, - "modifiedTime": 1753829574677, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430771841, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!NacNonjbzyoVMNhI" } diff --git a/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json b/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json index b064b1c2..c6e71c36 100644 --- a/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json +++ b/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829133179, - "modifiedTime": 1753829150848, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430779350, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QyBZ5NxM8F9nCL9s" } diff --git a/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json b/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json index 3c079674..a4c469e3 100644 --- a/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json +++ b/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829219204, - "modifiedTime": 1753829233784, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430785076, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zSLx52U4Yltqx8F1" } diff --git a/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json b/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json index 54b220a5..03975811 100644 --- a/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json +++ b/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829305566, - "modifiedTime": 1753829326219, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430790792, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BEmAR60PM3ZaiNXa" } diff --git a/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json b/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json index 27808573..7c79855b 100644 --- a/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json +++ b/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829388946, - "modifiedTime": 1753829406872, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430796102, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LFPH8nD2f4Blv3AM" } diff --git a/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json b/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json index 64404db7..1bc01015 100644 --- a/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json +++ b/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830798994, - "modifiedTime": 1753830839524, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430915852, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SKNwkW23eVQjN4Zy" } diff --git a/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json b/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json index 49be7813..ac23f153 100644 --- a/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json +++ b/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744776245, - "modifiedTime": 1753794098472, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430336489, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DlinEBGZfIlvreO3" } diff --git a/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json b/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json index a97d7e10..4d61a5aa 100644 --- a/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json +++ b/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830930043, - "modifiedTime": 1753835907269, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430920982, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tj26lbNkwy8bORF4" } diff --git a/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json b/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json index ec704881..6ed121f7 100644 --- a/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json +++ b/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829484986, - "modifiedTime": 1753829516515, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430802429, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6ZWl6ARfvYBaAMwY" } diff --git a/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json b/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json index 5ff31862..f9c5246e 100644 --- a/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json +++ b/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830852208, - "modifiedTime": 1753830874554, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430927432, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Mn8ja5Oi1sXvvPSk" } diff --git a/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json b/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json index c2704b4d..adae8915 100644 --- a/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json +++ b/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753744566951, - "modifiedTime": 1755268322555, + "modifiedTime": 1755430345968, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!rSyBNRwemBVuTo3H" diff --git a/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json b/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json index 5685ac71..2b85fbb5 100644 --- a/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json +++ b/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753794291887, - "modifiedTime": 1755268329308, + "modifiedTime": 1755430352669, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nMuF8ZDZ2aXZVTg6" diff --git a/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json b/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json index 367f80ad..a398b785 100644 --- a/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json +++ b/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829443743, - "modifiedTime": 1753829474262, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430807883, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!j5Pt1thLfcvopBij" } diff --git a/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json b/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json index b612daef..ef768788 100644 --- a/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json +++ b/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794198427, - "modifiedTime": 1753794267315, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430358886, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bxt3NsbMqTSdI5ab" } diff --git a/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json b/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json index 951b4115..54eaac9f 100644 --- a/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json +++ b/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830985241, - "modifiedTime": 1753831019167, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430932717, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6d9B2b5X2d2U56jt" } diff --git a/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json b/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json index 115195a7..17615b31 100644 --- a/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json +++ b/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829240673, - "modifiedTime": 1753829265352, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430814443, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!pxaN4ZK4eqKrjtWj" } diff --git a/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json b/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json index 1035131d..9f44f5bc 100644 --- a/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json +++ b/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794353291, - "modifiedTime": 1753808384267, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430364486, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ftTp8VlsBQ1r4LFD" } diff --git a/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json b/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json index d934731d..46acc280 100644 --- a/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json +++ b/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753831418620, - "modifiedTime": 1754815023493, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430940256, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!q382JqMkqLaaFLIr" } diff --git a/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json b/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json index fafe9bbc..714f3b5d 100644 --- a/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json +++ b/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829611315, - "modifiedTime": 1753829635422, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430819669, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!U8gfyvxoHm024inM" } diff --git a/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json b/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json index f2f53dc7..3cb214bd 100644 --- a/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json +++ b/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json @@ -123,6 +123,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -138,10 +143,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753797258168, - "modifiedTime": 1754814600761, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430475899, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SFqganS8Du4aEKjQ" } diff --git a/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json b/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json index fe91f8a1..051c759a 100644 --- a/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json +++ b/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832206440, - "modifiedTime": 1753832248436, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431111826, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ijWppQzSOqVCb3rE" } diff --git a/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json b/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json index b402692f..9a448ab2 100644 --- a/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json +++ b/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -159,10 +164,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836717240, - "modifiedTime": 1754845972571, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430202136, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gA2tiET9VHGhwMoO", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json b/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json index ba769375..f9aabadf 100644 --- a/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json +++ b/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835451334, - "modifiedTime": 1753835475492, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431441720, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!umADDPYCaykXDc1v" } diff --git a/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json b/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json index c7376573..3d08b628 100644 --- a/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json +++ b/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834500236, - "modifiedTime": 1753834519405, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431304811, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1nztpLzoHGfbKf5x" } diff --git a/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json b/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json index 32d19734..6375e1b6 100644 --- a/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json +++ b/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753834430378, - "modifiedTime": 1754814961454, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431309986, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!y3hfTPfZhMognyaJ" } diff --git a/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json b/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json index 51bc4ea3..9a66906b 100644 --- a/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json +++ b/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834862922, - "modifiedTime": 1753834882694, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431317436, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1G6xX2QL9O0Rsgz7" } diff --git a/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json b/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json index 99950a86..a04487f0 100644 --- a/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json +++ b/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834710917, - "modifiedTime": 1753834734158, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431326087, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Rpyz0jbFJ1SwqfyD" } diff --git a/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json b/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json index 02b8cdce..322b3b27 100644 --- a/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json +++ b/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834616464, - "modifiedTime": 1753834659439, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431331293, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GmTg3Fdne1UPNs8t" } diff --git a/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json b/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json index 5c7977cc..e3f0f656 100644 --- a/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json +++ b/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835724086, - "modifiedTime": 1753835787515, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431447143, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!o3rsLvImcLAx5TvD" } diff --git a/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json b/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json index 9d55a327..31776620 100644 --- a/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json +++ b/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835522076, - "modifiedTime": 1753835564865, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431453215, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PReWrfuPjoNQuieo" } diff --git a/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json b/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json index 3a22dde7..adcc5fe1 100644 --- a/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json +++ b/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797131628, - "modifiedTime": 1753797154423, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430482260, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IrtUj0UntBMNn49G" } diff --git a/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json b/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json index a7dbbfc5..b0eb6642 100644 --- a/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json +++ b/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835957503, - "modifiedTime": 1753835997508, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431458779, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jDtvEabkHY1GFgfc" } diff --git a/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json b/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json index cfd0cfc6..654ddaa8 100644 --- a/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json +++ b/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834526945, - "modifiedTime": 1753834554233, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431336357, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zMZ46F9VR7zdTxb9" } diff --git a/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json b/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json index caeb9c2e..38c67ecf 100644 --- a/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json +++ b/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834772989, - "modifiedTime": 1753834797363, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431341765, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1AuMNiJz96Ez9fur" } diff --git a/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json b/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json index 2c56cdaa..563d52fa 100644 --- a/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json +++ b/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835486056, - "modifiedTime": 1753835507874, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431464517, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0HmhnZnv1I6uX69c" } diff --git a/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json b/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json index 35e53a9a..cbb44354 100644 --- a/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json +++ b/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797168339, - "modifiedTime": 1753797192489, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430487677, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!32nYyMaeDWaakSxz" } diff --git a/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json b/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json index 73886272..5459f230 100644 --- a/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json +++ b/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835579627, - "modifiedTime": 1753835606935, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431470561, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DWLkswhluXuMy3bB" } diff --git a/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json b/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json index d337d32f..b5f1b74e 100644 --- a/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json +++ b/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -150,10 +155,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836676831, - "modifiedTime": 1754846000470, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430177593, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "S6nB0CNlzdU05o5U", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json b/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json index 622fcf12..7d9fc299 100644 --- a/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json +++ b/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json @@ -129,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -143,10 +148,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836615437, - "modifiedTime": 1754846023338, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430241189, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Xt8tVSn5Fu6ly6LF", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json b/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json index 333632dc..fdcc899a 100644 --- a/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json +++ b/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834890609, - "modifiedTime": 1753834925920, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431350371, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Utt1GpoH1fhaTOtN" } diff --git a/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json b/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json index 636dd7a5..fd755a94 100644 --- a/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json +++ b/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834472085, - "modifiedTime": 1753834491863, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431355505, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!14abPqQcROJfDChR" } diff --git a/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json b/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json index e037c5c8..535bba46 100644 --- a/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json +++ b/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834566762, - "modifiedTime": 1753834581202, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431360506, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!RsDsy7tIhrhaAQQc" } diff --git a/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json b/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json index b4ea03f9..401d6c96 100644 --- a/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json +++ b/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834677366, - "modifiedTime": 1753834698077, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431365622, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1ZciqG7vIKLYpKsP" } diff --git a/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json b/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json index bbdf3ad9..eaa6768c 100644 --- a/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json +++ b/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834740751, - "modifiedTime": 1753834763060, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431370823, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BakN97v4jTePcXiZ" } diff --git a/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json b/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json index 8081d1ce..da3a5f42 100644 --- a/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json +++ b/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835615004, - "modifiedTime": 1753835665790, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431477112, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mcj3CPkcSSDdAcBB" } diff --git a/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json b/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json index 421df201..1773485d 100644 --- a/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json +++ b/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753796968563, - "modifiedTime": 1753797012196, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430492843, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!A28WL9E2lJ3iLZHW" } diff --git a/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json b/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json index 92d9b49c..afb3ef97 100644 --- a/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json +++ b/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835822353, - "modifiedTime": 1753835867763, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431483750, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IZ4CWNxfuM46JeCN" } diff --git a/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json b/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json index 0cf8c3de..7e439d04 100644 --- a/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json +++ b/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834834626, - "modifiedTime": 1753834854507, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431376890, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!j7kp36jaetfn5jb3" } diff --git a/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json b/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json index 9a3c1f13..44844553 100644 --- a/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json +++ b/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835676579, - "modifiedTime": 1753835813150, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431489948, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!D3SbNvNJZAFuzfhg" } diff --git a/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json b/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json index 4c1a13a3..4e6ace3f 100644 --- a/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json +++ b/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753796913551, - "modifiedTime": 1755268362375, + "modifiedTime": 1755430497769, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dEumq3BIZBk5xYTk" diff --git a/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json b/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json index 67d58df9..8381111e 100644 --- a/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json +++ b/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753797057472, - "modifiedTime": 1755268370240, + "modifiedTime": 1755430502860, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Px3Rh3kIvAqyISxJ" diff --git a/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json b/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json index bfdcd4eb..c7fa407a 100644 --- a/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json +++ b/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834806427, - "modifiedTime": 1753834827595, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431384407, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4e5pWxi2qohuGsWh" } diff --git a/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json b/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json index 7e62f1aa..39d7b7c5 100644 --- a/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json +++ b/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797026049, - "modifiedTime": 1753797043015, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430508197, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MaJIROht7A9LxIZx" } diff --git a/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json b/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json index be8b131b..c58aab9e 100644 --- a/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json +++ b/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835923888, - "modifiedTime": 1753835965485, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431495832, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wPjg0LufJH9vUfVM" } diff --git a/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json b/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json index b449fca5..5970022d 100644 --- a/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json +++ b/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834588280, - "modifiedTime": 1753834609113, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431389974, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!W9ymfEDck2icfvla" } diff --git a/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json b/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json index b4b8bf02..603f8fae 100644 --- a/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json +++ b/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797101746, - "modifiedTime": 1753808440137, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430513049, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Wcdbf6yS3LEt7nsg" } diff --git a/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json b/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json index 9bb97d2b..62090883 100644 --- a/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json +++ b/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -145,10 +150,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836579296, - "modifiedTime": 1754846015528, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430218981, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iaGnlUkShBgdeMo0" } diff --git a/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json b/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json index e20f9111..39a0582f 100644 --- a/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json +++ b/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828135552, - "modifiedTime": 1753828159427, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430591132, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YfVs6Se903az4Yet" } diff --git a/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json b/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json index c5d9070b..b58eb1d5 100644 --- a/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json +++ b/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827769163, - "modifiedTime": 1753827781183, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430596498, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Iv8BZM1R24QMT72M" } diff --git a/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json b/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json index 529e3874..f074eaba 100644 --- a/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json +++ b/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827843717, - "modifiedTime": 1753827858825, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430601987, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cKQCDyM2UopDL9zF" } diff --git a/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json b/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json index f609e409..27725351 100644 --- a/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json +++ b/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834259866, - "modifiedTime": 1753834310221, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431242468, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XKBmBUEoGLdLcuqQ" } diff --git a/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json b/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json index daa68be1..9f46d9be 100644 --- a/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json +++ b/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836385650, - "modifiedTime": 1753836419000, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431501404, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jGykNGQiKm63tCiE" } diff --git a/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json b/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json index e7809a76..d92bc921 100644 --- a/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json +++ b/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832261628, - "modifiedTime": 1753832286780, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431117685, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Gi26Zk9VqlAAgx3E" } diff --git a/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json b/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json index 420f28b8..bd682fac 100644 --- a/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json +++ b/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json @@ -129,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -181,12 +186,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836123608, - "modifiedTime": 1753836160033, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431507969, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BdLfy5i488VZgkjP" } diff --git a/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json b/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json index c4a796a7..05b1f08b 100644 --- a/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json +++ b/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794685727, - "modifiedTime": 1753794748494, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430370186, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!taAZDkDCpeNgxhnn" } diff --git a/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json b/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json index 417fae15..2e88d91c 100644 --- a/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json +++ b/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json @@ -137,6 +137,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -189,12 +194,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753796723376, - "modifiedTime": 1753808423862, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430461362, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bW3xw5S9DbaLCN3E" } diff --git a/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json b/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json index e3dd3035..d6c5b2cb 100644 --- a/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json +++ b/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json @@ -123,6 +123,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -138,10 +143,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753797317938, - "modifiedTime": 1754814518028, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430518095, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SxcblanBvqaest3A" } diff --git a/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json b/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json index 7526e8c1..2f6fcbb9 100644 --- a/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json +++ b/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827915482, - "modifiedTime": 1753827935877, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430606837, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mlIj88p1wcQNjEDG" } diff --git a/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json b/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json index 01e1cbf2..45f5d8e7 100644 --- a/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json +++ b/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827969157, - "modifiedTime": 1753827996285, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430611691, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zkAgEW6zMkRZalEm" } diff --git a/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json b/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json index 350d8b4f..fd0b1900 100644 --- a/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json +++ b/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832298659, - "modifiedTime": 1753832323983, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431122548, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!i8CqVTzqoRoCewNe" } diff --git a/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json b/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json index 5fcd1214..5884b401 100644 --- a/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json +++ b/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794760906, - "modifiedTime": 1753794803866, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430383420, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FtsQGwOg3r8uUCST" } diff --git a/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json b/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json index e20c840e..1d6d48e9 100644 --- a/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json +++ b/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828345143, - "modifiedTime": 1753828368281, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430673452, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4fQpVfQ3NVwTHStA" } diff --git a/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json b/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json index 9c71aa5c..9c0f0eae 100644 --- a/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json +++ b/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835247877, - "modifiedTime": 1753835276839, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431395791, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!E9QDh5o9eQ1Qx0kH" } diff --git a/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json b/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json index c49aa7dd..d6620abd 100644 --- a/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json +++ b/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753742068200, - "modifiedTime": 1753794114990, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430279232, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mxwWKDujgsRcZWPT" } diff --git a/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json b/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json index ce7fe3bc..b062a33a 100644 --- a/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json +++ b/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833802007, - "modifiedTime": 1753833831195, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431248793, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EG6mZhr3ib56r974" } diff --git a/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json b/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json index c7a686e7..a4393081 100644 --- a/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json +++ b/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828453134, - "modifiedTime": 1753835916388, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430678619, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GZh345N8fmuS4Jeh" } diff --git a/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json b/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json index 4348fbee..0c95d62e 100644 --- a/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json +++ b/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831343009, - "modifiedTime": 1753831365565, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430946684, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!acPGwIaUhx3R0mTq" } diff --git a/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json b/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json index 424f762d..70b697e6 100644 --- a/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json +++ b/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828079904, - "modifiedTime": 1753828100575, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430616717, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!p9tdjQr2AZP19RYm" } diff --git a/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json b/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json index ed9f9492..73f7985a 100644 --- a/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json +++ b/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828380553, - "modifiedTime": 1753828404541, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430683436, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vHDHG3STcxTEfYAM" } diff --git a/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json b/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json index 8e1c9d03..05f355eb 100644 --- a/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json +++ b/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -167,9 +172,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753741549716, - "modifiedTime": 1755268286538, + "modifiedTime": 1755430284749, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cjGZpXCoshEqi1FI" diff --git a/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json b/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json index fcadecf6..34159ba9 100644 --- a/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json +++ b/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836075703, - "modifiedTime": 1753836131553, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431513330, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1N1jggda5DfdzdMj" } diff --git a/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json b/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json index b37a1027..ab3945ae 100644 --- a/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json +++ b/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json @@ -155,6 +155,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -207,12 +212,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835064119, - "modifiedTime": 1753835089195, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431401912, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OxsEmffWriiQmqJK" } diff --git a/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json b/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json index 1a11cab5..e824ea75 100644 --- a/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json +++ b/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753744141625, - "modifiedTime": 1755268300204, + "modifiedTime": 1755430291284, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wKklDxs5nkzILNp4" diff --git a/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json index 77ba9a93..77bd4f42 100644 --- a/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json +++ b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828035153, - "modifiedTime": 1753828072360, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430621466, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TF85tKJetUjLwh54" } diff --git a/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json b/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json index f4f34d63..f3932e9c 100644 --- a/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json +++ b/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json @@ -164,6 +164,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -177,12 +182,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832511150, - "modifiedTime": 1753832558389, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431128203, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!O1w8KPYH85ZS8X64" } diff --git a/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json b/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json index 9b9d691a..29ff25a8 100644 --- a/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json +++ b/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -166,10 +171,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753794535926, - "modifiedTime": 1754814481212, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430389345, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vzyzFwLUniWZV1rt" } diff --git a/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json b/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json index a7d7cd60..f869f8d2 100644 --- a/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json +++ b/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829710295, - "modifiedTime": 1753829730643, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430825877, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6bkbw4Ap644KZGvJ" } diff --git a/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json b/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json index 58d4a7c7..03e4053f 100644 --- a/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json +++ b/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835178086, - "modifiedTime": 1753835227169, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431409725, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1jOJHHKdtk3s2jaY" } diff --git a/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json b/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json index 7985574e..90a857ab 100644 --- a/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json +++ b/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836015665, - "modifiedTime": 1753836060729, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431519254, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TVPCWnSELOVBv6G1" } diff --git a/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json b/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json index fb6c6f98..c3a4c20c 100644 --- a/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json +++ b/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832378140, - "modifiedTime": 1753832420169, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431133663, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jlLtgK468rO5IssR" } diff --git a/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json b/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json index cec5b0d1..5b370f70 100644 --- a/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json +++ b/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836302436, - "modifiedTime": 1754815251135, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431525815, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!I1nDGpulg29GpWOW" } diff --git a/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json b/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json index 874dfc5f..850f79a6 100644 --- a/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json +++ b/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753742294258, - "modifiedTime": 1753742986604, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430296399, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!C9aWpK1shVMWP4m5" } diff --git a/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json b/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json index b1fad87b..d971f0c5 100644 --- a/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json +++ b/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829648524, - "modifiedTime": 1753829674190, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430831515, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zGm6Wa1fGF6cECY5" } diff --git a/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json b/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json index d990e614..e500c15f 100644 --- a/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json +++ b/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828516647, - "modifiedTime": 1753828537368, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430688603, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ItWisJFNGMNWeaCV" } diff --git a/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json b/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json index 46471b7f..88522c0b 100644 --- a/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json +++ b/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json @@ -137,6 +137,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -189,12 +194,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831377291, - "modifiedTime": 1753831408550, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430952360, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tP6vmnrmTq2h5sj7" } diff --git a/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json b/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json index 76b82f6a..3fbea383 100644 --- a/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json +++ b/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836344144, - "modifiedTime": 1753836369996, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431531704, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ZrRGNjGCgZTTfgDG" } diff --git a/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json b/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json index 5d65a310..2db63c9d 100644 --- a/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json +++ b/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753829740082, - "modifiedTime": 1754814992370, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430838534, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!z6yEdFYQJ5IzgTX3" } diff --git a/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json b/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json index 0804236c..7668ae21 100644 --- a/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json +++ b/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827866228, - "modifiedTime": 1753827888903, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430626466, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ZXh1GQahBiODfSTC" } diff --git a/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json index b354f5f4..dd75905f 100644 --- a/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json +++ b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json @@ -130,6 +130,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -143,12 +148,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744226240, - "modifiedTime": 1753808365384, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430301656, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CmtWqw6DwoePnX7W" } diff --git a/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json b/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json index 743aef06..bc8dea0d 100644 --- a/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json +++ b/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833840059, - "modifiedTime": 1753833870464, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431254653, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8Z5QrThfwkYPXNco" } diff --git a/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json b/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json index f096cbc4..79ec0577 100644 --- a/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json +++ b/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831267751, - "modifiedTime": 1753831296579, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430958208, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0XpSBYXxtywvBFQi" } diff --git a/src/packs/subclasses/feature_Accomplished_0wCctRupJAv5hTuE.json b/src/packs/subclasses/feature_Accomplished_0wCctRupJAv5hTuE.json index 2e23c31c..02a98035 100644 --- a/src/packs/subclasses/feature_Accomplished_0wCctRupJAv5hTuE.json +++ b/src/packs/subclasses/feature_Accomplished_0wCctRupJAv5hTuE.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253943924, - "modifiedTime": 1754253975014, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392523853, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0wCctRupJAv5hTuE" } diff --git a/src/packs/subclasses/feature_Act_of_Reprisal_k7vvMJtEcxMWUUrW.json b/src/packs/subclasses/feature_Act_of_Reprisal_k7vvMJtEcxMWUUrW.json index 6b505c86..441bf12a 100644 --- a/src/packs/subclasses/feature_Act_of_Reprisal_k7vvMJtEcxMWUUrW.json +++ b/src/packs/subclasses/feature_Act_of_Reprisal_k7vvMJtEcxMWUUrW.json @@ -38,7 +38,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -91,12 +96,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754243143650, - "modifiedTime": 1754351612905, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391854504, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!k7vvMJtEcxMWUUrW" } diff --git a/src/packs/subclasses/feature_Adept_v511C6GMShsBblah.json b/src/packs/subclasses/feature_Adept_v511C6GMShsBblah.json index a19ae5c9..4e5b9d0b 100644 --- a/src/packs/subclasses/feature_Adept_v511C6GMShsBblah.json +++ b/src/packs/subclasses/feature_Adept_v511C6GMShsBblah.json @@ -42,7 +42,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -55,12 +60,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253694438, - "modifiedTime": 1754253772703, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392496269, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!v511C6GMShsBblah" } diff --git a/src/packs/subclasses/feature_Adrenaline_uByM34yQlw38yf1V.json b/src/packs/subclasses/feature_Adrenaline_uByM34yQlw38yf1V.json index ef5d4c56..c1b11484 100644 --- a/src/packs/subclasses/feature_Adrenaline_uByM34yQlw38yf1V.json +++ b/src/packs/subclasses/feature_Adrenaline_uByM34yQlw38yf1V.json @@ -38,7 +38,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -109,12 +114,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754319984350, - "modifiedTime": 1754351983791, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392070263, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!uByM34yQlw38yf1V" } diff --git a/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json b/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json index 7cbad7d7..3b7f55d9 100644 --- a/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json +++ b/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267928272, - "modifiedTime": 1754267942465, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391976441, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!uGcs785h94RMtueH" } diff --git a/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json b/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json index b435ffad..31d79e90 100644 --- a/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json +++ b/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754268013491, - "modifiedTime": 1754268190654, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391968894, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!lwH3E0Zyf4gbVOd0" } diff --git a/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json b/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json index 59dfea8f..8ebe8a5b 100644 --- a/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json +++ b/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json @@ -17,7 +17,12 @@ }, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349515898, - "modifiedTime": 1754349515898, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392345960, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yA4MKQ1tbKFiJoDB" } diff --git a/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json b/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json index efb31ac4..3367b434 100644 --- a/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json +++ b/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754355721228, - "modifiedTime": 1754355738718, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392230926, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fefLgx6kcYWusjBb" } diff --git a/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json b/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json index 4cccb077..d7212244 100644 --- a/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json +++ b/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754237891794, - "modifiedTime": 1754245935236, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391823600, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xPWFvGvtUjIcqgJq" } diff --git a/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json b/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json index d56edfa1..259a25da 100644 --- a/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json +++ b/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267290791, - "modifiedTime": 1754267339284, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391947493, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hWsKyed1vfILg0I8" } diff --git a/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json b/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json index 1ebf58ca..df550dff 100644 --- a/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json +++ b/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json @@ -103,7 +103,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -116,12 +121,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256232412, - "modifiedTime": 1754256309647, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392388947, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!qqb5acyUSl1sCpWW" } diff --git a/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json b/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json index b6be75f0..ab44a170 100644 --- a/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json +++ b/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253784757, - "modifiedTime": 1754253819240, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392505769, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Y9eGMewnFZgPvX0M" } diff --git a/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json b/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json index 0c05fbf6..77bf5d74 100644 --- a/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json +++ b/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 100000, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254253864, - "modifiedTime": 1754254310242, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392562593, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2A0HBDxGc4gEARou" } diff --git a/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json b/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json index 752fee05..a0c614a5 100644 --- a/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json +++ b/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json @@ -85,7 +85,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 200000, @@ -98,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754179740310, - "modifiedTime": 1754496518048, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391695859, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!etaQ01yGJhBLDUqZ" } diff --git a/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json b/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json index 61ce367d..2b30206e 100644 --- a/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json +++ b/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256748303, - "modifiedTime": 1754256845527, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392438216, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dArl2cxKIEGTicXU" } diff --git a/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json b/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json index e13065b7..8028eec2 100644 --- a/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json +++ b/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754266772170, - "modifiedTime": 1754266905966, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391922354, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MBFXxIEwc0Dl4kJg" } diff --git a/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json b/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json index 8fc72db2..88a739d0 100644 --- a/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json +++ b/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254077810, - "modifiedTime": 1754254095589, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392539956, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oirsCnN66GOlK3Fa" } diff --git a/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json b/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json index 3c8fa5b5..2b69d05e 100644 --- a/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json +++ b/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json @@ -41,7 +41,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754320389008, - "modifiedTime": 1754496752362, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392080713, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cXbRm744mW6UXGam" } diff --git a/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json b/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json index 108f4571..5b2fdcdf 100644 --- a/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json +++ b/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256184552, - "modifiedTime": 1754256222832, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392395130, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!o5j2vjXU8NicYlXx" } diff --git a/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json b/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json index 2de13f94..c31aa7d2 100644 --- a/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json +++ b/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json @@ -56,7 +56,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [], "sort": 0, @@ -69,12 +74,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754319411878, - "modifiedTime": 1754351939150, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392060813, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!frBTtNMX9Y2gkuPz" } diff --git a/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json b/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json index 37e5fa11..515f12da 100644 --- a/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json +++ b/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 400000, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754220872809, - "modifiedTime": 1754353606220, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391765479, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Jdktv5p1K2PfgxrT" } diff --git a/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json b/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json index b7568b2c..1fd3d016 100644 --- a/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json +++ b/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754353798475, - "modifiedTime": 1754353830966, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392196286, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!J3A7ycmj65hlhWnI" } diff --git a/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json b/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json index 286f651d..6e65294e 100644 --- a/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json +++ b/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json @@ -173,7 +173,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [ { @@ -370,12 +375,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754180638227, - "modifiedTime": 1754353118771, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391729977, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2JH9NaOh69yN80Gw" } diff --git a/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json b/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json index 30d3928f..11317c54 100644 --- a/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json +++ b/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json @@ -126,7 +126,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [ { @@ -332,12 +337,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754219959517, - "modifiedTime": 1754353189971, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391758846, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EFUJHrkTuyv8uA9l" } diff --git a/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json b/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json index 855d34aa..56387284 100644 --- a/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json +++ b/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json @@ -231,7 +231,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [ { @@ -441,12 +446,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754176169510, - "modifiedTime": 1754352293609, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391716994, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!f37TTgCc0Q3Ih1A1" } diff --git a/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json b/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json index b282d4fb..dd2d8597 100644 --- a/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json +++ b/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json @@ -84,7 +84,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [ { @@ -202,12 +207,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349507020, - "modifiedTime": 1754349507020, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392284524, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dPcqKN5NeDkjB1HW" } diff --git a/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json b/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json index daca1154..be3ae3d6 100644 --- a/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json +++ b/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json @@ -31,7 +31,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [], "flags": {}, @@ -39,12 +44,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.QaEinpTu6c1Tj859", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754494786779, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391624722, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json b/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json index 74f5a35e..fed36288 100644 --- a/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json +++ b/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267748776, - "modifiedTime": 1754267799813, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391941589, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Cjtc43V3IzAmfIFG" } diff --git a/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json b/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json index 756a21cc..4a3dd229 100644 --- a/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json +++ b/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349511084, - "modifiedTime": 1754349511084, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392324026, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4pVBN8cuKePI423V" } diff --git a/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json b/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json index f80c05e3..23864dbe 100644 --- a/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json +++ b/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json @@ -8,7 +8,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [ { @@ -67,12 +72,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.4dVLpWQ5SpAGnc5A", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754236502610, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391644691, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json b/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json index c434eae9..ea7992a3 100644 --- a/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json +++ b/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754355219220, - "modifiedTime": 1754355252528, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392202970, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tyGB6wRKjYdIBK1i" } diff --git a/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json b/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json index e6b18e5a..2ef5b31f 100644 --- a/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json +++ b/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267251789, - "modifiedTime": 1754267277163, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391953639, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iCXtOWBKv1FdKdWz" } diff --git a/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json b/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json index 2e0d5a05..056e3bc8 100644 --- a/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json +++ b/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253863023, - "modifiedTime": 1754253898944, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392512687, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!D3ffFWSXCza4WGcM" } diff --git a/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json b/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json index 5c8e344a..ed1d1569 100644 --- a/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json +++ b/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754320756015, - "modifiedTime": 1754320791763, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392093113, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EY7Eo6hNGppVL3dR" } diff --git a/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json b/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json index a96a7324..bfef6ea3 100644 --- a/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json +++ b/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254160964, - "modifiedTime": 1754254207526, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392548972, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hNqLf3zEfKRzSbvq" } diff --git a/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json b/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json index 57cbdc0c..81730014 100644 --- a/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json +++ b/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json @@ -170,7 +170,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [ { @@ -224,12 +229,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.6j1RP4fz3BwSfoli", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754475491670, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391572653, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json b/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json index f4423761..90855e04 100644 --- a/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json +++ b/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 26, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254675541, - "modifiedTime": 1754254712265, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392573261, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8TH6h6a36h09mf6d" } diff --git a/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json b/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json index b057717a..f0088f38 100644 --- a/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json +++ b/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json @@ -39,7 +39,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -47,12 +52,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.3YIVugLcucLNtLSZ", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754240308015, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391585771, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json b/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json index 9f2e7e19..e0e21482 100644 --- a/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json +++ b/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json @@ -57,7 +57,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 200000, @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253988597, - "modifiedTime": 1754254310242, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392579823, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!w1BwNKxbQOSizLmZ" } diff --git a/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json b/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json index 5b300ade..26e04708 100644 --- a/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json +++ b/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754237297894, - "modifiedTime": 1754350175771, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391817317, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7AVRNyBcd1Nffjtn" } diff --git a/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json b/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json index 5f8c3ed7..4f464e6b 100644 --- a/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json +++ b/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267956703, - "modifiedTime": 1754496703770, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391982191, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xjZHD5Yo3Tu26rLm" } diff --git a/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json b/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json index 9b7372ee..667fefd8 100644 --- a/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json +++ b/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754244826486, - "modifiedTime": 1754350266486, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391872035, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hd7UeBPr86Mz21Pe" } diff --git a/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json b/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json index 1dbc1ae6..59b05ae6 100644 --- a/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json +++ b/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json @@ -8,7 +8,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -16,12 +21,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.c6kz0r85oQ6G7eaZ", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754236475709, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391614339, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json b/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json index df35ffdf..6981cd57 100644 --- a/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json +++ b/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json @@ -42,7 +42,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -55,12 +60,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349507020, - "modifiedTime": 1754349507020, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392299130, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!UNg4eyNfEQrMdD7G" } diff --git a/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json b/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json index 49117c74..c754561c 100644 --- a/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json +++ b/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256861952, - "modifiedTime": 1754256903587, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392449968, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dHgAnbt9m1KsQFmp" } diff --git a/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json b/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json index fe491267..41c12fe9 100644 --- a/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json +++ b/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json @@ -66,7 +66,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -79,12 +84,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349511084, - "modifiedTime": 1754349511084, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392316643, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TnuLBtHQGbqyzn82" } diff --git a/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json b/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json index 11d8f0b0..aa7a3458 100644 --- a/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json +++ b/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json @@ -45,7 +45,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -103,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754244990457, - "modifiedTime": 1754351671775, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391879536, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DPKmipNRlSAMs2Cg" } diff --git a/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json b/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json index 6eb53b78..1dab1e94 100644 --- a/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json +++ b/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json @@ -40,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754242808363, - "modifiedTime": 1754350282699, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391847017, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!G54qY96XK62hgoK9" } diff --git a/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json b/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json index 1921f2ae..72dc7dd3 100644 --- a/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json +++ b/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267110974, - "modifiedTime": 1754267209120, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391932973, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!uPPBOpoulUmSLlzr" } diff --git a/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json b/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json index 0b28959b..b1042617 100644 --- a/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json +++ b/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254320808, - "modifiedTime": 1754254522728, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392533206, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HzPa5U0EQhDfFTqW" } diff --git a/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json b/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json index ef286817..f4d1f648 100644 --- a/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json +++ b/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754355875610, - "modifiedTime": 1754355895962, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392237241, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Yij5sNyP1Ii7BAbc" } diff --git a/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json b/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json index fe00e41d..77250a5f 100644 --- a/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json +++ b/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253648251, - "modifiedTime": 1754253683668, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392490085, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YS52ZGdce605wNVT" } diff --git a/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json b/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json index 91e8975c..a0349e7c 100644 --- a/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json +++ b/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json @@ -84,7 +84,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -97,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754180232243, - "modifiedTime": 1754353321403, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391703163, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!KRyrbSLVGreIOTZe" } diff --git a/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json b/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json index 9ef8efdf..0ba951b1 100644 --- a/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json +++ b/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 200000, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754182966287, - "modifiedTime": 1754236486774, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391738116, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oLO3VjGkMcK1uvB9" } diff --git a/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json b/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json index d3a5254f..66bb65a9 100644 --- a/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json +++ b/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754322198870, - "modifiedTime": 1754322328469, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392114116, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QYNGdH37fsGuxS7L" } diff --git a/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json b/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json index 1d0406bd..ad653f1e 100644 --- a/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json +++ b/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json @@ -70,7 +70,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 500000, @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754238182847, - "modifiedTime": 1754246061287, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391829666, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oNfA5F9cKwNR7joq" } diff --git a/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json b/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json index 7e4ef685..c28c0e20 100644 --- a/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json +++ b/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256466148, - "modifiedTime": 1754256510431, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392416615, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dcutk8RVOJ2sEkO1" } diff --git a/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json b/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json index 312e055b..be204300 100644 --- a/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json +++ b/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json @@ -85,7 +85,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -93,12 +98,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.iLytX899psvrPRnG", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754494763682, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391592956, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json b/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json index ac907b99..8ac4675a 100644 --- a/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json +++ b/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json @@ -45,7 +45,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [ { @@ -110,12 +115,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754266926055, - "modifiedTime": 1754267089385, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391927605, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Qny2J3R35bvC0Cey" } diff --git a/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json b/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json index a610db7e..0ebbecc2 100644 --- a/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json +++ b/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754353916777, - "modifiedTime": 1754354052548, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392223655, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DxOAkDBfIMpXxAUD" } diff --git a/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json b/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json index 77e3504d..c46446d0 100644 --- a/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json +++ b/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json @@ -45,7 +45,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -103,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754318976447, - "modifiedTime": 1754323456453, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392035163, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hAwTXjhyphiE3aeW" } diff --git a/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json b/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json index ef813ae1..ce038aef 100644 --- a/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json +++ b/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json @@ -14,7 +14,12 @@ }, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -27,12 +32,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256326320, - "modifiedTime": 1754256425506, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392403783, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1hF5KGKQc2VKT5O8" } diff --git a/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json b/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json index cf0a8f93..311cb456 100644 --- a/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json +++ b/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json @@ -171,7 +171,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -184,12 +189,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754353243691, - "modifiedTime": 1754500973073, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392184339, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GfOSgVJW8bS1OjNq" } diff --git a/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json b/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json index ca08ad1f..54a8303a 100644 --- a/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json +++ b/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json @@ -42,7 +42,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -55,12 +60,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754353023665, - "modifiedTime": 1754353132278, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392178319, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!McoS0RxNLOg3SfSt" } diff --git a/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json b/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json index 9563a324..a8952599 100644 --- a/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json +++ b/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json @@ -46,7 +46,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 26, + "artist": "" + } }, "effects": [], "sort": 0, @@ -59,12 +64,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254574860, - "modifiedTime": 1754254657593, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392589991, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1nmFmkNXY6OYyyju" } diff --git a/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json b/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json index cf2c658d..b0cc2c4f 100644 --- a/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json +++ b/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json @@ -42,7 +42,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [ { @@ -238,12 +243,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349515898, - "modifiedTime": 1754497438787, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392338476, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!th6HZwEFnVBjUtqm" } diff --git a/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json b/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json index 48feb948..16bcf7d9 100644 --- a/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json +++ b/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754243538688, - "modifiedTime": 1754244861863, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391864452, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!866b2jjyzXP8nPRQ" } diff --git a/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json b/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json index 14420491..da75c64e 100644 --- a/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json +++ b/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754242120515, - "modifiedTime": 1754242888502, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391840785, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4qP7bNyxVHBmr4Rb" } diff --git a/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json b/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json index 0675d2c3..5a9f6cf6 100644 --- a/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json +++ b/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754236984012, - "modifiedTime": 1754245935236, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391809567, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WBiFZaYNoQNhysmN" } diff --git a/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json b/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json index 5eda8565..d56182e9 100644 --- a/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json +++ b/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json @@ -45,7 +45,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -103,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754321406972, - "modifiedTime": 1754322584899, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392101482, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iyIg1VLwO8C6jvFZ" } diff --git a/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json b/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json index 1f7c6eec..26f00fb3 100644 --- a/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json +++ b/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json @@ -8,7 +8,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -16,12 +21,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.lmUplK4FSH6EOTKJ", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754236506280, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391637042, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json b/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json index 3d6055d2..49fa4398 100644 --- a/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json +++ b/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json @@ -78,7 +78,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -91,12 +96,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754183079986, - "modifiedTime": 1754496541966, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391744012, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2F1bUFY80oce97C9" } diff --git a/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json b/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json index a4937457..886f2e21 100644 --- a/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json +++ b/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json @@ -65,7 +65,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256525016, - "modifiedTime": 1754256712476, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392424300, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HAqtoKUTrk8Mip1n" } diff --git a/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json b/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json index 474dbb8a..77edd828 100644 --- a/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json +++ b/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754319141863, - "modifiedTime": 1754319354348, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392041962, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7KnSOazixXXSnspj" } diff --git a/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json b/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json index 034ea026..9580889b 100644 --- a/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json +++ b/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json @@ -70,7 +70,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [ { @@ -141,12 +146,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754354510934, - "modifiedTime": 1754355070373, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392171336, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!KkQH0tYhagIqe2MT" } diff --git a/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json b/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json index 824572e9..14f64dca 100644 --- a/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json +++ b/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json @@ -30,7 +30,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754268237448, - "modifiedTime": 1754268308097, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391910037, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TIUsIlTS1WkK5vr2" } diff --git a/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json b/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json index 51718237..7abd2d61 100644 --- a/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json +++ b/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json @@ -26,7 +26,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -39,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256077777, - "modifiedTime": 1754256954656, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392366229, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!NAFU9roaVG7f3RNJ" } diff --git a/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json b/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json index ab0419d8..69cdf70f 100644 --- a/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json +++ b/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json @@ -22,7 +22,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -35,12 +40,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256112978, - "modifiedTime": 1754256959532, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392375946, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bcNe5qP3o6CKadhK" } diff --git a/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json b/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json index e5f1f4c8..19449650 100644 --- a/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json +++ b/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json @@ -26,7 +26,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -39,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754352806098, - "modifiedTime": 1754354057333, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392139199, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!M5mpGoAj8LRkylrY" } diff --git a/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json b/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json index b1e5f67e..f9fadc3d 100644 --- a/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json +++ b/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json @@ -22,7 +22,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -35,12 +40,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349604941, - "modifiedTime": 1754349648910, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392260989, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wg1H0hROc2acHwZh" } diff --git a/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json b/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json index 8da59a4c..f4a72013 100644 --- a/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json +++ b/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json @@ -30,7 +30,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [], "sort": 0, @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754322815758, - "modifiedTime": 1754323509061, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392009996, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!h161OSIK24Up4qNd" } diff --git a/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json b/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json index e3f38604..0462164c 100644 --- a/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json +++ b/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json @@ -22,7 +22,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -35,12 +40,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349604941, - "modifiedTime": 1754349673276, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392267640, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GLpRVxnY5E82khxH" } diff --git a/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json b/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json index 7dcbcf35..1e582722 100644 --- a/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json +++ b/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json @@ -34,7 +34,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253538384, - "modifiedTime": 1754254543287, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392466418, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!qqQlgCqhOivUFoQn" } diff --git a/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json b/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json index 03af87fc..9c69d8c8 100644 --- a/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json +++ b/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json @@ -34,7 +34,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253587683, - "modifiedTime": 1754254721869, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392474218, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4y9Ph7RsCIAbkwTk" } diff --git a/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json b/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json index 0e9ea4df..f6693e6d 100644 --- a/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json +++ b/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json @@ -34,7 +34,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 0, @@ -47,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754245881893, - "modifiedTime": 1754245958817, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391787981, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!rKRxFBlkbh9cDK8K" } diff --git a/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json b/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json index 8d7285d4..5d2af915 100644 --- a/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json +++ b/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json @@ -22,7 +22,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -35,12 +40,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754323643089, - "modifiedTime": 1754323735227, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392018277, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!95QxNZwgyEm1LqdG" } diff --git a/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json b/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json index e50ecfa8..c8f9ede3 100644 --- a/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json +++ b/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json @@ -21,7 +21,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "ownership": { @@ -33,12 +38,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174653653, - "modifiedTime": 1754236659263, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391532634, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ld8MIvk0xVJydSBz", "sort": 100000, diff --git a/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json b/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json index 53f7cf96..11d7f047 100644 --- a/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json +++ b/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json @@ -26,7 +26,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 0, @@ -39,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754246011733, - "modifiedTime": 1754246076491, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391794966, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SUo8NPBPO8aN193u" } diff --git a/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json b/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json index 08421469..053552cc 100644 --- a/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json +++ b/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json @@ -29,7 +29,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "folder": "AZWrSJzGXltzQhAJ", @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754221346981, - "modifiedTime": 1754236671909, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391677508, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xp0XMjYT85Q7E90o" } diff --git a/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json b/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json index 0e4972f6..515666a2 100644 --- a/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json +++ b/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json @@ -21,7 +21,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "folder": "AZWrSJzGXltzQhAJ", @@ -35,12 +40,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754221102716, - "modifiedTime": 1754236671090, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391669341, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!W9hs5kxOWeY7eA4Q" } diff --git a/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json b/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json index 4f9a2289..66c31f99 100644 --- a/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json +++ b/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json @@ -26,7 +26,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -39,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754268318903, - "modifiedTime": 1754268377047, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391902003, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zsUglcU4NgZ8tNgZ" } diff --git a/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json b/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json index 6da6a117..975363c7 100644 --- a/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json +++ b/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json @@ -26,7 +26,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -39,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754354451615, - "modifiedTime": 1754355901649, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392149951, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!y7ERWRIpJsdP9Re4" } diff --git a/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json b/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json index f4c35265..896c82ed 100644 --- a/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json +++ b/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json @@ -25,7 +25,12 @@ } ], "featureState": 1, - "isMulticlass": false + "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "ownership": { @@ -37,12 +42,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174655078, - "modifiedTime": 1754236660088, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391551654, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XTSODVM8st75Os8M", "sort": 200000, diff --git a/styles/less/dialog/attribution/sheet.less b/styles/less/dialog/attribution/sheet.less new file mode 100644 index 00000000..d20b094d --- /dev/null +++ b/styles/less/dialog/attribution/sheet.less @@ -0,0 +1,23 @@ +.daggerheart.dh-style.dialog.attribution { + .window-content { + padding-top: 0; + } + + .attribution-container { + display: flex; + flex-direction: column; + gap: 8px; + + h4 { + margin-bottom: 0; + } + + footer { + display: flex; + + button { + flex: 1; + } + } + } +} diff --git a/styles/less/dialog/index.less b/styles/less/dialog/index.less index 05593d44..65af4a71 100644 --- a/styles/less/dialog/index.less +++ b/styles/less/dialog/index.less @@ -1,3 +1,4 @@ +@import './attribution/sheet.less'; @import './level-up/navigation-container.less'; @import './level-up/selections-container.less'; @import './level-up/sheet.less'; diff --git a/styles/less/global/elements.less b/styles/less/global/elements.less index 5e5d3921..2f4912c5 100755 --- a/styles/less/global/elements.less +++ b/styles/less/global/elements.less @@ -519,6 +519,17 @@ } } } + .artist-attribution { + width: 100%; + display: flex; + justify-content: left; + font-style: italic; + font-family: @font-body; + margin-top: 4px; + color: light-dark(#14142599, #efe6d850); + font-size: 12px; + padding-left: 3px; + } } .application.setting.dh-style { diff --git a/styles/less/sheets/actors/actor-sheet-shared.less b/styles/less/sheets/actors/actor-sheet-shared.less index 91a2323f..4a7d6404 100644 --- a/styles/less/sheets/actors/actor-sheet-shared.less +++ b/styles/less/sheets/actors/actor-sheet-shared.less @@ -1,8 +1,20 @@ - .application.sheet.daggerheart.actor.dh-style { - .portrait img, .profile { + .portrait img, + .profile { width: 100%; object-fit: cover; object-position: top center; } -} \ No newline at end of file + + &.minimized { + .attribution-header-label { + display: none; + } + } + + .attribution-header-label { + font-style: italic; + font-family: @font-body; + color: light-dark(@chat-blue-bg, @beige-50); + } +} diff --git a/styles/less/sheets/actors/environment/header.less b/styles/less/sheets/actors/environment/header.less index 9abecd77..0ac361a1 100644 --- a/styles/less/sheets/actors/environment/header.less +++ b/styles/less/sheets/actors/environment/header.less @@ -55,6 +55,13 @@ font-size: 12px; } } + + .attribution-header-label { + text-align: left; + position: relative; + top: 4px; + margin-bottom: -6px; + } } .status-number { diff --git a/styles/less/sheets/actors/environment/sheet.less b/styles/less/sheets/actors/environment/sheet.less index 74cec028..f86e3d00 100644 --- a/styles/less/sheets/actors/environment/sheet.less +++ b/styles/less/sheets/actors/environment/sheet.less @@ -5,6 +5,10 @@ .appTheme({ &.environment { background-image: url('../assets/parchments/dh-parchment-dark.png'); + + .attribution-header-label { + background-image: url('../assets/parchments/dh-parchment-dark.png'); + } } }, { &.environment { @@ -18,5 +22,11 @@ overflow-y: auto; scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; + + &.active { + overflow: hidden; + display: flex; + flex-direction: column; + } } } diff --git a/styles/less/sheets/index.less b/styles/less/sheets/index.less index a8f36a63..1ffb92fe 100644 --- a/styles/less/sheets/index.less +++ b/styles/less/sheets/index.less @@ -26,3 +26,5 @@ @import './items/class.less'; @import './items/domain-card.less'; @import './items/feature.less'; +@import './items/heritage.less'; +@import './items/item-sheet-shared.less'; diff --git a/styles/less/sheets/items/heritage.less b/styles/less/sheets/items/heritage.less new file mode 100644 index 00000000..1342f5ee --- /dev/null +++ b/styles/less/sheets/items/heritage.less @@ -0,0 +1,12 @@ +.application.sheet.daggerheart.dh-style { + &.ancestry, + &.community { + .item-card-header { + .item-info { + .item-description { + gap: 0; + } + } + } + } +} diff --git a/styles/less/sheets/items/item-sheet-shared.less b/styles/less/sheets/items/item-sheet-shared.less new file mode 100644 index 00000000..d0a8cc48 --- /dev/null +++ b/styles/less/sheets/items/item-sheet-shared.less @@ -0,0 +1,13 @@ +.application.sheet.daggerheart.dh-style.item { + &.minimized { + .attribution-header-label { + display: none; + } + } + + .attribution-header-label { + font-style: italic; + font-family: @font-body; + color: light-dark(@chat-blue-bg, @beige-50); + } +} diff --git a/templates/dialogs/attribution.hbs b/templates/dialogs/attribution.hbs new file mode 100644 index 00000000..20f00fb8 --- /dev/null +++ b/templates/dialogs/attribution.hbs @@ -0,0 +1,26 @@ +