From 264ba44a147f2dffc24256545e3f65444e5aa453 Mon Sep 17 00:00:00 2001 From: Psitacus <59754077+Psitacus@users.noreply.github.com> Date: Fri, 15 Aug 2025 20:05:02 -0600 Subject: [PATCH 01/31] add typo report template (#971) Co-authored-by: Psitacus --- .github/ISSUE_TEMPLATE/typo_report.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/typo_report.md diff --git a/.github/ISSUE_TEMPLATE/typo_report.md b/.github/ISSUE_TEMPLATE/typo_report.md new file mode 100644 index 00000000..67b1cd98 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/typo_report.md @@ -0,0 +1,9 @@ +--- +name: Typo report +about: Create a new issue to report a compendium typo +title: "[TYPO] - " +labels: compendium, typo +type: bug +assignees: '' + +--- \ No newline at end of file From 667edda50ac1491f1abc900de0d953522988d38b Mon Sep 17 00:00:00 2001 From: Dapoulp <74197441+Dapoulp@users.noreply.github.com> Date: Sun, 17 Aug 2025 16:04:16 +0200 Subject: [PATCH 02/31] Fix/fix weapon damage datas in sheet (#988) * Temp ActionField attack type missing * Move missing attack type to getModel * Fix weapon base attack reseting on update --- module/documents/item.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/module/documents/item.mjs b/module/documents/item.mjs index fb558e8c..8492f068 100644 --- a/module/documents/item.mjs +++ b/module/documents/item.mjs @@ -28,6 +28,14 @@ export default class DHItem extends foundry.documents.Item { return doc; } + /* -------------------------------------------- */ + + /** @inheritDoc */ + static migrateData(source) { + if(source.system?.attack && !source.system.attack.type) source.system.attack.type = "attack"; + return super.migrateData(source); + } + /** * @inheritdoc * @param {object} options - Options which modify the getRollData method. From 6100f3cf9eac8951bc36ef40a2ca16a50031b416 Mon Sep 17 00:00:00 2001 From: Dapoulp <74197441+Dapoulp@users.noreply.github.com> Date: Sun, 17 Aug 2025 18:40:47 +0200 Subject: [PATCH 03/31] [PR]Fix/allow deal damage button use owner (#985) * Temp ActionField attack type missing * Move missing attack type to getModel * Fix player not allowed to use Deal Damage button if Actor not assigned --- module/applications/ui/chatLog.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/applications/ui/chatLog.mjs b/module/applications/ui/chatLog.mjs index 8b4b12d3..a80974ed 100644 --- a/module/applications/ui/chatLog.mjs +++ b/module/applications/ui/chatLog.mjs @@ -108,7 +108,7 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo async onRollDamage(event, message) { event.stopPropagation(); const actor = await this.getActor(message.system.source.actor); - if (game.user.character?.id !== actor.id && !game.user.isGM) return true; + if(!actor.isOwner) return true; if (message.system.source.item && message.system.source.action) { const action = this.getAction(actor, message.system.source.item, message.system.source.action); if (!action || !action?.rollDamage) return; From 505ee6d3cf05c9941314dbbffc1ca74d0e85ccac Mon Sep 17 00:00:00 2001 From: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> Date: Mon, 18 Aug 2025 02:50:53 +1000 Subject: [PATCH 04/31] Fix/add translation key for Unarmed Attack (#973) Co-authored-by: Chris Ryan --- lang/en.json | 2 +- module/data/actor/character.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/en.json b/lang/en.json index 17605f40..7daf6b14 100755 --- a/lang/en.json +++ b/lang/en.json @@ -1985,7 +1985,7 @@ "true": "True", "type": "Type", "unarmed": "Unarmed", - "unarmedStrike": "Unarmed Strike", + "unarmedAttack": "Unarmed Attack", "unarmored": "Unarmored", "use": "Use", "used": "Used", diff --git a/module/data/actor/character.mjs b/module/data/actor/character.mjs index 45dfcfc8..bb6a8c65 100644 --- a/module/data/actor/character.mjs +++ b/module/data/actor/character.mjs @@ -95,7 +95,7 @@ export default class DhCharacter extends BaseDataActor { }), attack: new ActionField({ initial: { - name: 'Unarmed Attack', + name: 'DAGGERHEART.GENERAL.unarmedAttack', img: 'icons/skills/melee/unarmed-punch-fist-yellow-red.webp', _id: foundry.utils.randomID(), systemPath: 'attack', From e692f3814d37e4981ce0a54ea4e7ffdea49b67d6 Mon Sep 17 00:00:00 2001 From: Luiz HD Costa Date: Sun, 17 Aug 2025 13:51:29 -0300 Subject: [PATCH 05/31] Add setup script for development (#981) --- .env.example | 2 ++ .gitignore | 1 + README.md | 45 +++++++++++++++++++++++++++++++-------------- package.json | 5 +++-- tools/dev-setup.mjs | 18 ++++++++++++++++++ tools/run-start.mjs | 27 +++++++++++++++++++++++++++ 6 files changed, 82 insertions(+), 16 deletions(-) create mode 100644 .env.example create mode 100644 tools/dev-setup.mjs create mode 100644 tools/run-start.mjs diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..730309d3 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +FOUNDRY_MAIN_PATH=/path/to/foundry/resources/app/main.js +FOUNDRY_DATA_PATH=/path/to/foundry/data \ No newline at end of file diff --git a/.gitignore b/.gitignore index 264581a4..9a22c0ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vscode +.env node_modules /packs Build diff --git a/README.md b/README.md index fda78b4b..0c2dabc3 100644 --- a/README.md +++ b/README.md @@ -24,24 +24,41 @@ You can find the documentation here: https://github.com/Foundryborne/daggerheart ## Development Setup -- Open a terminal in the directory with the repo `cd //` -- NOTE: The repo should be placed in the system files are or somewhere else and a link (if on linux) is placed in the system directory -- NOTE: Linux link can be made using `ln -snf daggerheart` inside the system folder -- Install npm `npm install` -- Update package.json to match your profile +1. **Navigate to the repo directory:** -``` -"start": "concurrently \"rollup -c --watch\" \"node C:/FoundryDev/resources/app/main.js --dataPath=C:/FoundryDevFiles --noupnp\" \"gulp\"", -"start-test": "node C:/FoundryDev/resources/app/main.js --dataPath=C:/FoundryDevFiles && rollup -c --watch && gulp", + ```bash + cd // + ``` -``` +2. **Install dependencies:** -- Replace `C:/FoundryDev/resources/app/main.js` with `////` -- The main is likely in `/resouces/app/main.js` -- Replace `--dataPath=C:/FoundryDevFiles` with `////` + ```bash + npm install + ``` -Now you should be able to build the app using `npm start` -[Foundry VTT Website][1] +3. **Configure your Foundry paths:** + + ```bash + npm run setup:dev -- --foundry-path="/path/to/foundry/main.js" --data-path="/path/to/data" + ``` + +4. **Start developing:** + ```bash + npm start + ``` + +### Available Scripts + +- `npm start` - Start development with file watching and Foundry launching +- `npm run build` - One-time build +- `npm run setup:dev -- --foundry-path="" --data-path=""` - Configure development environment + +### Notes + +- The repo should be placed in your Foundry `Data/systems/` directory or symlinked there +- Linux symlink can be made using `ln -snf daggerheart` inside the systems folder +- Your `.env` file is ignored by git, so each developer can have their own configuration + [Foundry VTT Website][1] [1]: https://foundryvtt.com/ diff --git a/package.json b/package.json index 023ccff2..dbece0c7 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "rollup": "^4.40.0" }, "scripts": { - "start": "concurrently \"rollup -c --watch\" \"node ../../../../FoundryDev/main.js --dataPath=../../../ --noupnp\" \"gulp\"", + "start": "node ./tools/run-start.mjs", "start-test": "node ./resources/app/main.js --dataPath=./ && rollup -c --watch && gulp", "build": "npm run rollup && npm run gulp", "rollup": "rollup -c", @@ -16,7 +16,8 @@ "pushLDBtoYML": "node ./tools/pushLDBtoYML.mjs", "pullYMLtoLDB": "node ./tools/pullYMLtoLDB.mjs", "pullYMLtoLDBBuild": "node ./tools/pullYMLtoLDBBuild.mjs", - "createSymlink": "node ./tools/create-symlink.mjs" + "createSymlink": "node ./tools/create-symlink.mjs", + "setup:dev": "node ./tools/dev-setup.mjs" }, "devDependencies": { "@foundryvtt/foundryvtt-cli": "^1.0.2", diff --git a/tools/dev-setup.mjs b/tools/dev-setup.mjs new file mode 100644 index 00000000..f232f5a8 --- /dev/null +++ b/tools/dev-setup.mjs @@ -0,0 +1,18 @@ +#!/usr/bin/env node +import fs from 'fs'; + +const args = process.argv.slice(2); +const foundryPath = args.find(arg => arg.startsWith('--foundry-path='))?.split('=')[1]; +const dataPath = args.find(arg => arg.startsWith('--data-path='))?.split('=')[1]; + +if (!foundryPath || !dataPath) { + console.log('Usage: npm run setup:dev -- --foundry-path="/path/to/foundry/main.js" --data-path="/path/to/data"'); + process.exit(1); +} + +const envContent = `FOUNDRY_MAIN_PATH=${foundryPath} +FOUNDRY_DATA_PATH=${dataPath} +`; + +fs.writeFileSync('.env', envContent); +console.log(`✅ Development environment configured: ${foundryPath}, ${dataPath}`); diff --git a/tools/run-start.mjs b/tools/run-start.mjs new file mode 100644 index 00000000..e620d13f --- /dev/null +++ b/tools/run-start.mjs @@ -0,0 +1,27 @@ +#!/usr/bin/env node +import { spawn } from 'child_process'; +import fs from 'fs'; + +// Load .env file if it exists +if (fs.existsSync('.env')) { + const envFile = fs.readFileSync('.env', 'utf8'); + envFile.split('\n').forEach(line => { + const [key, value] = line.split('='); + if (key && value) { + process.env[key] = value; + } + }); +} + +// Set defaults if not in environment +const foundryPath = process.env.FOUNDRY_MAIN_PATH || '../../../../FoundryDev/main.js'; +const dataPath = process.env.FOUNDRY_DATA_PATH || '../../../'; + +// Run the original command with proper environment +const args = ['rollup -c --watch', `node "${foundryPath}" --dataPath="${dataPath}" --noupnp`, 'gulp']; + +spawn('npx', ['concurrently', ...args.map(arg => `"${arg}"`)], { + stdio: 'inherit', + cwd: process.cwd(), + shell: true +}); From 233e9eddbeda6e20de7ed29c6b3d92b0a147354b Mon Sep 17 00:00:00 2001 From: Nikhil Nagarajan Date: Sun, 17 Aug 2025 15:59:13 -0400 Subject: [PATCH 06/31] [PR] testing something (#995) * testing something * added template for PR test --- .../community_pull_request_template.md | 55 +++++++++++++++++++ pull_request_template.md | 9 +++ 2 files changed, 64 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md diff --git a/.github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md new file mode 100644 index 00000000..25812870 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md @@ -0,0 +1,55 @@ +--- +name: Pull Request +about: Create a new pull request +title: "[Community PR] " +labels: community pr +assignees: '' +--- +## Description + +Please include a summary of the change and which issue is fixed (if applicable). Also include relevant context or motivation for the change. + +- Fixes #(issue) +- Closes #(issue) + +## Type of Change + +Please check the relevant options: + +- [ ] Bug fix +- [ ] New feature +- [ ] Code cleanup/refactor +- [ ] Documentation update +- [ ] Test coverage +- [ ] Dependency update +- [ ] Configuration change +- [ ] Other (please describe): + +## How Has This Been Tested? + +Please describe the tests you ran to verify your changes: + +- [ ] Manual testing +- [ ] Other: + +## Screenshots (if applicable) + +Include screenshots or GIFs to help explain your changes visually. + +## Checklist + +- [ ] My code follows the project style guidelines +- [ ] I have performed a self-review of my code +- [ ] I have commented my code where necessary +- [ ] I have made corresponding changes to the documentation +- [ ] My changes generate no new warnings or errors +- [ ] I have added tests that prove my fix or feature works +- [ ] New and existing tests pass locally with my changes + +## Additional Comments + +Add any other context or questions here. + +--- + +> Thank you for your contribution! 🎉 diff --git a/pull_request_template.md b/pull_request_template.md index 194ce9f4..c1b8cbfa 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -1,3 +1,12 @@ +--- +name: Pull Request +about: Create a new pull request +title: "[PR] " +labels: pr +assignees: '' +--- +Is this a community PR? Please go to preview tab and click [here](?expand=1&template=community_pull_request_template.md). If not, delete this line. + ## Description Please include a summary of the change and which issue is fixed (if applicable). Also include relevant context or motivation for the change. From 577ed5f491c0bf36224e4dc062fe1581ddcf67a8 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 18 Aug 2025 03:00:30 +0200 Subject: [PATCH 07/31] Added tooltips for experience description (#975) --- templates/dialogs/dice-roll/rollSelection.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/dialogs/dice-roll/rollSelection.hbs b/templates/dialogs/dice-roll/rollSelection.hbs index 3aac0321..b2feaa0b 100644 --- a/templates/dialogs/dice-roll/rollSelection.hbs +++ b/templates/dialogs/dice-roll/rollSelection.hbs @@ -74,7 +74,7 @@ {{localize "DAGGERHEART.GENERAL.experience.plural"}} {{#each experiences}} {{#if name}} -
+
{{#if (includes ../selectedExperiences id)}} {{else}} From 649b4d64bc131dc71a6e3596664ce011445c397a Mon Sep 17 00:00:00 2001 From: Nikhil Nagarajan Date: Sun, 17 Aug 2025 21:12:59 -0400 Subject: [PATCH 08/31] Initial Commit (#992) --- .github/ISSUE_TEMPLATE/bug_report.md | 12 ++++++------ .github/ISSUE_TEMPLATE/feature_report.md | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 6 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/feature_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 938abe7c..71d48111 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,10 +1,10 @@ --- name: Bug report -about: Create a report to help us improve -title: "[BUG] - " +about: Create a bug report to help us identify issues and resolve them +title: "[Bug] " labels: bug +type: bug assignees: '' - --- **Describe the bug** @@ -24,11 +24,11 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Setup Information:** - - OS: [e.g. iOS] + - OS: [e.g. iOS, Windows] - Browser [e.g. chrome, safari] - Foundry Version [e.g. v13 b342] -- System Version [e.g. main-3593f44] +- System Version [e.g. v.1.0, v.1.0.1] **Additional context** -Add any other context about the problem here. +Add any other context about the problem here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_report.md b/.github/ISSUE_TEMPLATE/feature_report.md new file mode 100644 index 00000000..df00ba37 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_report.md @@ -0,0 +1,14 @@ +--- +name: Feature report +about: Create a feature report for suggestions on improving the system +title: "[Feature] " +labels: enhancement, discussion, maybe +type: feature +assignees: '' +--- + +**Description** +A clear and concise description of what feature needs to be implemented. + +**Screenshots** +If applicable, add screenshots to help explain the feature that needs to be implemented. \ No newline at end of file From 495575fba4db1c9bcb2664a3807c4b01e3809ce0 Mon Sep 17 00:00:00 2001 From: Murilo Brito <91566541+moliloo@users.noreply.github.com> Date: Sun, 17 Aug 2025 22:19:22 -0300 Subject: [PATCH 09/31] [Support] Update Development Branch (#1001) * add typo report template (#971) Co-authored-by: Psitacus * Fix/fix weapon damage datas in sheet (#988) * Temp ActionField attack type missing * Move missing attack type to getModel * Fix weapon base attack reseting on update * [PR]Fix/allow deal damage button use owner (#985) * Temp ActionField attack type missing * Move missing attack type to getModel * Fix player not allowed to use Deal Damage button if Actor not assigned * Fix/add translation key for Unarmed Attack (#973) Co-authored-by: Chris Ryan * Add setup script for development (#981) * [PR] testing something (#995) * testing something * added template for PR test * Initial Commit (#992) --------- Co-authored-by: Psitacus <59754077+Psitacus@users.noreply.github.com> Co-authored-by: Psitacus Co-authored-by: Dapoulp <74197441+Dapoulp@users.noreply.github.com> Co-authored-by: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> Co-authored-by: Chris Ryan Co-authored-by: Luiz HD Costa Co-authored-by: Nikhil Nagarajan --- .env.example | 2 + .github/ISSUE_TEMPLATE/bug_report.md | 12 ++-- .github/ISSUE_TEMPLATE/feature_report.md | 14 +++++ .github/ISSUE_TEMPLATE/typo_report.md | 9 +++ .../community_pull_request_template.md | 55 +++++++++++++++++++ .gitignore | 1 + README.md | 45 ++++++++++----- lang/en.json | 2 +- module/applications/ui/chatLog.mjs | 2 +- module/data/actor/character.mjs | 2 +- module/documents/item.mjs | 8 +++ package.json | 5 +- pull_request_template.md | 9 +++ tools/dev-setup.mjs | 18 ++++++ tools/run-start.mjs | 27 +++++++++ 15 files changed, 186 insertions(+), 25 deletions(-) create mode 100644 .env.example create mode 100644 .github/ISSUE_TEMPLATE/feature_report.md create mode 100644 .github/ISSUE_TEMPLATE/typo_report.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md create mode 100644 tools/dev-setup.mjs create mode 100644 tools/run-start.mjs diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..730309d3 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +FOUNDRY_MAIN_PATH=/path/to/foundry/resources/app/main.js +FOUNDRY_DATA_PATH=/path/to/foundry/data \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 938abe7c..71d48111 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,10 +1,10 @@ --- name: Bug report -about: Create a report to help us improve -title: "[BUG] - " +about: Create a bug report to help us identify issues and resolve them +title: "[Bug] " labels: bug +type: bug assignees: '' - --- **Describe the bug** @@ -24,11 +24,11 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Setup Information:** - - OS: [e.g. iOS] + - OS: [e.g. iOS, Windows] - Browser [e.g. chrome, safari] - Foundry Version [e.g. v13 b342] -- System Version [e.g. main-3593f44] +- System Version [e.g. v.1.0, v.1.0.1] **Additional context** -Add any other context about the problem here. +Add any other context about the problem here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_report.md b/.github/ISSUE_TEMPLATE/feature_report.md new file mode 100644 index 00000000..df00ba37 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_report.md @@ -0,0 +1,14 @@ +--- +name: Feature report +about: Create a feature report for suggestions on improving the system +title: "[Feature] " +labels: enhancement, discussion, maybe +type: feature +assignees: '' +--- + +**Description** +A clear and concise description of what feature needs to be implemented. + +**Screenshots** +If applicable, add screenshots to help explain the feature that needs to be implemented. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/typo_report.md b/.github/ISSUE_TEMPLATE/typo_report.md new file mode 100644 index 00000000..67b1cd98 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/typo_report.md @@ -0,0 +1,9 @@ +--- +name: Typo report +about: Create a new issue to report a compendium typo +title: "[TYPO] - " +labels: compendium, typo +type: bug +assignees: '' + +--- \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md new file mode 100644 index 00000000..25812870 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/community_pull_request_template.md @@ -0,0 +1,55 @@ +--- +name: Pull Request +about: Create a new pull request +title: "[Community PR] " +labels: community pr +assignees: '' +--- +## Description + +Please include a summary of the change and which issue is fixed (if applicable). Also include relevant context or motivation for the change. + +- Fixes #(issue) +- Closes #(issue) + +## Type of Change + +Please check the relevant options: + +- [ ] Bug fix +- [ ] New feature +- [ ] Code cleanup/refactor +- [ ] Documentation update +- [ ] Test coverage +- [ ] Dependency update +- [ ] Configuration change +- [ ] Other (please describe): + +## How Has This Been Tested? + +Please describe the tests you ran to verify your changes: + +- [ ] Manual testing +- [ ] Other: + +## Screenshots (if applicable) + +Include screenshots or GIFs to help explain your changes visually. + +## Checklist + +- [ ] My code follows the project style guidelines +- [ ] I have performed a self-review of my code +- [ ] I have commented my code where necessary +- [ ] I have made corresponding changes to the documentation +- [ ] My changes generate no new warnings or errors +- [ ] I have added tests that prove my fix or feature works +- [ ] New and existing tests pass locally with my changes + +## Additional Comments + +Add any other context or questions here. + +--- + +> Thank you for your contribution! 🎉 diff --git a/.gitignore b/.gitignore index 264581a4..9a22c0ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vscode +.env node_modules /packs Build diff --git a/README.md b/README.md index fda78b4b..0c2dabc3 100644 --- a/README.md +++ b/README.md @@ -24,24 +24,41 @@ You can find the documentation here: https://github.com/Foundryborne/daggerheart ## Development Setup -- Open a terminal in the directory with the repo `cd //` -- NOTE: The repo should be placed in the system files are or somewhere else and a link (if on linux) is placed in the system directory -- NOTE: Linux link can be made using `ln -snf daggerheart` inside the system folder -- Install npm `npm install` -- Update package.json to match your profile +1. **Navigate to the repo directory:** -``` -"start": "concurrently \"rollup -c --watch\" \"node C:/FoundryDev/resources/app/main.js --dataPath=C:/FoundryDevFiles --noupnp\" \"gulp\"", -"start-test": "node C:/FoundryDev/resources/app/main.js --dataPath=C:/FoundryDevFiles && rollup -c --watch && gulp", + ```bash + cd // + ``` -``` +2. **Install dependencies:** -- Replace `C:/FoundryDev/resources/app/main.js` with `////` -- The main is likely in `/resouces/app/main.js` -- Replace `--dataPath=C:/FoundryDevFiles` with `////` + ```bash + npm install + ``` -Now you should be able to build the app using `npm start` -[Foundry VTT Website][1] +3. **Configure your Foundry paths:** + + ```bash + npm run setup:dev -- --foundry-path="/path/to/foundry/main.js" --data-path="/path/to/data" + ``` + +4. **Start developing:** + ```bash + npm start + ``` + +### Available Scripts + +- `npm start` - Start development with file watching and Foundry launching +- `npm run build` - One-time build +- `npm run setup:dev -- --foundry-path="" --data-path=""` - Configure development environment + +### Notes + +- The repo should be placed in your Foundry `Data/systems/` directory or symlinked there +- Linux symlink can be made using `ln -snf daggerheart` inside the systems folder +- Your `.env` file is ignored by git, so each developer can have their own configuration + [Foundry VTT Website][1] [1]: https://foundryvtt.com/ diff --git a/lang/en.json b/lang/en.json index 1088a94f..954f8025 100755 --- a/lang/en.json +++ b/lang/en.json @@ -1995,7 +1995,7 @@ "true": "True", "type": "Type", "unarmed": "Unarmed", - "unarmedStrike": "Unarmed Strike", + "unarmedAttack": "Unarmed Attack", "unarmored": "Unarmored", "use": "Use", "used": "Used", diff --git a/module/applications/ui/chatLog.mjs b/module/applications/ui/chatLog.mjs index 8b4b12d3..a80974ed 100644 --- a/module/applications/ui/chatLog.mjs +++ b/module/applications/ui/chatLog.mjs @@ -108,7 +108,7 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo async onRollDamage(event, message) { event.stopPropagation(); const actor = await this.getActor(message.system.source.actor); - if (game.user.character?.id !== actor.id && !game.user.isGM) return true; + if(!actor.isOwner) return true; if (message.system.source.item && message.system.source.action) { const action = this.getAction(actor, message.system.source.item, message.system.source.action); if (!action || !action?.rollDamage) return; diff --git a/module/data/actor/character.mjs b/module/data/actor/character.mjs index 45dfcfc8..bb6a8c65 100644 --- a/module/data/actor/character.mjs +++ b/module/data/actor/character.mjs @@ -95,7 +95,7 @@ export default class DhCharacter extends BaseDataActor { }), attack: new ActionField({ initial: { - name: 'Unarmed Attack', + name: 'DAGGERHEART.GENERAL.unarmedAttack', img: 'icons/skills/melee/unarmed-punch-fist-yellow-red.webp', _id: foundry.utils.randomID(), systemPath: 'attack', diff --git a/module/documents/item.mjs b/module/documents/item.mjs index fb558e8c..8492f068 100644 --- a/module/documents/item.mjs +++ b/module/documents/item.mjs @@ -28,6 +28,14 @@ export default class DHItem extends foundry.documents.Item { return doc; } + /* -------------------------------------------- */ + + /** @inheritDoc */ + static migrateData(source) { + if(source.system?.attack && !source.system.attack.type) source.system.attack.type = "attack"; + return super.migrateData(source); + } + /** * @inheritdoc * @param {object} options - Options which modify the getRollData method. diff --git a/package.json b/package.json index 023ccff2..dbece0c7 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "rollup": "^4.40.0" }, "scripts": { - "start": "concurrently \"rollup -c --watch\" \"node ../../../../FoundryDev/main.js --dataPath=../../../ --noupnp\" \"gulp\"", + "start": "node ./tools/run-start.mjs", "start-test": "node ./resources/app/main.js --dataPath=./ && rollup -c --watch && gulp", "build": "npm run rollup && npm run gulp", "rollup": "rollup -c", @@ -16,7 +16,8 @@ "pushLDBtoYML": "node ./tools/pushLDBtoYML.mjs", "pullYMLtoLDB": "node ./tools/pullYMLtoLDB.mjs", "pullYMLtoLDBBuild": "node ./tools/pullYMLtoLDBBuild.mjs", - "createSymlink": "node ./tools/create-symlink.mjs" + "createSymlink": "node ./tools/create-symlink.mjs", + "setup:dev": "node ./tools/dev-setup.mjs" }, "devDependencies": { "@foundryvtt/foundryvtt-cli": "^1.0.2", diff --git a/pull_request_template.md b/pull_request_template.md index 194ce9f4..c1b8cbfa 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -1,3 +1,12 @@ +--- +name: Pull Request +about: Create a new pull request +title: "[PR] " +labels: pr +assignees: '' +--- +Is this a community PR? Please go to preview tab and click [here](?expand=1&template=community_pull_request_template.md). If not, delete this line. + ## Description Please include a summary of the change and which issue is fixed (if applicable). Also include relevant context or motivation for the change. diff --git a/tools/dev-setup.mjs b/tools/dev-setup.mjs new file mode 100644 index 00000000..f232f5a8 --- /dev/null +++ b/tools/dev-setup.mjs @@ -0,0 +1,18 @@ +#!/usr/bin/env node +import fs from 'fs'; + +const args = process.argv.slice(2); +const foundryPath = args.find(arg => arg.startsWith('--foundry-path='))?.split('=')[1]; +const dataPath = args.find(arg => arg.startsWith('--data-path='))?.split('=')[1]; + +if (!foundryPath || !dataPath) { + console.log('Usage: npm run setup:dev -- --foundry-path="/path/to/foundry/main.js" --data-path="/path/to/data"'); + process.exit(1); +} + +const envContent = `FOUNDRY_MAIN_PATH=${foundryPath} +FOUNDRY_DATA_PATH=${dataPath} +`; + +fs.writeFileSync('.env', envContent); +console.log(`✅ Development environment configured: ${foundryPath}, ${dataPath}`); diff --git a/tools/run-start.mjs b/tools/run-start.mjs new file mode 100644 index 00000000..e620d13f --- /dev/null +++ b/tools/run-start.mjs @@ -0,0 +1,27 @@ +#!/usr/bin/env node +import { spawn } from 'child_process'; +import fs from 'fs'; + +// Load .env file if it exists +if (fs.existsSync('.env')) { + const envFile = fs.readFileSync('.env', 'utf8'); + envFile.split('\n').forEach(line => { + const [key, value] = line.split('='); + if (key && value) { + process.env[key] = value; + } + }); +} + +// Set defaults if not in environment +const foundryPath = process.env.FOUNDRY_MAIN_PATH || '../../../../FoundryDev/main.js'; +const dataPath = process.env.FOUNDRY_DATA_PATH || '../../../'; + +// Run the original command with proper environment +const args = ['rollup -c --watch', `node "${foundryPath}" --dataPath="${dataPath}" --noupnp`, 'gulp']; + +spawn('npx', ['concurrently', ...args.map(arg => `"${arg}"`)], { + stdio: 'inherit', + cwd: process.cwd(), + shell: true +}); From 8c84edddadb7d334b3d773ec344f09176592e48f Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 18 Aug 2025 03:44:59 +0200 Subject: [PATCH 10/31] [PR][Feature] 798 - Attribution (#986) * Added attribution for items, adversary and environment * Added Attribution to all adversaries * Added attribution to environments * Added attribution for class and subclass * Added Attribution to Ancestry/Community * Added Attribution for Beastforms * Added Attribution to DomainCards * Added Attribution for wepaons * Attribution for Armor/Loot/Consumables * Added a setting to hide attribution --- lang/en.json | 17 +++- module/applications/dialogs/_module.mjs | 1 + .../dialogs/attributionDialog.mjs | 93 +++++++++++++++++++ .../applications/sheets/actors/adversary.mjs | 10 +- .../sheets/actors/environment.mjs | 12 ++- .../sheets/api/application-mixin.mjs | 50 +++++++++- module/applications/sheets/api/base-actor.mjs | 3 + module/applications/sheets/api/base-item.mjs | 20 +++- module/config/generalConfig.mjs | 7 ++ module/data/actor/adversary.mjs | 3 +- module/data/actor/base.mjs | 17 +++- module/data/actor/environment.mjs | 3 +- module/data/item/base.mjs | 18 +++- module/data/settings/Appearance.mjs | 5 + ...ersary_Acid_Burrower_89yAh30vaNQOALlz.json | 9 +- ...ary_Adult_Flickerfly_G7jiltRjgvVhZewm.json | 9 +- ..._Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json | 9 +- ...ary_Arch_Necromancer_WPEOIGfclNJxWb87.json | 9 +- ...versary_Archer_Guard_JRhrrEg5UroURiAD.json | 9 +- ...sary_Archer_Squadron_0ts6CGd93lLqGZI5.json | 9 +- ...ry_Assassin_Poisoner_h5RuhzGL17dW5FBT.json | 9 +- ...adversary_Battle_Box_dgH3fW9FTYLaIDvS.json | 9 +- .../adversary_Bear_71qKDLKO3CsrNkdy.json | 9 +- ...versary_Bladed_Guard_B4LZcGuBAHzyVdzy.json | 9 +- ...ersary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json | 9 +- .../adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json | 9 +- ...dversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json | 9 +- .../adversary_Conscript_99TqczuQipBmaB8i.json | 9 +- .../adversary_Construct_uOP5oT9QzXPlnf3p.json | 9 +- .../adversary_Courtesan_ZxWaWPdzFIUPNC62.json | 9 +- .../adversary_Courtier_CBBuEXAlLKFMJdjg.json | 9 +- ...adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json | 9 +- .../adversary_Cult_Fang_tyBOpLfigAhI9bU3.json | 9 +- ...ersary_Cult_Initiate_zx99sOGTXicP4SSD.json | 9 +- ...ry_Deeproot_Defender_9x2xY9zwc3xzbXo5.json | 9 +- ...ary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json | 9 +- ...ary_Demon_of_Despair_kE4dfhqmIQpNd44e.json | 9 +- ...sary_Demon_of_Hubris_2VN3BftageoTTIzu.json | 9 +- ...ry_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json | 9 +- ...rsary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json | 9 +- ...y_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json | 9 +- .../adversary_Dire_Bat_tBWHW00epmMnkawe.json | 9 +- .../adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json | 9 +- .../adversary_Dryad_wR7cFKrHvRzbzhBT.json | 9 +- ...ersary_Electric_Eels_TLzY1nDw0Bu9Ud40.json | 9 +- ...sary_Elemental_Spark_P7h54ZePFPHpYwvB.json | 9 +- ...ersary_Elite_Soldier_bfhVWMBUh61b9J6n.json | 9 +- ...ry_Failed_Experiment_ChwwVqowFw8hJQwT.json | 9 +- ...y_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json | 9 +- ...sary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json | 9 +- ...rlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json | 11 ++- ..._Undefeated_Champion_RXkZTwBRi4dJ3JE5.json | 11 ++- ...ry_Giant_Beastmaster_8VZIgU12cB3cvlyH.json | 9 +- ...ersary_Giant_Brawler_YnObCleGjPT7yqEc.json | 9 +- ...dversary_Giant_Eagle_OMQ0v6PE8s1mSU0K.json | 9 +- ...ary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json | 9 +- .../adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json | 9 +- ...ersary_Giant_Recruit_5s8wSvpyC5rxY5aD.json | 9 +- ...rsary_Giant_Scorpion_fmfntuJ8mHRCAktP.json | 9 +- ...dversary_Glass_Snake_8KWVLWXFhlY2kYx0.json | 9 +- .../adversary_Gorgon_8mJYMpbLTb8qIOrr.json | 9 +- ...ater_Earth_Elemental_dsfB3YhoL5SudvS2.json | 9 +- ...ater_Water_Elemental_xIICT6tEdnA7dKDV.json | 9 +- ...adversary_Green_Ooze_SHXedd9zZPVfUgUa.json | 9 +- ...sary_Hallowed_Archer_kabueAo6BALApWqp.json | 9 +- ...ary_Hallowed_Soldier_VENwg7xEFcYObjmT.json | 9 +- .../adversary_Harrier_uRtghKE9mHlII4rs.json | 9 +- ...adversary_Head_Guard_mK3A5FTx6k8iPU3F.json | 9 +- ...versary_Head_Vampire_i2UNbRvgyoSs07M6.json | 9 +- ...dversary_High_Seraph_r1mbfSSwKWdcFdAU.json | 9 +- ...sary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json | 9 +- .../adversary_Hydra_MI126iMOOobQ1Obn.json | 9 +- ..._Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json | 9 +- ...y_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json | 9 +- ...ed_Knife_Kneebreaker_CBKixLH3yhivZZuL.json | 9 +- ..._Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json | 9 +- ...ged_Knife_Lieutenant_aTljstqteGoLpCBq.json | 9 +- ..._Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json | 9 +- ..._Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json | 9 +- ..._Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json | 9 +- ..._Knight_of_the_Realm_7ai2opemrclQe3VF.json | 9 +- .../adversary_Kraken_4nqv3ZwJGjnmic8j.json | 9 +- ...versary_Masked_Thief_niBpVU7yeo5ccskE.json | 9 +- ...sary_Master_Assassin_dNta0cUzr96xcFhf.json | 9 +- .../adversary_Merchant_Al3w2CgjfdT3p9ma.json | 9 +- ...rsary_Merchant_Baron_Vy02IhGhkJLuezu4.json | 9 +- ...inor_Chaos_Elemental_sRn4bqerfARvhgSV.json | 9 +- ...dversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json | 9 +- ...Minor_Fire_Elemental_DscWkNVoHak6P4hh.json | 9 +- ...versary_Minor_Treant_G62k4oSkhkoXEs2D.json | 9 +- ...ary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json | 9 +- .../adversary_Monarch_yx0vK2yfNVZKWUUi.json | 9 +- ...ersary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json | 9 +- ...adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json | 9 +- ...rsary_Oracle_of_Doom_befIqd5IYKg6eUz2.json | 9 +- ...r_Realms_Abomination_A0SeeDzwjvqOsyof.json | 9 +- ...ter_Realms_Corrupter_ms6nuOl3NFkhPj1k.json | 9 +- ..._Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json | 9 +- ...atchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json | 9 +- ...ary_Perfected_Zombie_CP6iRfHdyFWniTHY.json | 9 +- ...dversary_Petty_Noble_wycLpvebWdUqRhpP.json | 9 +- ...rsary_Pirate_Captain_OROJbjsqagVh7ECV.json | 9 +- ...rsary_Pirate_Raiders_5YgEajn0wa4i85kC.json | 9 +- ...versary_Pirate_Tough_mhcVkVFrzIJ18FDm.json | 11 ++- .../adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json | 9 +- ...ersary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json | 9 +- ...ersary_Royal_Advisor_EtLJiTsilPPZvLUX.json | 9 +- ...ersary_Secret_Keeper_sLAccjvCWfeedbpI.json | 9 +- .../adversary_Sellsword_bgreCaQ6ap2DVpCr.json | 9 +- ...ary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json | 9 +- .../adversary_Shark_YmVAkdNsyuXWTtYp.json | 9 +- .../adversary_Siren_BK4jwyXSRx7IOQiO.json | 9 +- ...sary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json | 9 +- ...sary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json | 9 +- ...sary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json | 9 +- ...ary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json | 9 +- ...sary_Spectral_Archer_5tCkhnBByUIN5UdG.json | 9 +- ...ary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json | 9 +- ...ry_Spectral_Guardian_UFVGl1osOsJTneLf.json | 9 +- ...adversary_Spellblade_ldbWEL7uZs84vyrR.json | 9 +- .../adversary_Spy_8zlynOhnVA59KpKT.json | 9 +- ...dversary_Stag_Knight_KGVwnLq85ywP9xvB.json | 9 +- ...dversary_Stonewraith_3aAS2Qm3R6cgaYfE.json | 9 +- ...ersary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json | 9 +- ...rsary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json | 9 +- ...Tangle_Bramble_Swarm_PKSXFuaIHUCoH63A.json | 9 +- ...rsary_Tangle_Bramble_XcAGOSmtCFLT1unN.json | 9 +- ...sary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json | 9 +- ...ersary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json | 9 +- ...rsary_Treant_Sapling_o63nS0k3wHu6EgKP.json | 9 +- .../adversary_Vampire_WWyUp6Mxl1S3KYUG.json | 9 +- ...ault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json | 9 +- ...lt_Guardian_Sentinel_FVgYb28fhxlVcGwA.json | 9 +- ...ault_Guardian_Turret_c5hGdvY5UnSjlHws.json | 9 +- ...Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json | 11 ++- ...agon__Molten_Scourge_eArAPuB38CNR0ZIM.json | 11 ++- ...n__Obsidian_Predator_ladm7wykhZczYzrQ.json | 11 ++- ...adversary_War_Wizard_noDdT0tsN6FXSmC8.json | 9 +- ...versary_Weaponmaster_ZNbQ2jg35LG4t9eH.json | 9 +- ...dversary_Young_Dryad_8yUj2Mzvnifhxegm.json | 9 +- ...ary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json | 9 +- ...ersary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json | 9 +- ...dversary_Zombie_Pack_Nf0v43rtflV56V2T.json | 9 +- .../ancestry_Clank_ed8BoLR4SHOpeV00.json | 15 ++- .../ancestry_Drakona_VLeOEqkLS0RbF0tB.json | 15 ++- .../ancestry_Dwarf_pDt6fI6otv2E2odf.json | 15 ++- .../ancestry_Elf_q2l6g3Ssa04K84GO.json | 15 ++- .../ancestry_Faerie_XzJVbb5NT9k79ykR.json | 15 ++- .../ancestry_Faun_HaYhe6WqoXW5EbRl.json | 15 ++- .../ancestry_Firbolg_hzKmydI8sR3uk4CO.json | 15 ++- .../ancestry_Fungril_J1hX7nBBc5jQiHli.json | 15 ++- .../ancestry_Galapa_eZNG5Iv0yfbHs5CO.json | 15 ++- .../ancestry_Giant_3U8CncG92a7ERIJ0.json | 15 ++- .../ancestry_Goblin_EKPEdIz9lA9grPqH.json | 15 ++- .../ancestry_Halfling_CtL2jDjvPOJxNJKm.json | 15 ++- .../ancestry_Human_wtJ5V5qRppLQn61n.json | 15 ++- .../ancestry_Infernis_hyxcuF2I0xcZSGkm.json | 15 ++- .../ancestry_Katari_yyW0UM8srD9WuwW7.json | 15 ++- .../ancestry_Orc_D1RbUsRV9HpTrPuF.json | 15 ++- .../ancestry_Ribbet_HwOoBKXOL9Tf5j85.json | 15 ++- .../ancestry_Simiah_2yMLxxn7CHEvmShj.json | 15 ++- ...feature_Adaptability_BNofV1UC4ZbdFTkb.json | 15 ++- .../feature_Amphibious_GVhmLouGq9GWCsN8.json | 15 ++- ...feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json | 15 ++- ...ure_Celestial_Trance_TfolXWFG2W2hx6sK.json | 15 ++- .../feature_Charge_AA2CZlJSWW8GPhrR.json | 15 ++- ...feature_Danger_Sense_AXqcoxnRoWBbbKpK.json | 15 ++- ...ure_Death_Connection_WuwXH2r2uM9sDJtj.json | 15 ++- ...feature_Dread_Visage_i92lYjDhVB0LyPid.json | 15 ++- .../feature_Efficient_2xlqKOkDxWHbuj4t.json | 15 ++- ...ure_Elemental_Breath_sRaE3CgkgjBF1UpV.json | 15 ++- .../feature_Endurance_tXWEMdLXafUSZTbK.json | 15 ++- .../feature_Fearless_IlWvn5kCqCBMuUJn.json | 15 ++- ...ure_Feline_Instincts_lNgbbYnCKgrdvA85.json | 15 ++- ...ture_Fungril_Network_9tmeXm623hl4Qnws.json | 15 ++- ...feature_High_Stamina_HMXNJZ7ynzajR2KT.json | 15 ++- ..._Increased_Fortitude_0RN0baBxh95GT1cm.json | 15 ++- ...ure_Internal_Compass_e2Cu6exxtvfQzc1e.json | 15 ++- .../feature_Kick_gpW19TfJk0WWFh1S.json | 15 ++- .../feature_Long_Tongue_oWbdlh51ajn1Q5kL.json | 15 ++- .../feature_Luckbender_U6iFjZgLYawlOlQZ.json | 15 ++- .../feature_Luckbringer_8O6SQQMxKWr430QA.json | 15 ++- ...ture_Natural_Climber_soQvPL0MrTLLcc31.json | 15 ++- .../feature_Nimble_3lNqft3LmOlEIEkw.json | 15 ++- ...re_Purposeful_Design_g6I4tRUQNgL4vZ6H.json | 15 ++- ...ture_Quick_Reactions_0NSPSuB8KSEYTJIP.json | 15 ++- .../feature_Reach_WRs2jvwM0STmkWIW.json | 15 ++- .../feature_Retract_UFR67BUOhNGLFyg9.json | 15 ++- ...ure_Retracting_Claws_Zj69cAeb3NjIa8Hn.json | 15 ++- .../feature_Scales_u8ZhV962rNmUlzkp.json | 15 ++- .../feature_Shell_A6a87OWA3tx16g9V.json | 15 ++- .../feature_Sturdy_60o3cKUZzxO9EDQF.json | 15 ++- .../feature_Surefooted_YsJticxv8OFndd4D.json | 15 ++- .../feature_Thick_Skin_S0Ww7pYOSREt8qKg.json | 15 ++- .../feature_Tusks_YhxD1ujZpftPu19w.json | 15 ++- .../feature_Unshakeable_G5pE8FW94V1W9jJx.json | 15 ++- .../feature_Wings_WquAjoOcso8lwySW.json | 15 ++- ...eastform_Agile_Scout_a9UoCwtrbgKk02mK.json | 15 ++- ...orm_Aquatic_Predator_ItBVeCl2u5uetgy7.json | 15 ++- ...stform_Aquatic_Scout_qqzdFCxyYupWZK23.json | 15 ++- ...tform_Armored_Sentry_8pUHJv3BYdjA4Qdf.json | 15 ++- ...m_Epic_Aquatic_Beast_wT4xbF99I55yjKZV.json | 15 ++- ...tform_Great_Predator_afbMt4Ld6nY3mw0N.json | 15 ++- ...m_Great_Winged_Beast_b4BMnTbJ3iPPidSb.json | 15 ++- ...orm_Household_Friend_iDmOtiHJJ80AIAVT.json | 15 ++- ...form_Legendary_Beast_mqP6z4Wg4K3oDAom.json | 15 ++- ...orm_Legendary_Hybrid_rRUtgcUjimlpPhnn.json | 15 ++- ...orm_Massive_Behemoth_qjwMzPn33aKZACkv.json | 15 ++- ...stform_Mighty_Lizard_94tvcC3D5Kp4lzuN.json | 15 ++- ...tform_Mighty_Strider_zRLjqKx4Rn2TjivL.json | 15 ++- ...Mythic_Aerial_Hunter_jV6EuEacyQlHW4SN.json | 15 ++- ...astform_Mythic_Beast_kObobka52JdpWBSu.json | 15 ++- ...stform_Mythic_Hybrid_WAbxCf2An8qmxyJ1.json | 15 ++- ...stform_Nimble_Grazer_CItO8yX6amQaqyk7.json | 15 ++- ...stform_Pack_Predator_YLisKYYhAGca50WM.json | 15 ++- ...rm_Pouncing_Predator_33oFSZ1PwFqInHPe.json | 15 ++- ...tform_Powerful_Beast_m8BVTuJI1wCvzTcf.json | 15 ++- ...rm_Stalking_Arachnid_A4TVRY0D5r9EiVwA.json | 15 ++- ...orm_Striking_Serpent_1XrZWGDttBAAUxR1.json | 15 ++- ...form_Terrible_Lizard_5BABxRe2XVrYTj8N.json | 15 ++- ...astform_Winged_Beast_mZ4Wlqtss2FlNNvL.json | 15 ++- .../feature_Agile_xLS5YT1B6yeCiNTg.json | 15 ++- .../feature_Aquatic_kQWWx9P3fCyGSVOI.json | 15 ++- ...eature_Armored_Shell_nDQZdIF2epKlhauX.json | 15 ++- ...ture_Bird_s_Eye_View_FNKQlWQcArSorMPK.json | 15 ++- .../feature_Cannonball_jp5KpPRBFBOIs46Q.json | 15 ++- .../feature_Carrier_EVOJTskJYf4rpuga.json | 15 ++- .../feature_Companion_jhWSC5bNZyYUAA5Q.json | 15 ++- ...eature_Deadly_Raptor_QQtQ77tos8ijTHag.json | 15 ++- .../feature_Demolish_DfBXO8jTchwFG8dZ.json | 15 ++- ..._Devastating_Strikes_HJbQcKWcFZ9NoFxs.json | 15 ++- ...feature_Elusive_Prey_a7Qvmm14nx9BCysA.json | 15 ++- .../feature_Fleet_GhHsSHOa509cwCvr.json | 15 ++- .../feature_Fragile_QFg1hNCEoKVDd9Zo.json | 15 ++- ...ture_Hobbling_Strike_8u0HkK3WgtU9lWYs.json | 15 ++- ...feature_Hollow_Bones_xVgmXhj2YgeqS1KK.json | 15 ++- ...ature_Massive_Stride_9QkZSeuEKgXtlpHc.json | 15 ++- ...feature_Ocean_Master_tGDdEH40wyOCsFmH.json | 15 ++- ...feature_Pack_Hunting_d3q8lfeiEMyTjusT.json | 15 ++- ...ure_Physical_Defense_StabkQ3BzWRZa8Tz.json | 15 ++- .../feature_Rampage_8upqfcZvi7b5hRLE.json | 15 ++- ...ture_Snapping_Strike_Ky3rZD3sJMXYZOBC.json | 15 ++- .../feature_Takedown_0ey4kM9ssj2otHvb.json | 15 ++- .../feature_Thick_Hide_ZYbdXaWVj2zdcmaK.json | 15 ++- .../feature_Trample_A0lgd6eVEfX6oqSB.json | 15 ++- .../feature_Undaunted_ODudjX88Te4vDP57.json | 15 ++- .../feature_Unyielding_vEAQ4cfsoPmOv2Gg.json | 15 ++- ...eature_Venomous_Bite_2KlTnfzO03vneVS8.json | 15 ++- ...ture_Venomous_Strike_uW3853pViM9VAfHb.json | 15 ++- ...feature_Vicious_Maul_jYUBi7yLHap5ljpa.json | 15 ++- ...feature_Warning_Hiss_cTlqpQZPy5TvdDAT.json | 15 ++- .../feature_Webslinger_D73fS1iM4SZPFimu.json | 15 ++- .../classes/class_Bard_vegl3bFOq3pcFTWT.json | 15 ++- .../classes/class_Druid_ZNwUTCyGCEcidZFv.json | 15 ++- .../class_Guardian_nRAyoC0fOzXPDa4z.json | 15 ++- .../class_Ranger_BTyfve69LKqoOi9S.json | 15 ++- .../classes/class_Rogue_CvHlkHZfpMiCz5uT.json | 15 ++- .../class_Seraph_5ZnlJ5bEoyOTkUJv.json | 15 ++- .../class_Sorcerer_DchOzHcWIJE9FKcR.json | 15 ++- .../class_Warrior_xCUWwJz4WSthvLfy.json | 15 ++- .../class_Wizard_5LwX4m8ziY3F1ZGC.json | 15 ++- ...feature_Arcane_Sense_CHK32dfCTTyuxV1A.json | 15 ++- ...ttack_Of_Opportunity_3hNVqD1c0VIw2Nj5.json | 15 ++- .../feature_Beastform_P1K0jcnH2RiS6TLd.json | 15 ++- ...re_Channel_Raw_Power_P02cbN50LIoD662z.json | 15 ++- .../feature_Cloaked_5IT8wYa0m1EFw8Zp.json | 15 ++- ...ture_Combat_Training_eoSmuAJmgHUyULtp.json | 15 ++- .../feature_Evolution_6rlxhrRwFaVgq9fe.json | 15 ++- ...ature_Frontline_Tank_YS1g7YdWwOaS629x.json | 15 ++- ...eature_Hold_Them_Off_2Cyb9ZeuAesf5Sb3.json | 15 ++- ...feature_Life_Support_lSlvSUHbOoX36q2j.json | 15 ++- ...feature_Make_a_Scene_N9E5skDDK2VgvohR.json | 15 ++- ...ature_Minor_Illusion_cshTYdtz9yoXYYB3.json | 15 ++- .../feature_No_Mercy_njj2C3tMDeCHHOoh.json | 15 ++- ...eature_Not_This_Time_h3VE0jhcM5xHKBs4.json | 15 ++- .../feature_Prayer_Dice_Xd7RYhfTxIj9aWI2.json | 13 ++- ...ure_Prestidigitation_SG2uw8h5YuwDviCn.json | 15 ++- .../feature_Rally_PydiMnNCKpd44SGS.json | 15 ++- ...ture_Rally__Level_5__TVeEyqmPPiRa2r3i.json | 15 ++- ...ature_Ranger_s_Focus_ncLx2P8BOUtrAD38.json | 15 ++- ...eature_Rogue_s_Dodge_hVaaPIjxoextIgSL.json | 15 ++- ...feature_Sneak_Attack_5QqpEwmwkPfZHpMW.json | 15 ++- ...ure_Strange_Patterns_6YsfFjmCGuFYVhT4.json | 15 ++- .../feature_Unstoppable_PnD2UCgzIlwX6cY3.json | 15 ++- ...ature_Volatile_Magic_ieiQlD0joWSqt53D.json | 15 ++- .../feature_Wildtouch_fqSdfUYUK9QUcVE4.json | 15 ++- .../community_Highborne_DVw2mOCHB8i0XeBz.json | 15 ++- .../community_Loreborne_YsvlyqYoi8QQ8kwm.json | 15 ++- ...community_Orderborne_TY2TejenASXtS484.json | 15 ++- ...community_Ridgeborne_WHLA4qrdszXQHOuo.json | 15 ++- .../community_Seaborne_o5AA5J05N7EvH1rN.json | 15 ++- .../community_Slyborne_rGwCPMqZtky7SE6d.json | 15 ++- ...community_Underborne_eX0I1ZNMyD3nfaL1.json | 15 ++- ...ommunity_Wanderborne_82mDY2EIBfLkNwQj.json | 15 ++- .../community_Wildborne_CRJ5pzJj4FjCtIlx.json | 15 ++- .../feature_Dedicated_7aXWdH3gzaYREK0X.json | 15 ++- ...eature_Know_the_Tide_07x6Qe6qMzDw2xN4.json | 15 ++- .../feature_Lightfoot_TQ1AIQjndC4mYmmU.json | 15 ++- ...ure_Low_Light_Living_aMla3xQuCHEwORGD.json | 15 ++- ...feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json | 15 ++- .../feature_Privilege_C7NR6qRatawZusmg.json | 15 ++- .../feature_Scoundrel_ZmEuBdL0JrvuA8le.json | 15 ++- .../feature_Steady_DYmmr5CknLtHnwuj.json | 15 ++- .../feature_Well_Read_JBZJmywisJg5X3tH.json | 15 ++- ...ard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json | 13 ++- ...nCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json | 13 ++- ...nCard_Arcana_Touched_5PvMQKCjrgSxzstn.json | 13 ++- ...rd_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json | 13 ++- .../domainCard_Armorer_cy8GjBPGc9w9RaGO.json | 13 ++- ...rd_Astral_Projection_YNOCNmZ96sCp9NEr.json | 13 ++- .../domainCard_Banish_AIbHfryMA2Rvs1ut.json | 13 ++- ...omainCard_Bare_Bones_l5D9kq901JDESaXw.json | 15 ++- ...omainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json | 13 ++- ...Card_Battle_Hardened_NeEOghgfyDUBTwBG.json | 13 ++- ...nCard_Battle_Monster_P0ezScyQ5t8ruByf.json | 13 ++- ...inCard_Blade_Touched_Gb5bqpFSBiuBxUix.json | 15 ++- ...domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json | 13 ++- ...mainCard_Body_Basher_aQz8jKkCd8M9aKMA.json | 15 ++- ...inCard_Bold_Presence_tdsL00yTSLNgZWs6.json | 13 ++- ...mainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json | 13 ++- ...ainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json | 13 ++- ...mainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json | 13 ++- ...inCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json | 13 ++- ...inCard_Book_of_Grynn_R0LNheiZycZlZzV3.json | 13 ++- ...inCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json | 15 ++- ...nCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json | 13 ++- ...nCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json | 13 ++- ...inCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json | 13 ++- ...inCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json | 13 ++- ...inCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json | 13 ++- ...inCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json | 13 ++- ...nCard_Book_of_Vagras_aknDDYtN7EObv94t.json | 13 ++- ...inCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json | 13 ++- ...nCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json | 13 ++- .../domainCard_Boost_VKAHS6eWz28ukcDs.json | 13 ++- .../domainCard_Brace_QXs4vssSqNGQu5b8.json | 15 ++- ...inCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json | 13 ++- ...Card_Chain_Lightning_0kAVO6rordCfZqYP.json | 13 ++- ...Card_Champion_s_Edge_rnejRbUQsNGX1GMC.json | 13 ++- ...domainCard_Chokehold_R5GYUalYXLLFRlNl.json | 13 ++- ...ainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json | 13 ++- ...nCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json | 13 ++- ...inCard_Codex_Touched_7Pu83ABdMukTxu3e.json | 13 ++- ...nCard_Confusing_Aura_R8NDiJXJWmC48WSr.json | 13 ++- ...inCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json | 13 ++- ...Card_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json | 13 ++- .../domainCard_Copycat_3A7LZ1xmDEMGa165.json | 13 ++- ...Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json | 13 ++- ...ainCard_Counterspell_6dhqo1kzGxejCjHa.json | 13 ++- ...Critical_Inspiration_ABp9pUfBS69NomTD.json | 13 ++- ...Card_Cruel_Precision_bap1eCWryPNowbyo.json | 15 ++- ...inCard_Dark_Whispers_yL2qrSWmTwXVOySH.json | 13 ++- ...ainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json | 13 ++- ...omainCard_Death_Grip_x0FVGE1YbfXalJiw.json | 13 ++- .../domainCard_Deathrun_xFOSn8IVVNizgHFq.json | 13 ++- ...inCard_Deft_Deceiver_38znCh6kHTkaPwYi.json | 13 ++- ...nCard_Deft_Maneuvers_dc4rAXlv95srZUct.json | 13 ++- ..._Disintegration_Wave_kja5qvh4rdeDBB96.json | 15 ++- ...omainCard_Divination_K8oFepK24UVsAX8B.json | 13 ++- ...omainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json | 15 ++- .../domainCard_Eclipse_62Sj67PdPFzwWVe3.json | 13 ++- .../domainCard_Encore_klahWDFwihqqEhXP.json | 13 ++- ...ard_Endless_Charisma_tNzFNlVHghloKsFi.json | 13 ++- ...domainCard_Enrapture_a8lFiKX1o8T924ze.json | 13 ++- ...mainCard_Falling_Sky_hZJp9mdkMnqKDROe.json | 13 ++- ...rd_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json | 13 ++- .../domainCard_Ferocity_jSQsSP61CX4MhSN7.json | 13 ++- ...mainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json | 13 ++- .../domainCard_Flight_54GUjNuBEy7xdzMz.json | 13 ++- ...ainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json | 13 ++- .../domainCard_Forager_06UapZuaA5S6fAKl.json | 13 ++- ...Card_Force_of_Nature_LzVpMkD5I4QeaIHf.json | 13 ++- ...inCard_Forceful_Push_z8FFPhDh2SdFkFfS.json | 15 ++- ...nCard_Forest_Sprites_JrkUMTzaFmQNBHVm.json | 13 ++- ...Card_Fortified_Armor_oVa49lI107eZILZr.json | 15 ++- .../domainCard_Frenzy_MMl7abdGRLl7TJLO.json | 13 ++- ...omainCard_Full_Surge_SgvjJfMyubZowPxS.json | 13 ++- ...mainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json | 15 ++- ...nCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json | 13 ++- ...inCard_Glancing_Blow_nCNCqSH7UgW4O3To.json | 13 ++- ...d_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json | 13 ++- ...ainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json | 13 ++- ...nCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json | 13 ++- ...inCard_Grace_Touched_KAuNb51AwhD8KEXk.json | 13 ++- ...ainCard_Ground_Pound_WnGldYhJPDhx8v9X.json | 13 ++- ...inCard_Healing_Field_GlRm1Dxlc0Z1b04o.json | 13 ++- ...inCard_Healing_Hands_WTlhnQMajc1r8i50.json | 13 ++- ...nCard_Healing_Strike_XtSc0jIJLOoMTMYS.json | 13 ++- ...inCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json | 13 ++- .../domainCard_Hush_gwmYasmfgXZ7tFS6.json | 13 ++- ...ard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json | 13 ++- ...ard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json | 15 ++- ...Card_I_See_It_Coming_Kp6RejHGimnuoBom.json | 13 ++- ...omainCard_Inevitable_XTT8c8uJ4D7fvtbL.json | 15 ++- ..._Inspirational_Words_cWu1o82ZF7GvnbXc.json | 13 ++- ...ainCard_Invigoration_X8OfkEoI5gLTRf1B.json | 13 ++- ...ainCard_Invisibility_KHkzA4Zrw8EWN1CH.json | 13 ++- ...nCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json | 13 ++- ...Card_Lead_by_Example_YWCRplmtwpCjpq5i.json | 13 ++- ...omainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json | 13 ++- ...domainCard_Life_Ward_OszbCj0jTqq2ADx9.json | 13 ++- ...inCard_Manifest_Wall_TtGOtWkbr23VhHfH.json | 13 ++- ...inCard_Mass_Disguise_dT95m0Jam8sWbeuC.json | 13 ++- ...nCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json | 13 ++- ..._Master_of_the_Craft_yAGTwXHUC3qxpTeK.json | 15 ++- ...inCard_Mending_Touch_TGjR4vJVNbQRV8zr.json | 13 ++- ...Card_Midnight_Spirit_FXLsB3QbQvTtqX5B.json | 13 ++- ...ard_Midnight_Touched_uSyGKVxOJcnp28po.json | 13 ++- ...ard_Natural_Familiar_Tag303LoRNC5zGgl.json | 13 ++- ...Card_Nature_s_Tongue_atWLorlCOxcrq8WB.json | 13 ++- ...nCard_Never_Upstaged_McdncxmO9K1YNP7Y.json | 13 ++- ...ainCard_Night_Terror_zcldCuqOg3dphUVI.json | 15 ++- ...Card_Not_Good_Enough_xheQZOIYp0ERQhT9.json | 15 ++- ...domainCard_Notorious_IqxzvvjZiYbgx21A.json | 13 ++- ...ainCard_On_the_Brink_zbxPl81kbWEegKQN.json | 15 ++- ...domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json | 13 ++- ...rd_Overwhelming_Aura_iEBLySZD9z8CLdz7.json | 13 ++- ...Card_Phantom_Retreat_0vdpIn06ifF3xxqZ.json | 13 ++- ...inCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json | 15 ++- ...nCard_Plant_Dominion_9a6xP5pxhVvdugk9.json | 13 ++- ...mainCard_Premonition_aC43NiFQLpOADyjO.json | 13 ++- ...d_Preservation_Blast_1p1cOmbnRd5CoKBp.json | 13 ++- .../domainCard_Rage_Up_GRL0cvs96vrTDckZ.json | 13 ++- ...nCard_Rain_of_Blades_Ucenef6JpjQxwXni.json | 13 ++- ...inCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json | 13 ++- ...Card_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json | 13 ++- ...mainCard_Reassurance_iYNVTB7uAD1FTCZu.json | 13 ++- .../domainCard_Reckless_2ooUo2yoilGifY81.json | 13 ++- .../domainCard_Recovery_gsiQFT6q3WOgqerJ.json | 13 ++- .../domainCard_Redirect_faU0XkJCbar69PiN.json | 13 ++- ...Rejuvenation_Barrier_HtWx5IIemCoorMj2.json | 13 ++- ...mainCard_Restoration_wUQFsRtww18naYaq.json | 13 ++- ...ainCard_Resurrection_z30ciOwQI7g3tHla.json | 13 ++- ...mainCard_Rift_Walker_vd5STqX29RpYbGxa.json | 13 ++- .../domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json | 13 ++- ...nCard_Rousing_Strike_pcbYD33rBBdAo5f9.json | 13 ++- ...domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json | 13 ++- ...omainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json | 13 ++- ...ainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json | 13 ++- ...nCard_Salvation_Beam_4uAFGp3LxiC07woC.json | 13 ++- .../domainCard_Scramble_5bBU9jWHOuOY12lR.json | 13 ++- ...mainCard_Second_Wind_ffPbSEvLuFrFsMxl.json | 13 ++- ...d_Sensory_Projection_gZOMzskSOfeiXn54.json | 13 ++- ...omainCard_Shadowbind_kguhWlidhxe2GbT0.json | 13 ++- ...ainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json | 15 ++- ...nCard_Shape_Material_db4xV3YErHRslbVE.json | 13 ++- ...ard_Share_the_Burden_8nRle10pw1HO8QVu.json | 13 ++- ...mainCard_Shield_Aura_rfIv6lln40Fh6EIl.json | 13 ++- ...ainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json | 13 ++- ...Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json | 13 ++- ...nCard_Signature_Move_LWRkhNY968Cu2Zl5.json | 15 ++- .../domainCard_Smite_U1uWJE94HZVudujz.json | 13 ++- ...Card_Soothing_Speech_QED2PDYePOSTbLtC.json | 13 ++- ..._Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json | 13 ++- ...mainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json | 13 ++- ...ard_Splendor_Touched_JT5dM3gVL6chDBYU.json | 15 ++- ...d_Splintering_Strike_TYKfM3H9vBXyWiH4.json | 13 ++- ...rd_Stealth_Expertise_NIUhmuQGwbb3UClZ.json | 13 ++- ...d_Strategic_Approach_5b1awkgTmMp3FVrm.json | 13 ++- ...rd_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json | 13 ++- ...ainCard_Support_Tank_stId5syX7YpP2JGz.json | 13 ++- ...omainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json | 13 ++- ...domainCard_Tactician_WChWEH36lUpXAC0K.json | 15 ++- ...mainCard_Telekinesis_FgzBppvLjXr0UbUI.json | 13 ++- .../domainCard_Teleport_HnPwVrWblYa9hwSt.json | 13 ++- ...ainCard_Tell_No_Lies_HTv9QEPS466WsstP.json | 13 ++- .../domainCard_Tempest_X7YaZgFieBlqaPdZ.json | 13 ++- ...omainCard_Thorn_Skin_oUipGK84E2KjoKqh.json | 13 ++- ...nCard_Thought_Delver_B4choj481tqajWb9.json | 13 ++- ...rd_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json | 13 ++- ...nCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json | 15 ++- ...d_Transcendent_Union_kVkoCLBXLAIifqpz.json | 13 ++- ...ainCard_Troublemaker_JrdZedm1BFKeV7Yb.json | 13 ++- ...inCard_Twilight_Toll_SDjjV61TC1NceV1m.json | 13 ++- ...mainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json | 13 ++- ...ard_Uncanny_Disguise_TV56wSysbU5xAlOa.json | 13 ++- ...inCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json | 13 ++- ...mainCard_Untouchable_9QElncQUDSakuSdR.json | 15 ++- ...ard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json | 15 ++- ...inCard_Valor_Touched_k1AtYd3lSchIymBr.json | 13 ++- ...Card_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json | 13 ++- ...inCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json | 13 ++- ...rd_Versatile_Fighter_wQ53ImDswEHv5SGQ.json | 13 ++- ...ard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json | 13 ++- .../domainCard_Vitality_sWUlSPOJEaXyQLCj.json | 13 ++- ...Card_Voice_of_Reason_t3RRGH6mMYYJJCcF.json | 15 ++- ...domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json | 13 ++- ...domainCard_Whirlwind_anO0arioUy7I5zBg.json | 13 ++- ...inCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json | 13 ++- ...omainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json | 13 ++- ...ard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json | 13 ++- .../domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json | 13 ++- ...d_Zone_of_Protection_lOZaRb4fCVgQsWB5.json | 15 ++- ...ment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json | 19 ++-- ...environment_Ambushed_uGEdNYERCTJBEjc5.json | 19 ++-- ...nvironment_Ambushers_uXZpebPR77YQ1oXI.json | 19 ++-- ...g_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json | 19 ++-- ...Bustling_Marketplace_HZKA7hkej7JJY503.json | 19 ++-- ...ronment_Castle_Siege_1eZ32Esq7rfZOjlu.json | 19 ++-- ...ironment_Chaos_Realm_2Z1mKc65LxNk2PqR.json | 19 ++-- ...ent_Cliffside_Ascent_LPpfdlNKqiZIl04w.json | 19 ++-- ...ironment_Cult_Ritual_QAXXiOKBDmCTauHD.json | 19 ++-- ...nt_Divine_Usurpation_4DLYez7VbMCFDAuZ.json | 19 ++-- ...ment_Hallowed_Temple_dsA6j69AnaJhUyqH.json | 19 ++-- ...ronment_Haunted_City_OzYbizKraK92FDiI.json | 19 ++-- ...nment_Imperial_Court_jr1xAoXzVwVblzxI.json | 19 ++-- ...ronment_Local_Tavern_cM4X81DOyvxNIi52.json | 19 ++-- ...onment_Mountain_Pass_acMu9wJrMZZzLSTJ.json | 19 ++-- ...ecromancer_s_Ossuary_h3KyRL7AshhLAmcH.json | 19 ++-- ...ronment_Outpost_Town_YezryR32uo39xRxW.json | 19 ++-- ...nment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json | 19 ++-- ...ronment_Raging_River_t4cdqTfzcqP3H1vJ.json | 19 ++-- ...nced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json | 13 ++- ...ced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json | 13 ++- ...anced_Gambeson_Armor_epkAmlZVk7HOfUUT.json | 13 ++- ...vanced_Leather_Armor_itSOp2GCyem0f7oM.json | 13 ++- ..._Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json | 13 ++- ...rmor_Bladefare_Armor_mNN6pvcsS10ChrWF.json | 13 ++- ...rmor_Chainmail_Armor_haULhuEg37zUUvhb.json | 13 ++- ...mor_Channeling_Armor_vMJxEWz1srfwMsoj.json | 13 ++- ...or_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json | 13 ++- ...or_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json | 13 ++- ...Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json | 13 ++- ...mor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json | 11 ++- ...Full_Fortified_Armor_7emTSt6nhZuTlvt5.json | 13 ++- ...mor_Full_Plate_Armor_UdUJNa31WxFW2noa.json | 13 ++- ...armor_Gambeson_Armor_yJFp1bfpecDcStVK.json | 13 ++- ...mor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json | 13 ++- ...oved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json | 13 ++- ...ved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json | 13 ++- ...roved_Gambeson_Armor_jphnMZjnS2FkOH3s.json | 13 ++- ...proved_Leather_Armor_t91M61pSCMKStTNt.json | 13 ++- ...ee_Breastplate_Armor_tzZntboNtHL5C6VM.json | 13 ++- .../armor_Leather_Armor_nibfdNtp2PtxvbVz.json | 13 ++- ...dary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json | 13 ++- ...ary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json | 13 ++- ...ndary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json | 13 ++- ...endary_Leather_Armor_Tptgl5WOj76TyFn7.json | 13 ++- ...armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json | 13 ++- ...armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json | 13 ++- ...nes_of_Fortification_P4qAEDJUoNLgVRsA.json | 13 ++- ...netan_Floating_Armor_tHlBUDQC24YMZqd6.json | 13 ++- ...mor_Savior_Chainmail_8X16lJQ3xltTwynm.json | 13 ++- ...r_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json | 13 ++- ...mor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json | 13 ++- ...r_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json | 13 ++- ...consumable_Acidpaste_cfVFmS8vT9dbq9s1.json | 15 ++- ...mable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json | 15 ++- ...umable_Attune_Potion_JGD3M9hBHtVAA8XP.json | 15 ++- ...sumable_Blinding_Orb_eAXHdzA5qNPldOpn.json | 15 ++- ...e_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json | 15 ++- ...mable_Bolster_Potion_FOPQNqXbiVO0ilYL.json | 15 ++- ...umable_Bonding_Honey_PfQvqopXgvroBklL.json | 15 ++- ...nsumable_Bridge_Seed_RrIasiMCt6mqVTps.json | 15 ++- ...sumable_Channelstone_IKMVQ6VwtapwoUim.json | 15 ++- ...sumable_Charm_Potion_CVBbFfOY75YwyQsp.json | 15 ++- ...e_Circle_of_the_Void_elsyP6VhHw1JjGSl.json | 15 ++- ...mable_Control_Potion_eeBhZSGLjuNZuJuI.json | 15 ++- ...consumable_Death_Tea_xDnJeF1grkmKck8Q.json | 15 ++- ...able_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json | 15 ++- ...able_Dripfang_Poison_eU8VpbWB2NHIL47n.json | 15 ++- ...ble_Enlighten_Potion_aWHSO2AqDufi7nL4.json | 15 ++- ...mable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json | 15 ++- ...nsumable_Featherbone_DpxEMpwfasEBpORU.json | 15 ++- ...onsumable_Gill_Salve_Nvbb9mze6o5D0AEg.json | 15 ++- ...e_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json | 15 ++- ...mable_Growing_Potion_fl2f3ees8RFMze9t.json | 15 ++- ...umable_Health_Potion_Aruc2NLutWuVIjP1.json | 15 ++- ...omet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json | 15 ++- ...mable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json | 15 ++- ...mproved_Arcane_Shard_nQTo6mNoPTEVBtkm.json | 15 ++- ...d_Grindletooth_Venom_BqBWXXe9T07AMV4u.json | 15 ++- ...e_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json | 15 ++- ...sumable_Jumping_Root_c2putn9apuurJhWX.json | 15 ++- ...able_Knowledge_Stone_nL9IALzm9BNi5oSt.json | 15 ++- ...e_Major_Arcane_Shard_AA7bmiwv00lshPrC.json | 15 ++- ..._Major_Attune_Potion_CCPFm5iXXwvyYYwR.json | 15 ++- ...Major_Bolster_Potion_mnyQDRtngWWQeRXF.json | 15 ++- ...e_Major_Charm_Potion_IJLAUlQymbSjzsri.json | 15 ++- ...Major_Control_Potion_80s1FLmTLtohZ5GH.json | 15 ++- ...jor_Enlighten_Potion_SDdv1G2veMLKrxcJ.json | 15 ++- ..._Major_Health_Potion_cM7pHe8bBAxSZ2xR.json | 15 ++- ...Major_Stamina_Potion_I4cQ03xbxnc81EGa.json | 15 ++- ..._Major_Stride_Potion_yK6eEDUrsPbZA8G0.json | 15 ++- ..._Minor_Health_Potion_tPfKtKRRjv8qdSqy.json | 15 ++- ...Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json | 15 ++- ...e_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json | 15 ++- ...umable_Morphing_Clay_f1NHVSIHJJCIOaBl.json | 15 ++- ...nsumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json | 15 ++- ...consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json | 15 ++- ..._Potion_of_Stability_dvL8oaxpEF6jKvYN.json | 15 ++- ...able_Redthorn_Saliva_s2Exl2XFuoOhtIov.json | 15 ++- ...eplication_Parchment_yJkwz4AP6yhGo8Vj.json | 15 ++- ...ble_Shrinking_Potion_HGixKenQwhyRAYNk.json | 15 ++- ...sumable_Sleeping_Sap_XZavUVlHEvE2srEt.json | 15 ++- ...nsumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json | 15 ++- ...mable_Stamina_Potion_hf3k1POoVSooJyN2.json | 15 ++- .../consumable_Stardrop_y4c1jrlHrf0wBWOq.json | 15 ++- ...umable_Stride_Potion_lNtcrkgFGOJNaroE.json | 15 ++- ...sumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json | 15 ++- ...onsumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json | 15 ++- ...nstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json | 15 ++- ...sumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json | 15 ++- ...le_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json | 15 ++- ...ble_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json | 15 ++- ...onsumable_Wingsprout_n10vozlmosVR6lo4.json | 15 ++- .../loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json | 13 ++- ...oot_Alistair_s_Torch_MeEg57T6MKpw3sme.json | 15 ++- .../loot_Arcane_Cloak_4STt98biZwjFoKOe.json | 15 ++- .../loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json | 13 ++- .../loot_Attune_Relic_vK6bKyQTT3m8WvMh.json | 15 ++- ...ot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json | 13 ++- .../loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json | 13 ++- .../loot_Bloodstone_oMd78vhL2x2NO8Mg.json | 15 ++- .../loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json | 15 ++- ...ot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json | 13 ++- ...loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json | 13 ++- ...loot_Charging_Quiver_gsUDP90d4SRtLEUn.json | 15 ++- .../loot_Charm_Relic_9P9jqGSlxVCbTdLe.json | 15 ++- .../loot_Clay_Companion_lGIk9vBNz0jvskXD.json | 15 ++- .../loot_Companion_Case_V25uXkAQvK3hUta4.json | 15 ++- .../loot_Control_Relic_QPGBDItjrRhXU6iJ.json | 15 ++- ...oot_Corrector_Sprite_G0RktbmtnuAlKCRH.json | 13 ++- .../loot_Dual_Flask_HCvcAu3sdHCspGMP.json | 15 ++- .../loot_Elusive_Amulet_PkmTZXRMZL022O75.json | 13 ++- .../loot_Empty_Chest_p2yy61uKsyIsl8cU.json | 15 ++- ...loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json | 15 ++- .../loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json | 13 ++- ...t_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json | 15 ++- .../loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json | 15 ++- ...loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json | 15 ++- ...loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json | 15 ++- .../loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json | 15 ++- .../loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json | 15 ++- ...oot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json | 15 ++- ...loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json | 15 ++- .../loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json | 13 ++- .../loot/loot_Glider_CiXwelozmBDcPY48.json | 13 ++- .../loot_Greatstone_y7zABzR0Q2fRskTw.json | 15 ++- ...oot_Homing_Compasses_yrAGYlDyoe4OYl7d.json | 15 ++- .../loot_Honing_Relic_SAAnEAeXDnhBbLjB.json | 15 ++- ...ot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json | 13 ++- .../loot_Infinite_Bag_Iedjw1LVWEozVh0J.json | 15 ++- ...ot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json | 15 ++- .../loot_Lorekeeper_JsPYzrqpITqGj23I.json | 15 ++- .../loot/loot_Manacles_GkmATIuemyFtQX1D.json | 15 ++- ...Health_Potion_Recipe_PQxvxAVBbkt0TleC.json | 15 ++- ...tamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json | 15 ++- ...t_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json | 15 ++- ...loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json | 13 ++- ...loot_Phoenix_Feather_QNtzJSVENww63THa.json | 15 ++- ...loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json | 13 ++- .../loot_Piper_Whistle_v4PIoCCEjeE3acys.json | 15 ++- .../loot_Portal_Seed_eRd5Gk7J7hPCqp11.json | 15 ++- ...loot_Premium_Bedroll_QGYPNBIufpBguwjC.json | 13 ++- ...t_Ring_of_Resistance_aUqRifqR5JXXa1dN.json | 13 ++- ...loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json | 13 ++- ..._Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json | 13 ++- ...loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json | 13 ++- .../loot_Skeleton_Key_edkNgwy4xghZreBa.json | 13 ++- .../loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json | 15 ++- .../loot_Stride_Relic_FfJISMzYATaPQPLc.json | 15 ++- .../loot_Suspended_Rod_nnj12RiFanq7s5zv.json | 15 ++- .../loot_Valorstone_7yywua9TmQ4WP5WH.json | 15 ++- ..._of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json | 15 ++- .../loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json | 13 ++- ...lack_Powder_Revolver_NUbvkPLS71XO073r.json | 31 ------- .../weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json | 11 ++- ...ane_Frame_Wheelchair_la3sAWgnvadc4NvP.json | 11 ++- ...ced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json | 13 ++- ...n_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json | 13 ++- ..._Advanced_Broadsword_WtQAGz0TUgz8Xg70.json | 11 ++- ...on_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json | 13 ++- ...pon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json | 13 ++- ...apon_Advanced_Dagger_mrioysDjNQEIE8hN.json | 13 ++- ...n_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json | 13 ++- ...vanced_Glowing_Rings_InQoh8mZPnwarQkX.json | 13 ++- ...on_Advanced_Grappler_7vvhVl4TDJHtjpFK.json | 13 ++- ..._Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json | 13 ++- ..._Advanced_Greatsword_MAC6YWTo4lzSotQc.json | 13 ++- ...pon_Advanced_Halberd_C8gQn7onAc9wsrCs.json | 13 ++- ...dvanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json | 13 ++- ...vanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json | 13 ++- ..._Advanced_Hand_Runes_PQACczSghZIVTdgZ.json | 13 ++- ...avy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json | 11 ++- ...ght_Frame_Wheelchair_BuMfupnCzHbziQ8o.json | 11 ++- ...pon_Advanced_Longbow_M5CywMAyPKGgebsJ.json | 13 ++- ...n_Advanced_Longsword_9xkB3MWXahrsVP4N.json | 13 ++- ...weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json | 13 ++- ...dvanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json | 13 ++- ...apon_Advanced_Rapier_KxFne76d7cak15dO.json | 13 ++- ...nced_Returning_Blade_sIGXA4KMeYBUjcEO.json | 13 ++- ...dvanced_Round_Shield_hiEOGF2reabGLUoi.json | 13 ++- ...pon_Advanced_Scepter_2Khzuj768yoWN9QK.json | 13 ++- ...on_Advanced_Shortbow_JpSlJvDR0X8VFDns.json | 13 ++- ..._Advanced_Shortstaff_T5exRCqOXhrjSYnI.json | 13 ++- ..._Advanced_Shortsword_p3nz5CaGUoyuGVg0.json | 9 +- ...dvanced_Small_Dagger_0thN0BpN05KT8Avx.json | 9 +- ...eapon_Advanced_Spear_pK6dsNABKKp1CIGN.json | 13 ++- ...dvanced_Tower_Shield_OfOzQbs4hg6QbfTG.json | 13 ++- ...weapon_Advanced_Wand_jU9jWIardjtdAQcs.json | 13 ++- ...n_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json | 13 ++- ...weapon_Advanced_Whip_01izMUSJcAUo79IX.json | 13 ++- ...ane_Frame_Wheelchair_XRChepscgr75Uug7.json | 11 ++- ...pon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json | 13 ++- ...apon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json | 13 ++- .../weapon_Battleaxe_fbDYUja3ll9vCtrB.json | 13 ++- ...lack_Powder_Revolver_AokqTusPzn0hghkE.json | 13 ++- .../weapon_Bladed_Whip_5faflfNz20cFW1EM.json | 13 ++- ...eapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json | 13 ++- .../weapon_Bloodstaff_IoMVDz92WVvfGGdc.json | 13 ++- .../weapon_Blunderbuss_SLFrK0WmldPo0shz.json | 13 ++- .../weapon_Braveshield_QEvgVoz9xKBSKsGi.json | 13 ++- .../weapon_Bravesword_QZrWAkprA2tL2MOI.json | 13 ++- .../weapon_Broadsword_1cwWNt4sqlgA8gCT.json | 11 ++- .../weapon_Buckler_EmFTp9wzT6MHSaNz.json | 13 ++- ...weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json | 13 ++- .../weapon_Crossbow_cw7HG1Z7hp7OOLD0.json | 13 ++- ...weapon_Curved_Dagger_Fk69R40svV0kanZD.json | 13 ++- .../weapon_Cutlass_CWrbnethuILXrEpA.json | 13 ++- .../weapon_Dagger_iStO0BbeMTTR0rQi.json | 13 ++- ...pon_Devouring_Dagger_C5wSGglR8e0euQnY.json | 13 ++- .../weapon_Double_Flail_xm1yU7k58fMgXxRR.json | 13 ++- ...pon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json | 13 ++- .../weapon_Dualstaff_j8cdNeIUYxxzFVji.json | 13 ++- .../weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json | 13 ++- .../weapon_Elder_Bow_JdWcn9W1edhAEInL.json | 13 ++- ...pon_Extended_Polearm_fJHKMxZokVP34MCi.json | 13 ++- .../weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json | 13 ++- .../weapon_Firestaff_BtCm2RhWEfs00g38.json | 13 ++- ...pon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json | 13 ++- ...Floating_Bladeshards_3vti3xfo0wJND7ew.json | 13 ++- ...weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json | 13 ++- .../weapon_Ghostblade_6gFvOFTE97QZ74Zr.json | 13 ++- .../weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json | 13 ++- ...apon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json | 13 ++- ...weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json | 13 ++- .../weapon_Grappler_iEzPscUc18GuFoB6.json | 13 ++- .../weapon_Greatbow_MXBpbqQsZFln4rZk.json | 13 ++- .../weapon_Greatstaff_Yk8pTEmyLLi4095S.json | 13 ++- .../weapon_Greatsword_70ysaFJDREwTgvZa.json | 13 ++- .../weapon_Halberd_qT7FfmauAumOjJoq.json | 13 ++- .../weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json | 13 ++- ...apon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json | 13 ++- ...apon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json | 13 ++- .../weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json | 13 ++- ...weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json | 13 ++- .../weapon_Hand_Runes_3whiedn0jBMNRdIb.json | 13 ++- .../weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json | 13 ++- ...avy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json | 11 ++- ...eapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json | 13 ++- ...apon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json | 13 ++- ...ane_Frame_Wheelchair_N9P695V5KKlJbAY5.json | 11 ++- ...ved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json | 13 ++- ...n_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json | 13 ++- ..._Improved_Broadsword_OcKeLJxvmdT81VBc.json | 11 ++- ...on_Improved_Crossbow_55NwHIIZHUeKSE3M.json | 13 ++- ...pon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json | 13 ++- ...apon_Improved_Dagger_ScjTkb9qrndhlk9S.json | 13 ++- ...n_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json | 13 ++- ...proved_Glowing_Rings_N5amhkxR1xn3B7r2.json | 13 ++- ...on_Improved_Grappler_3T3o9zfe61t22L1H.json | 13 ++- ..._Improved_Greatstaff_LCuTrYXi4lhg6LqW.json | 13 ++- ..._Improved_Greatsword_FPX4ouDrxXiQ5MDf.json | 13 ++- ...pon_Improved_Halberd_F9PETfCQGwczBPif.json | 13 ++- ...mproved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json | 13 ++- ...proved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json | 13 ++- ..._Improved_Hand_Runes_jMEukC3VpNDz5AOD.json | 13 ++- ...avy_Frame_Wheelchair_L5KeCtrs768PmYWW.json | 11 ++- ...ght_Frame_Wheelchair_ZJsetdHKV77ygtCE.json | 11 ++- ...pon_Improved_Longbow_NacNonjbzyoVMNhI.json | 13 ++- ...n_Improved_Longsword_QyBZ5NxM8F9nCL9s.json | 13 ++- ...weapon_Improved_Mace_zSLx52U4Yltqx8F1.json | 13 ++- ...mproved_Quarterstaff_BEmAR60PM3ZaiNXa.json | 13 ++- ...apon_Improved_Rapier_LFPH8nD2f4Blv3AM.json | 13 ++- ...oved_Returning_Blade_SKNwkW23eVQjN4Zy.json | 13 ++- ...mproved_Round_Shield_DlinEBGZfIlvreO3.json | 13 ++- ...pon_Improved_Scepter_tj26lbNkwy8bORF4.json | 13 ++- ...on_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json | 13 ++- ..._Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json | 13 ++- ..._Improved_Shortsword_rSyBNRwemBVuTo3H.json | 9 +- ...mproved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json | 9 +- ...eapon_Improved_Spear_j5Pt1thLfcvopBij.json | 13 ++- ...mproved_Tower_Shield_bxt3NsbMqTSdI5ab.json | 13 ++- ...weapon_Improved_Wand_6d9B2b5X2d2U56jt.json | 13 ++- ...n_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json | 13 ++- ...weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json | 13 ++- ...eapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json | 11 ++- ...eapon_Knuckle_Blades_U8gfyvxoHm024inM.json | 13 ++- ...weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json | 11 ++- .../weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json | 13 ++- ...ane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json | 11 ++- ...ary_Arcane_Gauntlets_umADDPYCaykXDc1v.json | 13 ++- ..._Legendary_Battleaxe_1nztpLzoHGfbKf5x.json | 13 ++- ...Legendary_Broadsword_y3hfTPfZhMognyaJ.json | 11 ++- ...n_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json | 13 ++- ...on_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json | 13 ++- ...pon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json | 13 ++- ..._Legendary_Dualstaff_o3rsLvImcLAx5TvD.json | 13 ++- ...endary_Glowing_Rings_PReWrfuPjoNQuieo.json | 13 ++- ...n_Legendary_Grappler_IrtUj0UntBMNn49G.json | 13 ++- ...Legendary_Greatstaff_jDtvEabkHY1GFgfc.json | 13 ++- ...Legendary_Greatsword_zMZ46F9VR7zdTxb9.json | 13 ++- ...on_Legendary_Halberd_1AuMNiJz96Ez9fur.json | 13 ++- ...gendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json | 13 ++- ...endary_Hand_Crossbow_32nYyMaeDWaakSxz.json | 13 ++- ...Legendary_Hand_Runes_DWLkswhluXuMy3bB.json | 13 ++- ...avy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json | 11 ++- ...ght_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json | 11 ++- ...on_Legendary_Longbow_Utt1GpoH1fhaTOtN.json | 13 ++- ..._Legendary_Longsword_14abPqQcROJfDChR.json | 13 ++- ...eapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json | 13 ++- ...gendary_Quarterstaff_1ZciqG7vIKLYpKsP.json | 13 ++- ...pon_Legendary_Rapier_BakN97v4jTePcXiZ.json | 13 ++- ...dary_Returning_Blade_mcj3CPkcSSDdAcBB.json | 13 ++- ...gendary_Round_Shield_A28WL9E2lJ3iLZHW.json | 13 ++- ...on_Legendary_Scepter_IZ4CWNxfuM46JeCN.json | 13 ++- ...n_Legendary_Shortbow_j7kp36jaetfn5jb3.json | 13 ++- ...Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json | 13 ++- ...Legendary_Shortsword_dEumq3BIZBk5xYTk.json | 9 +- ...gendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json | 9 +- ...apon_Legendary_Spear_4e5pWxi2qohuGsWh.json | 13 ++- ...gendary_Tower_Shield_MaJIROht7A9LxIZx.json | 13 ++- ...eapon_Legendary_Wand_wPjg0LufJH9vUfVM.json | 13 ++- ..._Legendary_Warhammer_W9ymfEDck2icfvla.json | 13 ++- ...eapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json | 13 ++- ...ght_Frame_Wheelchair_iaGnlUkShBgdeMo0.json | 11 ++- .../weapon_Longbow_YfVs6Se903az4Yet.json | 13 ++- .../weapon_Longsword_Iv8BZM1R24QMT72M.json | 13 ++- .../weapons/weapon_Mace_cKQCDyM2UopDL9zF.json | 13 ++- .../weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json | 13 ++- ...eapon_Magus_Revolver_jGykNGQiKm63tCiE.json | 13 ++- ...pon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json | 13 ++- .../weapon_Midas_Scythe_BdLfy5i488VZgkjP.json | 13 ++- ...apon_Parrying_Dagger_taAZDkDCpeNgxhnn.json | 13 ++- ...pon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json | 13 ++- .../weapon_Primer_Shard_SxcblanBvqaest3A.json | 11 ++- .../weapon_Quarterstaff_mlIj88p1wcQNjEDG.json | 13 ++- .../weapon_Rapier_zkAgEW6zMkRZalEm.json | 13 ++- ...on_Retractable_Saber_i8CqVTzqoRoCewNe.json | 13 ++- ...weapon_Returning_Axe_FtsQGwOg3r8uUCST.json | 13 ++- ...apon_Returning_Blade_4fQpVfQ3NVwTHStA.json | 13 ++- ...weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json | 13 ++- .../weapon_Round_Shield_mxwWKDujgsRcZWPT.json | 13 ++- ...n_Runes_of_Ruination_EG6mZhr3ib56r974.json | 13 ++- .../weapon_Scepter_GZh345N8fmuS4Jeh.json | 13 ++- ...pon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json | 13 ++- .../weapon_Shortbow_p9tdjQr2AZP19RYm.json | 13 ++- .../weapon_Shortstaff_vHDHG3STcxTEfYAM.json | 13 ++- .../weapon_Shortsword_cjGZpXCoshEqi1FI.json | 9 +- ..._Siphoning_Gauntlets_1N1jggda5DfdzdMj.json | 13 ++- .../weapon_Sledge_Axe_OxsEmffWriiQmqJK.json | 13 ++- .../weapon_Small_Dagger_wKklDxs5nkzILNp4.json | 9 +- .../weapon_Spear_TF85tKJetUjLwh54.json | 13 ++- .../weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json | 13 ++- ...weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json | 11 ++- ..._Steelforged_Halberd_6bkbw4Ap644KZGvJ.json | 13 ++- ...n_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json | 13 ++- ...ord_of_Light___Flame_TVPCWnSELOVBv6G1.json | 13 ++- .../weapon_Talon_Blades_jlLtgK468rO5IssR.json | 13 ++- .../weapon_Thistlebow_I1nDGpulg29GpWOW.json | 11 ++- .../weapon_Tower_Shield_C9aWpK1shVMWP4m5.json | 13 ++- ...apon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json | 13 ++- .../weapons/weapon_Wand_ItWisJFNGMNWeaCV.json | 13 ++- ...Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json | 13 ++- ...weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json | 13 ++- .../weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json | 11 ++- .../weapon_Warhammer_ZXh1GQahBiODfSTC.json | 13 ++- .../weapons/weapon_Whip_CmtWqw6DwoePnX7W.json | 13 ++- ...pon_Widogast_Pendant_8Z5QrThfwkYPXNco.json | 13 ++- ...apon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json | 13 ++- ...feature_Accomplished_0wCctRupJAv5hTuE.json | 15 ++- ...ture_Act_of_Reprisal_k7vvMJtEcxMWUUrW.json | 15 ++- .../feature_Adept_v511C6GMShsBblah.json | 15 ++- .../feature_Adrenaline_uByM34yQlw38yf1V.json | 15 ++- ...re_Advanced_Training_uGcs785h94RMtueH.json | 15 ++- ...eature_Apex_Predator_lwH3E0Zyf4gbVOd0.json | 15 ++- ...eature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json | 15 ++- .../feature_Ascendant_fefLgx6kcYWusjBb.json | 15 ++- .../feature_At_Ease_xPWFvGvtUjIcqgJq.json | 15 ++- ...eature_Battle_Bonded_hWsKyed1vfILg0I8.json | 15 ++- ...eature_Battle_Ritual_qqb5acyUSl1sCpWW.json | 15 ++- .../feature_Battlemage_Y9eGMewnFZgPvX0M.json | 15 ++- .../feature_Brilliant_2A0HBDxGc4gEARou.json | 15 ++- ...re_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json | 15 ++- .../feature_Comaraderie_dArl2cxKIEGTicXU.json | 15 ++- .../feature_Companion_MBFXxIEwc0Dl4kJg.json | 15 ++- ...ature_Conjure_Shield_oirsCnN66GOlK3Fa.json | 15 ++- ..._Contacts_Everywhere_cXbRm744mW6UXGam.json | 15 ++- .../feature_Courage_o5j2vjXU8NicYlXx.json | 15 ++- .../feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json | 15 ++- .../feature_Defender_Jdktv5p1K2PfgxrT.json | 15 ++- .../feature_Devout_J3A7ycmj65hlhWnI.json | 15 ++- ...ature_Elemental_Aura_2JH9NaOh69yN80Gw.json | 15 ++- ...e_Elemental_Dominion_EFUJHrkTuyv8uA9l.json | 15 ++- ...lemental_Incarnation_f37TTgCc0Q3Ih1A1.json | 15 ++- ...feature_Elementalist_dPcqKN5NeDkjB1HW.json | 15 ++- .../feature_Eloquent_5bmB1YcxiJVNVXDM.json | 15 ++- ...ure_Elusive_Predator_Cjtc43V3IzAmfIFG.json | 15 ++- ...eature_Enchanted_Aid_4pVBN8cuKePI423V.json | 15 ++- .../feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json | 15 ++- ...ture_Ethereal_Visage_tyGB6wRKjYdIBK1i.json | 15 ++- ...ture_Expert_Training_iCXtOWBKv1FdKdWz.json | 15 ++- ...ature_Face_Your_Fear_D3ffFWSXCza4WGcM.json | 15 ++- ...ture_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json | 15 ++- ...ature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json | 15 ++- ...ure_Gifted_Performer_99U7YWNCxFZHCiT0.json | 15 ++- ...feature_Have_No_Fear_8TH6h6a36h09mf6d.json | 15 ++- ...ture_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json | 15 ++- ...ture_Honed_Expertise_w1BwNKxbQOSizLmZ.json | 15 ++- .../feature_Iron_Will_7AVRNyBcd1Nffjtn.json | 15 ++- ...feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json | 15 ++- ...ture_Loyal_Protector_hd7UeBPr86Mz21Pe.json | 15 ++- .../feature_Maestro_ZFkCz8XV1EtMoJ1w.json | 15 ++- ...ure_Manipulate_Magic_UNg4eyNfEQrMdD7G.json | 15 ++- ..._Martial_Preparation_dHgAnbt9m1KsQFmp.json | 15 ++- ...ture_Natural_Evasion_TnuLBtHQGbqyzn82.json | 15 ++- .../feature_Nemesis_DPKmipNRlSAMs2Cg.json | 15 ++- ...ture_Partner_in_Arms_G54qY96XK62hgoK9.json | 15 ++- ...feature_Path_Forward_uPPBOpoulUmSLlzr.json | 15 ++- ...ature_Perfect_Recall_HzPa5U0EQhDfFTqW.json | 15 ++- ...re_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json | 15 ++- .../feature_Prepared_YS52ZGdce605wNVT.json | 15 ++- ...feature_Regeneration_KRyrbSLVGreIOTZe.json | 15 ++- ...e_Regenerative_Reach_oLO3VjGkMcK1uvB9.json | 15 ++- ...ture_Reliable_Backup_QYNGdH37fsGuxS7L.json | 15 ++- .../feature_Revenge_oNfA5F9cKwNR7joq.json | 15 ++- ...ise_to_the_Challenge_dcutk8RVOJ2sEkO1.json | 15 ++- ...ature_Rousing_Speech_PCmYTX02JLzBpgml.json | 15 ++- ...re_Ruthless_Predator_Qny2J3R35bvC0Cey.json | 15 ++- ...ure_Sacred_Resonance_DxOAkDBfIMpXxAUD.json | 15 ++- ...ature_Shadow_Stepper_hAwTXjhyphiE3aeW.json | 15 ++- .../feature_Slayer_1hF5KGKQc2VKT5O8.json | 15 ++- ...eature_Sparing_Touch_GfOSgVJW8bS1OjNq.json | 15 ++- ...eature_Spirit_Weapon_McoS0RxNLOg3SfSt.json | 15 ++- ...ture_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json | 15 ++- ...eature_Transcendence_th6HZwEFnVBjUtqm.json | 15 ++- .../feature_Undaunted_866b2jjyzXP8nPRQ.json | 15 ++- .../feature_Unrelenting_4qP7bNyxVHBmr4Rb.json | 15 ++- .../feature_Unwavering_WBiFZaYNoQNhysmN.json | 15 ++- ...eature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json | 15 ++- .../feature_Virtuoso_kn2t409o0FDFQieo.json | 15 ++- ..._Warden_s_Protection_2F1bUFY80oce97C9.json | 15 ++- ...re_Weapon_Specialist_HAqtoKUTrk8Mip1n.json | 15 ++- ...ature_Well_Connected_7KnSOazixXXSnspj.json | 15 ++- ...ature_Wings_of_Light_KkQH0tYhagIqe2MT.json | 15 ++- .../subclass_Beastbound_TIUsIlTS1WkK5vr2.json | 15 ++- ...ss_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json | 15 ++- ...s_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json | 15 ++- ...class_Divine_Wielder_M5mpGoAj8LRkylrY.json | 15 ++- ...ass_Elemental_Origin_wg1H0hROc2acHwZh.json | 15 ++- ...subclass_Nightwalker_h161OSIK24Up4qNd.json | 15 ++- ...bclass_Primal_Origin_GLpRVxnY5E82khxH.json | 15 ++- ..._School_Of_Knowledge_qqQlgCqhOivUFoQn.json | 15 ++- ...bclass_School_Of_War_4y9Ph7RsCIAbkwTk.json | 15 ++- .../subclass_Stalwart_rKRxFBlkbh9cDK8K.json | 15 ++- .../subclass_Syndicate_95QxNZwgyEm1LqdG.json | 15 ++- .../subclass_Troubadour_ld8MIvk0xVJydSBz.json | 15 ++- .../subclass_Vengeance_SUo8NPBPO8aN193u.json | 15 ++- ...ss_Warden_of_Renewal_xp0XMjYT85Q7E90o.json | 15 ++- ...rden_of_the_Elements_W9hs5kxOWeY7eA4Q.json | 15 ++- .../subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json | 15 ++- ...lass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json | 15 ++- .../subclass_Wordsmith_XTSODVM8st75Os8M.json | 15 ++- styles/less/dialog/attribution/sheet.less | 23 +++++ styles/less/dialog/index.less | 1 + styles/less/global/elements.less | 11 +++ .../sheets/actors/actor-sheet-shared.less | 18 +++- .../sheets/actors/environment/header.less | 7 ++ .../less/sheets/actors/environment/sheet.less | 10 ++ styles/less/sheets/index.less | 2 + styles/less/sheets/items/heritage.less | 12 +++ .../less/sheets/items/item-sheet-shared.less | 13 +++ templates/dialogs/attribution.hbs | 26 ++++++ templates/settings/appearance-settings.hbs | 2 + templates/sheets/actors/adversary/notes.hbs | 4 + .../sheets/actors/environment/header.hbs | 23 +++-- templates/sheets/actors/environment/notes.hbs | 4 + .../sheets/global/tabs/tab-description.hbs | 4 + templates/sheets/items/ancestry/header.hbs | 1 + templates/sheets/items/community/header.hbs | 1 + templates/sheets/items/domainCard/header.hbs | 1 + 982 files changed, 9082 insertions(+), 3996 deletions(-) create mode 100644 module/applications/dialogs/attributionDialog.mjs delete mode 100644 src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json create mode 100644 styles/less/dialog/attribution/sheet.less create mode 100644 styles/less/sheets/items/heritage.less create mode 100644 styles/less/sheets/items/item-sheet-shared.less create mode 100644 templates/dialogs/attribution.hbs 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.

\n

Highborne 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.

\n

Loreborne 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.

\n

Orderborne 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.

\n

Ridgeborne 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.

\n

Seaborne 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.

\n

Slyborne 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.

\n

Underborne 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.

\n

Wanderborne 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.

\n

Wildborne 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 @@ +
+

{{item.name}}

+ +
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+ +
+ +
+
\ No newline at end of file diff --git a/templates/settings/appearance-settings.hbs b/templates/settings/appearance-settings.hbs index cd0fab3e..aa094d69 100644 --- a/templates/settings/appearance-settings.hbs +++ b/templates/settings/appearance-settings.hbs @@ -3,6 +3,8 @@

{{localize 'DAGGERHEART.SETTINGS.Menu.appearance.name'}}

+ {{formGroup settingFields.schema.fields.hideAttribution value=settingFields._source.hideAttribution localize=true}} +
{{localize 'DAGGERHEART.GENERAL.fear'}} {{formGroup settingFields.schema.fields.displayFear value=settingFields._source.displayFear localize=true}} diff --git a/templates/sheets/actors/adversary/notes.hbs b/templates/sheets/actors/adversary/notes.hbs index a2378516..a5c3f706 100644 --- a/templates/sheets/actors/adversary/notes.hbs +++ b/templates/sheets/actors/adversary/notes.hbs @@ -7,4 +7,8 @@ {{localize tabs.notes.label}} {{formInput notes.field value=notes.value enriched=notes.enriched toggled=true}}
+ + {{#if (and showAttribution document.system.attribution.artist)}} + + {{/if}} \ No newline at end of file diff --git a/templates/sheets/actors/environment/header.hbs b/templates/sheets/actors/environment/header.hbs index feecf9e9..b7eab3db 100644 --- a/templates/sheets/actors/environment/header.hbs +++ b/templates/sheets/actors/environment/header.hbs @@ -3,20 +3,25 @@

-
-
- - {{localize (concat 'DAGGERHEART.GENERAL.Tiers.' source.system.tier)}} - -
- {{#if source.system.type}} +
+
- {{localize (concat 'DAGGERHEART.CONFIG.EnvironmentType.' source.system.type '.label')}} + {{localize (concat 'DAGGERHEART.GENERAL.Tiers.' source.system.tier)}}
+ {{#if source.system.type}} +
+ + {{localize (concat 'DAGGERHEART.CONFIG.EnvironmentType.' source.system.type '.label')}} + +
+ {{/if}} +
+ {{#if (and showAttribution document.system.attributionLabel)}} + {{/if}} -
+
diff --git a/templates/sheets/actors/environment/notes.hbs b/templates/sheets/actors/environment/notes.hbs index 663a484a..4f6b131e 100644 --- a/templates/sheets/actors/environment/notes.hbs +++ b/templates/sheets/actors/environment/notes.hbs @@ -7,4 +7,8 @@ {{localize tabs.notes.label}} {{formInput notes.field value=notes.value enriched=notes.value toggled=true}} + + {{#if (and showAttribution document.system.attribution.artist)}} + + {{/if}} \ No newline at end of file diff --git a/templates/sheets/global/tabs/tab-description.hbs b/templates/sheets/global/tabs/tab-description.hbs index 69f62ade..6d0669e0 100755 --- a/templates/sheets/global/tabs/tab-description.hbs +++ b/templates/sheets/global/tabs/tab-description.hbs @@ -7,4 +7,8 @@ {{localize "DAGGERHEART.GENERAL.description"}} {{formInput systemFields.description value=document.system.description enriched=enrichedDescription toggled=true}} + + {{#if (and showAttribution document.system.attribution.artist)}} + + {{/if}} \ No newline at end of file diff --git a/templates/sheets/items/ancestry/header.hbs b/templates/sheets/items/ancestry/header.hbs index 00f863f1..60eaa363 100644 --- a/templates/sheets/items/ancestry/header.hbs +++ b/templates/sheets/items/ancestry/header.hbs @@ -4,6 +4,7 @@

{{localize 'TYPES.Item.ancestry'}}

+ {{#if (and showAttribution source.system.attributionLabel)}}
{{source.system.attributionLabel}}
{{/if}}
\ No newline at end of file diff --git a/templates/sheets/items/community/header.hbs b/templates/sheets/items/community/header.hbs index 794a3f12..63267f44 100644 --- a/templates/sheets/items/community/header.hbs +++ b/templates/sheets/items/community/header.hbs @@ -4,6 +4,7 @@

{{localize 'TYPES.Item.community'}}

+ {{#if (and showAttribution source.system.attributionLabel)}}
{{source.system.attributionLabel}}
{{/if}}
\ No newline at end of file diff --git a/templates/sheets/items/domainCard/header.hbs b/templates/sheets/items/domainCard/header.hbs index 7d3b73e2..935dca6f 100644 --- a/templates/sheets/items/domainCard/header.hbs +++ b/templates/sheets/items/domainCard/header.hbs @@ -24,5 +24,6 @@ {{source.system.level}}
+ {{#if (and showAttribution source.system.attributionLabel)}}
{{source.system.attributionLabel}}
{{/if}}
\ No newline at end of file From 5cd5de31aa0ab73227e79276f566eaa9b830deaf Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 18 Aug 2025 03:52:20 +0200 Subject: [PATCH 11/31] Scrolling Texts are now queued with a 600ms delay (#989) --- module/data/actor/base.mjs | 4 ++-- module/data/item/base.mjs | 4 +++- module/documents/actor.mjs | 42 +++++++++++++++++++++++++++----------- module/helpers/utils.mjs | 18 ++++++++-------- 4 files changed, 43 insertions(+), 25 deletions(-) diff --git a/module/data/actor/base.mjs b/module/data/actor/base.mjs index bdb810dd..2b74bf1c 100644 --- a/module/data/actor/base.mjs +++ b/module/data/actor/base.mjs @@ -1,5 +1,5 @@ import DHBaseActorSettings from '../../applications/sheets/api/actor-setting.mjs'; -import { createScrollText, getScrollTextData } from '../../helpers/utils.mjs'; +import { getScrollTextData } from '../../helpers/utils.mjs'; const resistanceField = (resistanceLabel, immunityLabel, reductionLabel) => new foundry.data.fields.SchemaField({ @@ -148,6 +148,6 @@ export default class BaseDataActor extends foundry.abstract.TypeDataModel { _onUpdate(changes, options, userId) { super._onUpdate(changes, options, userId); - createScrollText(this.parent, options.scrollingTextData); + if (options.scrollingTextData) this.parent.queueScrollText(options.scrollingTextData); } } diff --git a/module/data/item/base.mjs b/module/data/item/base.mjs index 1b257db4..59286a7b 100644 --- a/module/data/item/base.mjs +++ b/module/data/item/base.mjs @@ -221,6 +221,8 @@ export default class BaseDataItem extends foundry.abstract.TypeDataModel { super._onUpdate(changed, options, userId); updateLinkedItemApps(options, this.parent.sheet); - createScrollText(this.parent?.parent, options.scrollingTextData); + + if (this.parent?.parent && options.scrollingTextData) + this.parent.parent.queueScrollText(options.scrollingTextData); } } diff --git a/module/documents/actor.mjs b/module/documents/actor.mjs index 8e0b1c88..c4cc2207 100644 --- a/module/documents/actor.mjs +++ b/module/documents/actor.mjs @@ -1,10 +1,13 @@ import { emitAsGM, GMUpdateEvent } from '../systemRegistration/socket.mjs'; import { LevelOptionType } from '../data/levelTier.mjs'; import DHFeature from '../data/item/feature.mjs'; -import { damageKeyToNumber } from '../helpers/utils.mjs'; +import { createScrollText, damageKeyToNumber } from '../helpers/utils.mjs'; import DhCompanionLevelUp from '../applications/levelup/companionLevelup.mjs'; export default class DhpActor extends Actor { + #scrollTextQueue = []; + #scrollTextInterval; + /** * Return the first Actor active owner. */ @@ -27,7 +30,7 @@ export default class DhpActor extends Actor { /** @inheritDoc */ static migrateData(source) { - if(source.system?.attack && !source.system.attack.type) source.system.attack.type = "attack"; + if (source.system?.attack && !source.system.attack.type) source.system.attack.type = 'attack'; return super.migrateData(source); } @@ -572,19 +575,15 @@ export default class DhpActor extends Actor { if (armorSlotResult) { const { modifiedDamage, armorSpent, stressSpent } = armorSlotResult; updates.find(u => u.key === 'hitPoints').value = modifiedDamage; - if(armorSpent) { + if (armorSpent) { const armorUpdate = updates.find(u => u.key === 'armor'); - if(armorUpdate) - armorUpdate.value += armorSpent; - else - updates.push({ value: armorSpent, key: 'armor' }); + if (armorUpdate) armorUpdate.value += armorSpent; + else updates.push({ value: armorSpent, key: 'armor' }); } - if(stressSpent) { + if (stressSpent) { const stressUpdate = updates.find(u => u.key === 'stress'); - if(stressUpdate) - stressUpdate.value += stressSpent; - else - updates.push({ value: stressSpent, key: 'stress' }); + if (stressUpdate) stressUpdate.value += stressSpent; + else updates.push({ value: stressSpent, key: 'stress' }); } } } @@ -754,4 +753,23 @@ export default class DhpActor extends Actor { } } } + + queueScrollText(scrollingTextData) { + this.#scrollTextQueue.push(...scrollingTextData.map(data => () => createScrollText(this, data))); + if (!this.#scrollTextInterval) { + const scrollFunc = this.#scrollTextQueue.pop(); + scrollFunc?.(); + + const intervalFunc = () => { + const scrollFunc = this.#scrollTextQueue.pop(); + scrollFunc?.(); + if (this.#scrollTextQueue.length === 0) { + clearInterval(this.#scrollTextInterval); + this.#scrollTextInterval = null; + } + }; + + this.#scrollTextInterval = setInterval(intervalFunc.bind(this), 600); + } + } } diff --git a/module/helpers/utils.mjs b/module/helpers/utils.mjs index 47b6d904..dbf66ff4 100644 --- a/module/helpers/utils.mjs +++ b/module/helpers/utils.mjs @@ -371,17 +371,15 @@ export function getScrollTextData(resources, resource, key) { return { text, stroke, fill, direction }; } -export function createScrollText(actor, optionsData) { - if (actor && optionsData?.length) { +export function createScrollText(actor, data) { + if (actor) { actor.getActiveTokens().forEach(token => { - optionsData.forEach(data => { - const { text, ...options } = data; - canvas.interface.createScrollingText(token.getCenterPoint(), data.text, { - duration: 2000, - distance: token.h, - jitter: 0, - ...options - }); + const { text, ...options } = data; + canvas.interface.createScrollingText(token.getCenterPoint(), data.text, { + duration: 2000, + distance: token.h, + jitter: 0, + ...options }); }); } From f69e5704e4f47051fd681db81f768e53f5a6fca0 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 18 Aug 2025 03:59:57 +0200 Subject: [PATCH 12/31] Added a simple ViewMode for a character's levelup progression (#997) --- lang/en.json | 6 +- module/applications/levelup/_module.mjs | 1 + .../applications/levelup/levelupViewMode.mjs | 95 +++++++++++++++++++ .../applications/sheets/actors/character.mjs | 23 ++++- templates/levelup/tabs/viewMode.hbs | 24 +++++ 5 files changed, 143 insertions(+), 6 deletions(-) create mode 100644 module/applications/levelup/levelupViewMode.mjs create mode 100644 templates/levelup/tabs/viewMode.hbs diff --git a/lang/en.json b/lang/en.json index aeb63449..a7a615f5 100755 --- a/lang/en.json +++ b/lang/en.json @@ -193,7 +193,8 @@ "companionLevelup": { "confirmTitle": "Companion Levelup", "confirmText": "Would you like to level up your companion {name} by {levelChange} levels at this time? (You can do it manually later)" - } + }, + "viewLevelups": "View Levelups" }, "Companion": { "FIELDS": { @@ -493,7 +494,8 @@ "pretext": "When you level up, record it on your character sheet, then choose two from the list below or any unmarked from the previous tier.", "posttext": "Take an additional domain card of your level or lower from a domain you have access to." }, - "title": "{actor} Level Up" + "title": "{actor} Level Up", + "viewModeTitle": "{actor} Level Up (View Mode)" }, "MulticlassChoice": { "title": "Multiclassing - {actor}", diff --git a/module/applications/levelup/_module.mjs b/module/applications/levelup/_module.mjs index dd4135b4..24944feb 100644 --- a/module/applications/levelup/_module.mjs +++ b/module/applications/levelup/_module.mjs @@ -1,3 +1,4 @@ export { default as CharacterLevelup } from './characterLevelup.mjs'; export { default as CompanionLevelup } from './companionLevelup.mjs'; export { default as Levelup } from './levelup.mjs'; +export { default as LevelupViewMode } from './levelupViewMode.mjs'; diff --git a/module/applications/levelup/levelupViewMode.mjs b/module/applications/levelup/levelupViewMode.mjs new file mode 100644 index 00000000..b3d7c30f --- /dev/null +++ b/module/applications/levelup/levelupViewMode.mjs @@ -0,0 +1,95 @@ +import { chunkify } from '../../helpers/utils.mjs'; + +const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api; + +export default class DhlevelUpViewMode extends HandlebarsApplicationMixin(ApplicationV2) { + constructor(actor) { + super({}); + + this.actor = actor; + } + + get title() { + return game.i18n.format('DAGGERHEART.APPLICATIONS.Levelup.viewModeTitle', { actor: this.actor.name }); + } + + static DEFAULT_OPTIONS = { + classes: ['daggerheart', 'dialog', 'dh-style', 'levelup'], + position: { width: 1000, height: 'auto' }, + window: { + resizable: true, + icon: 'fa-solid fa-arrow-turn-up' + } + }; + + static PARTS = { + main: { template: 'systems/daggerheart/templates/levelup/tabs/viewMode.hbs' } + }; + + async _prepareContext(_options) { + const context = await super._prepareContext(_options); + + const { tiers } = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers); + const tierKeys = Object.keys(tiers); + const selections = Object.keys(this.actor.system.levelData.levelups).reduce( + (acc, key) => { + const level = this.actor.system.levelData.levelups[key]; + Object.keys(level.selections).forEach(optionKey => { + const choice = level.selections[optionKey]; + if (!acc[choice.tier][choice.optionKey]) acc[choice.tier][choice.optionKey] = {}; + acc[choice.tier][choice.optionKey][choice.checkboxNr] = choice; + }); + + return acc; + }, + tierKeys.reduce((acc, key) => { + acc[key] = {}; + return acc; + }, {}) + ); + + context.tiers = tierKeys.map((tierKey, tierIndex) => { + const tier = tiers[tierKey]; + + return { + name: tier.name, + active: true, + groups: Object.keys(tier.options).map(optionKey => { + const option = tier.options[optionKey]; + + const checkboxes = [...Array(option.checkboxSelections).keys()].flatMap(index => { + const checkboxNr = index + 1; + const checkboxData = selections[tierKey]?.[optionKey]?.[checkboxNr]; + const checkbox = { ...option, checkboxNr, tier: tierKey, disabled: true }; + + if (checkboxData) { + checkbox.level = checkboxData.level; + checkbox.selected = true; + } + + return checkbox; + }); + + let label = game.i18n.localize(option.label); + return { + label: label, + checkboxGroups: chunkify(checkboxes, option.minCost, chunkedBoxes => { + const anySelected = chunkedBoxes.some(x => x.selected); + const anyDisabled = chunkedBoxes.some(x => x.disabled); + return { + multi: option.minCost > 1, + checkboxes: chunkedBoxes.map(x => ({ + ...x, + selected: anySelected, + disabled: anyDisabled + })) + }; + }) + }; + }) + }; + }); + + return context; + } +} diff --git a/module/applications/sheets/actors/character.mjs b/module/applications/sheets/actors/character.mjs index 481c745e..78a77406 100644 --- a/module/applications/sheets/actors/character.mjs +++ b/module/applications/sheets/actors/character.mjs @@ -1,7 +1,7 @@ import DHBaseActorSheet from '../api/base-actor.mjs'; import DhpDeathMove from '../../dialogs/deathMove.mjs'; import { abilities } from '../../../config/actorConfig.mjs'; -import DhCharacterlevelUp from '../../levelup/characterLevelup.mjs'; +import { CharacterLevelup, LevelupViewMode } from '../../levelup/_module.mjs'; import DhCharacterCreation from '../../characterCreation/characterCreation.mjs'; import FilterMenu from '../../ux/filter-menu.mjs'; import { getDocFromElement, getDocFromElementSync } from '../../../helpers/utils.mjs'; @@ -23,6 +23,7 @@ export default class CharacterSheet extends DHBaseActorSheet { openPack: CharacterSheet.#openPack, makeDeathMove: CharacterSheet.#makeDeathMove, levelManagement: CharacterSheet.#levelManagement, + viewLevelups: CharacterSheet.#viewLevelups, toggleEquipItem: CharacterSheet.#toggleEquipItem, toggleResourceDice: CharacterSheet.#toggleResourceDice, handleResourceDice: CharacterSheet.#handleResourceDice, @@ -30,7 +31,14 @@ export default class CharacterSheet extends DHBaseActorSheet { tempBrowser: CharacterSheet.#tempBrowser }, window: { - resizable: true + resizable: true, + controls: [ + { + icon: 'fa-solid fa-angles-up', + label: 'DAGGERHEART.ACTORS.Character.viewLevelups', + action: 'viewLevelups' + } + ] }, dragDrop: [ { @@ -585,7 +593,14 @@ export default class CharacterSheet extends DHBaseActorSheet { if (!value || !subclass) return ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.missingClassOrSubclass')); - new DhCharacterlevelUp(this.document).render({ force: true }); + new CharacterLevelup(this.document).render({ force: true }); + } + + /** + * Opens the charater level management window in viewMode. + */ + static #viewLevelups() { + new LevelupViewMode(this.document).render({ force: true }); } /** @@ -638,7 +653,7 @@ export default class CharacterSheet extends DHBaseActorSheet { ability: abilityLabel }) }); - + this.consumeResource(result?.costs); } diff --git a/templates/levelup/tabs/viewMode.hbs b/templates/levelup/tabs/viewMode.hbs new file mode 100644 index 00000000..12e7cbcd --- /dev/null +++ b/templates/levelup/tabs/viewMode.hbs @@ -0,0 +1,24 @@ +
+
+ {{#each this.tiers as |tier key|}} +
+ {{tier.name}} + + {{#each tier.groups}} +
+
+ {{#each this.checkboxGroups}} +
+ {{#each this.checkboxes}} + + {{/each}} +
+ {{/each}} +
+ {{this.label}} +
+ {{/each}} +
+ {{/each}} +
+
\ No newline at end of file From bd8cfe0297405878e0df6d06ccccbaf0321adab3 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 18 Aug 2025 04:06:10 +0200 Subject: [PATCH 13/31] Clicking on the resource input of a feature no longer toggles the description (#993) --- module/applications/sheets/actors/adversary.mjs | 1 + module/applications/sheets/actors/character.mjs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/module/applications/sheets/actors/adversary.mjs b/module/applications/sheets/actors/adversary.mjs index c128b648..b0fc5fb4 100644 --- a/module/applications/sheets/actors/adversary.mjs +++ b/module/applications/sheets/actors/adversary.mjs @@ -60,6 +60,7 @@ export default class AdversarySheet extends DHBaseActorSheet { htmlElement.querySelectorAll('.inventory-item-resource').forEach(element => { element.addEventListener('change', this.updateItemResource.bind(this)); + element.addEventListener('click', e => e.stopPropagation()); }); } diff --git a/module/applications/sheets/actors/character.mjs b/module/applications/sheets/actors/character.mjs index 481c745e..4f7d947b 100644 --- a/module/applications/sheets/actors/character.mjs +++ b/module/applications/sheets/actors/character.mjs @@ -114,6 +114,7 @@ export default class CharacterSheet extends DHBaseActorSheet { htmlElement.querySelectorAll('.inventory-item-resource').forEach(element => { element.addEventListener('change', this.updateItemResource.bind(this)); + element.addEventListener('click', e => e.stopPropagation()); }); htmlElement.querySelectorAll('.inventory-item-quantity').forEach(element => { element.addEventListener('change', this.updateItemQuantity.bind(this)); @@ -638,7 +639,7 @@ export default class CharacterSheet extends DHBaseActorSheet { ability: abilityLabel }) }); - + this.consumeResource(result?.costs); } From bc5b01bdcf1ae8e5d647a210fc4632b2c8b07ee8 Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Sun, 17 Aug 2025 23:39:17 -0400 Subject: [PATCH 14/31] Use more opaque color for sheet background (#974) --- styles/less/global/sheet.less | 12 ++++++++++-- styles/less/utils/colors.less | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/styles/less/global/sheet.less b/styles/less/global/sheet.less index 172f0113..08e2668f 100755 --- a/styles/less/global/sheet.less +++ b/styles/less/global/sheet.less @@ -4,12 +4,20 @@ // Theme handling .appTheme({ - background: @dark-blue-60; - backdrop-filter: blur(10px); + background: @dark-blue-90; + backdrop-filter: blur(8px); }, { background: url('../assets/parchments/dh-parchment-light.png') no-repeat center; }); +body.game:is(.performance-low, .noblur) { + .themed.theme-dark .application.daggerheart.sheet.dh-style, + .themed.theme-dark.application.daggerheart.sheet.dh-style, + &.theme-dark .application.daggerheart { + background: @dark-blue; + }; +} + .application.sheet.dh-style { border-radius: 10px; diff --git a/styles/less/utils/colors.less b/styles/less/utils/colors.less index 64edfc6f..dcc7cc5b 100755 --- a/styles/less/utils/colors.less +++ b/styles/less/utils/colors.less @@ -47,6 +47,7 @@ @dark-blue-40: #18162e40; @dark-blue-50: #18162e50; @dark-blue-60: #18162e60; +@dark-blue-90: #18162e90; @semi-transparent-dark-blue: rgba(24, 22, 46, 0.33); @dark: #222; From f19548ef4f0cb8c35a1885a8b0645567bfd2162d Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Sun, 17 Aug 2025 23:40:58 -0400 Subject: [PATCH 15/31] Make sidebar hover more visually stable (#999) --- styles/less/sheets/actors/adversary/sidebar.less | 5 +++-- styles/less/sheets/actors/character/sidebar.less | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/styles/less/sheets/actors/adversary/sidebar.less b/styles/less/sheets/actors/adversary/sidebar.less index 6d194e37..70cd92ed 100644 --- a/styles/less/sheets/actors/adversary/sidebar.less +++ b/styles/less/sheets/actors/adversary/sidebar.less @@ -270,7 +270,7 @@ margin-bottom: 10px; .inventory-item { - padding: 0 10px; + padding-left: 10px; } } @@ -279,10 +279,11 @@ padding-top: 10px; padding-bottom: 20px; mask-image: linear-gradient(0deg, transparent 0%, black 5%, black 95%, transparent 100%); + scrollbar-width: thin; + scrollbar-gutter: stable; &:hover { overflow-y: auto; - scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; } } diff --git a/styles/less/sheets/actors/character/sidebar.less b/styles/less/sheets/actors/character/sidebar.less index e659c9a8..3ff8576d 100644 --- a/styles/less/sheets/actors/character/sidebar.less +++ b/styles/less/sheets/actors/character/sidebar.less @@ -443,7 +443,7 @@ margin-bottom: 10px; .inventory-item { - padding: 0 10px; + padding-left: 10px; } } @@ -452,10 +452,11 @@ padding-top: 10px; padding-bottom: 20px; mask-image: linear-gradient(0deg, transparent 0%, black 5%); + scrollbar-gutter: stable; + scrollbar-width: thin; &:hover { overflow-y: auto; - scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; } } From 4038c44f9a65cc5c1474e45ae656b62192901ee5 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Tue, 19 Aug 2025 13:03:16 +0200 Subject: [PATCH 16/31] [Fix] 987 - Auto Expand Bottom Chat (#1010) * If the last message in the chatlog is updated, scroll to bottom of chatlog * Cleaned up with ui.chat methods --- module/documents/chatMessage.mjs | 47 ++++++++++++++++++++------------ 1 file changed, 30 insertions(+), 17 deletions(-) diff --git a/module/documents/chatMessage.mjs b/module/documents/chatMessage.mjs index e36c1df3..79449bc0 100644 --- a/module/documents/chatMessage.mjs +++ b/module/documents/chatMessage.mjs @@ -43,6 +43,18 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage { return super._preDelete(options, user); } + /** @inheritDoc */ + _onUpdate(changes, options, userId) { + super._onUpdate(changes, options, userId); + + const lastMessage = Array.from(game.messages).sort((a, b) => b.timestamp - a.timestamp)[0]; + if (lastMessage.id === this.id && ui.chat.isAtBottom) { + setTimeout(() => { + ui.chat.scrollBottom(); + }, 5); + } + } + enrichChatMessage(html) { const elements = html.querySelectorAll('[data-perm-id]'); elements.forEach(e => { @@ -55,7 +67,7 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage { }); if (this.isContentVisible) { - if(this.type === 'dualityRoll') { + if (this.type === 'dualityRoll') { html.classList.add('duality'); switch (this.system.roll?.result?.duality) { case 1: @@ -70,27 +82,28 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage { } } - const autoExpandRoll = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.appearance).expandRollMessage, - rollSections = html.querySelectorAll(".roll-part"), - itemDesc = html.querySelector(".domain-card-move"); + const autoExpandRoll = game.settings.get( + CONFIG.DH.id, + CONFIG.DH.SETTINGS.gameSettings.appearance + ).expandRollMessage, + rollSections = html.querySelectorAll('.roll-part'), + itemDesc = html.querySelector('.domain-card-move'); rollSections.forEach(s => { - if(s.classList.contains("roll-section")) { + if (s.classList.contains('roll-section')) { const toExpand = s.querySelector('[data-action="expandRoll"]'); - toExpand.classList.toggle("expanded", autoExpandRoll.roll); - } else if(s.classList.contains("damage-section")) - s.classList.toggle("expanded", autoExpandRoll.damage); - else if(s.classList.contains("target-section")) - s.classList.toggle("expanded", autoExpandRoll.target); + toExpand.classList.toggle('expanded', autoExpandRoll.roll); + } else if (s.classList.contains('damage-section')) + s.classList.toggle('expanded', autoExpandRoll.damage); + else if (s.classList.contains('target-section')) s.classList.toggle('expanded', autoExpandRoll.target); }); - if(itemDesc && autoExpandRoll.desc) - itemDesc.setAttribute("open", ""); + if (itemDesc && autoExpandRoll.desc) itemDesc.setAttribute('open', ''); } - - if(!game.user.isGM) { - const applyButtons = html.querySelector(".apply-buttons"); + + if (!game.user.isGM) { + const applyButtons = html.querySelector('.apply-buttons'); applyButtons?.remove(); - if(!this.isAuthor && !this.speakerActor?.isOwner) { - const buttons = html.querySelectorAll(".ability-card-footer > .ability-use-button"); + if (!this.isAuthor && !this.speakerActor?.isOwner) { + const buttons = html.querySelectorAll('.ability-card-footer > .ability-use-button'); buttons.forEach(b => b.remove()); } } From 540ee49f5096c1a90ab125288bce6524ac9ed1e0 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Tue, 19 Aug 2025 13:12:09 +0200 Subject: [PATCH 17/31] Fixed so that active effects can be dragged between all sheets (#1011) --- .../sheets/api/application-mixin.mjs | 29 +++++++++++++++++-- module/applications/sheets/api/base-actor.mjs | 2 ++ module/applications/sheets/api/base-item.mjs | 4 +++ .../sheets/api/item-attachment-sheet.mjs | 2 +- module/applications/sheets/items/ancestry.mjs | 3 ++ module/applications/sheets/items/class.mjs | 15 +++++----- 6 files changed, 44 insertions(+), 11 deletions(-) diff --git a/module/applications/sheets/api/application-mixin.mjs b/module/applications/sheets/api/application-mixin.mjs index 83dc1581..ab1c9ab2 100644 --- a/module/applications/sheets/api/application-mixin.mjs +++ b/module/applications/sheets/api/application-mixin.mjs @@ -121,7 +121,7 @@ export default function DHApplicationMixin(Base) { } } ], - dragDrop: [], + dragDrop: [{ dragSelector: '.inventory-item[data-type="effect"]', dropSelector: null }], tagifyConfigs: [] }; @@ -249,14 +249,37 @@ export default function DHApplicationMixin(Base) { * @param {DragEvent} event * @protected */ - _onDragStart(event) {} + async _onDragStart(event) { + const inventoryItem = event.currentTarget.closest('.inventory-item'); + if (inventoryItem) { + const { type, itemUuid } = inventoryItem.dataset; + if (type === 'effect') { + const effect = await foundry.utils.fromUuid(itemUuid); + const effectData = { + type: 'ActiveEffect', + data: { ...effect.toObject(), _id: null }, + fromInternal: this.document.uuid + }; + event.dataTransfer.setData('text/plain', JSON.stringify(effectData)); + event.dataTransfer.setDragImage(inventoryItem.querySelector('img'), 60, 0); + } + } + } /** * Handle drop event. * @param {DragEvent} event * @protected */ - _onDrop(event) {} + _onDrop(event) { + event.stopPropagation(); + const data = foundry.applications.ux.TextEditor.implementation.getDragEventData(event); + if (data.fromInternal === this.document.uuid) return; + + if (data.type === 'ActiveEffect') { + this.document.createEmbeddedDocuments('ActiveEffect', [data.data]); + } + } /* -------------------------------------------- */ /* Context Menu */ diff --git a/module/applications/sheets/api/base-actor.mjs b/module/applications/sheets/api/base-actor.mjs index 67cec44f..2535142f 100644 --- a/module/applications/sheets/api/base-actor.mjs +++ b/module/applications/sheets/api/base-actor.mjs @@ -195,6 +195,8 @@ export default class DHBaseActorSheet extends DHApplicationMixin(ActorSheetV2) { }; event.dataTransfer.setData('text/plain', JSON.stringify(attackData)); event.dataTransfer.setDragImage(attackItem.querySelector('img'), 60, 0); + } else if (this.document.type !== 'environment') { + super._onDragStart(event); } } } diff --git a/module/applications/sheets/api/base-item.mjs b/module/applications/sheets/api/base-item.mjs index a9d3237d..9d7df6ee 100644 --- a/module/applications/sheets/api/base-item.mjs +++ b/module/applications/sheets/api/base-item.mjs @@ -252,6 +252,8 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) { }; event.dataTransfer.setData('text/plain', JSON.stringify(actionData)); event.dataTransfer.setDragImage(actionItem.querySelector('img'), 60, 0); + } else { + super._onDragStart(event); } } } @@ -261,6 +263,8 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) { * @param {DragEvent} event - The drag event */ async _onDrop(event) { + super._onDrop(event); + const data = foundry.applications.ux.TextEditor.implementation.getDragEventData(event); if (data.fromInternal) return; diff --git a/module/applications/sheets/api/item-attachment-sheet.mjs b/module/applications/sheets/api/item-attachment-sheet.mjs index 73c39923..2898f5ac 100644 --- a/module/applications/sheets/api/item-attachment-sheet.mjs +++ b/module/applications/sheets/api/item-attachment-sheet.mjs @@ -41,7 +41,7 @@ export default function ItemAttachmentSheet(Base) { } async _onDrop(event) { - const data = TextEditor.getDragEventData(event); + const data = foundry.applications.ux.TextEditor.implementation.getDragEventData(event); const attachmentsSection = event.target.closest('.attachments-section'); if (!attachmentsSection) return super._onDrop(event); diff --git a/module/applications/sheets/items/ancestry.mjs b/module/applications/sheets/items/ancestry.mjs index c7796f9a..8c0a5620 100644 --- a/module/applications/sheets/items/ancestry.mjs +++ b/module/applications/sheets/items/ancestry.mjs @@ -27,6 +27,9 @@ export default class AncestrySheet extends DHHeritageSheet { * @param {DragEvent} event - The drag event */ async _onDrop(event) { + const data = TextEditor.getDragEventData(event); + if (data.type === 'ActiveEffect') return super._onDrop(event); + const target = event.target.closest('fieldset.drop-section'); const typeField = this.document.system[target.dataset.type === 'primary' ? 'primaryFeature' : 'secondaryFeature']; diff --git a/module/applications/sheets/items/class.mjs b/module/applications/sheets/items/class.mjs index 79a689d8..01f4249a 100644 --- a/module/applications/sheets/items/class.mjs +++ b/module/applications/sheets/items/class.mjs @@ -115,16 +115,17 @@ export default class ClassSheet extends DHBaseItemSheet { async _onDrop(event) { event.stopPropagation(); const data = TextEditor.getDragEventData(event); - const item = await fromUuid(data.uuid); + const item = data.data ?? (await fromUuid(data.uuid)); + const itemType = data.data ? data.type : item.type; const target = event.target.closest('fieldset.drop-section'); - if (item.type === 'subclass') { + if (itemType === 'subclass') { await this.document.update({ 'system.subclasses': [...this.document.system.subclasses.map(x => x.uuid), item.uuid] }); - } else if (item.type === 'feature') { + } else if (['feature', 'ActiveEffect'].includes(itemType)) { super._onDrop(event); } else if (this.document.parent?.type !== 'character') { - if (item.type === 'weapon') { + if (itemType === 'weapon') { if (target.classList.contains('primary-weapon-section')) { if (!item.system.secondary) await this.document.update({ @@ -136,21 +137,21 @@ export default class ClassSheet extends DHBaseItemSheet { 'system.characterGuide.suggestedSecondaryWeapon': item.uuid }); } - } else if (item.type === 'armor') { + } else if (itemType === 'armor') { if (target.classList.contains('armor-section')) { await this.document.update({ 'system.characterGuide.suggestedArmor': item.uuid }); } } else if (target.classList.contains('choice-a-section')) { - if (item.type === 'loot' || item.type === 'consumable') { + if (itemType === 'loot' || itemType === 'consumable') { const filteredChoiceA = this.document.system.inventory.choiceA; if (filteredChoiceA.length < 2) await this.document.update({ 'system.inventory.choiceA': [...filteredChoiceA.map(x => x.uuid), item.uuid] }); } - } else if (item.type === 'loot') { + } else if (itemType === 'loot') { if (target.classList.contains('take-section')) { const filteredTake = this.document.system.inventory.take.filter(x => x); if (filteredTake.length < 3) From b3062bf5b9861189f9fa72f9b5929ef066648eaf Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Tue, 19 Aug 2025 13:16:08 +0200 Subject: [PATCH 18/31] RollTable chat message cleanup (#1012) --- daggerheart.mjs | 6 ++-- module/dice/_module.mjs | 1 + module/dice/baseRoll.mjs | 7 ++++ module/documents/chatMessage.mjs | 56 +++++++++++++++++++++---------- templates/ui/chat/foundryRoll.hbs | 10 +++--- 5 files changed, 55 insertions(+), 25 deletions(-) create mode 100644 module/dice/baseRoll.mjs diff --git a/daggerheart.mjs b/daggerheart.mjs index a2f41735..795764cc 100644 --- a/daggerheart.mjs +++ b/daggerheart.mjs @@ -8,7 +8,7 @@ import RegisterHandlebarsHelpers from './module/helpers/handlebarsHelper.mjs'; import { enricherConfig, enricherRenderSetup } from './module/enrichers/_module.mjs'; import { getCommandTarget, rollCommandToJSON } from './module/helpers/utils.mjs'; import { NarrativeCountdowns } from './module/applications/ui/countdowns.mjs'; -import { DHRoll, DualityRoll, D20Roll, DamageRoll } from './module/dice/_module.mjs'; +import { BaseRoll, DHRoll, DualityRoll, D20Roll, DamageRoll } from './module/dice/_module.mjs'; import { enrichedDualityRoll } from './module/enrichers/DualityRollEnricher.mjs'; import { registerCountdownHooks } from './module/data/countdowns.mjs'; import { @@ -49,9 +49,7 @@ Hooks.once('init', () => { DamageRoll: DamageRoll }; - CONFIG.Dice.rolls = [...CONFIG.Dice.rolls, DHRoll, DualityRoll, D20Roll, DamageRoll]; - Roll.CHAT_TEMPLATE = 'systems/daggerheart/templates/ui/chat/foundryRoll.hbs'; - Roll.TOOLTIP_TEMPLATE = 'systems/daggerheart/templates/ui/chat/foundryRollTooltip.hbs'; + CONFIG.Dice.rolls = [BaseRoll, DHRoll, DualityRoll, D20Roll, DamageRoll]; CONFIG.MeasuredTemplate.objectClass = placeables.DhMeasuredTemplate; const { DocumentSheetConfig } = foundry.applications.apps; diff --git a/module/dice/_module.mjs b/module/dice/_module.mjs index f34f32d3..e6755a74 100644 --- a/module/dice/_module.mjs +++ b/module/dice/_module.mjs @@ -1,3 +1,4 @@ +export { default as BaseRoll } from './baseRoll.mjs'; export { default as D20Roll } from './d20Roll.mjs'; export { default as DamageRoll } from './damageRoll.mjs'; export { default as DHRoll } from './dhRoll.mjs'; diff --git a/module/dice/baseRoll.mjs b/module/dice/baseRoll.mjs new file mode 100644 index 00000000..4d065fff --- /dev/null +++ b/module/dice/baseRoll.mjs @@ -0,0 +1,7 @@ +export default class BaseRoll extends Roll { + /** @inheritdoc */ + static CHAT_TEMPLATE = 'systems/daggerheart/templates/ui/chat/foundryRoll.hbs'; + + /** @inheritdoc */ + static TOOLTIP_TEMPLATE = 'systems/daggerheart/templates/ui/chat/foundryRollTooltip.hbs'; +} diff --git a/module/documents/chatMessage.mjs b/module/documents/chatMessage.mjs index baf4ca17..a51686e6 100644 --- a/module/documents/chatMessage.mjs +++ b/module/documents/chatMessage.mjs @@ -13,6 +13,10 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage { /* We can change to fully implementing the renderHTML function if needed, instead of augmenting it. */ const html = await super.renderHTML({ actor: actorData, author: this.author }); + if (this.flags.core?.RollTable) { + html.querySelector('.roll-buttons.apply-buttons').remove(); + } + this.enrichChatMessage(html); this.addChatListeners(html); @@ -54,26 +58,44 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage { e.setAttribute('data-use-perm', document.testUserPermission(game.user, 'OWNER')); }); - if (this.isContentVisible && this.type === 'dualityRoll') { - html.classList.add('duality'); - switch (this.system.roll?.result?.duality) { - case 1: - html.classList.add('hope'); - break; - case -1: - html.classList.add('fear'); - break; - default: - html.classList.add('critical'); - break; + if (this.isContentVisible) { + if (this.type === 'dualityRoll') { + html.classList.add('duality'); + switch (this.system.roll?.result?.duality) { + case 1: + html.classList.add('hope'); + break; + case -1: + html.classList.add('fear'); + break; + default: + html.classList.add('critical'); + break; + } } + + const autoExpandRoll = game.settings.get( + CONFIG.DH.id, + CONFIG.DH.SETTINGS.gameSettings.appearance + ).expandRollMessage, + rollSections = html.querySelectorAll('.roll-part'), + itemDesc = html.querySelector('.domain-card-move'); + rollSections.forEach(s => { + if (s.classList.contains('roll-section')) { + const toExpand = s.querySelector('[data-action="expandRoll"]'); + toExpand.classList.toggle('expanded', autoExpandRoll.roll); + } else if (s.classList.contains('damage-section')) + s.classList.toggle('expanded', autoExpandRoll.damage); + else if (s.classList.contains('target-section')) s.classList.toggle('expanded', autoExpandRoll.target); + }); + if (itemDesc && autoExpandRoll.desc) itemDesc.setAttribute('open', ''); } - - if(!game.user.isGM) { - const applyButtons = html.querySelector(".apply-buttons"); + + if (!game.user.isGM) { + const applyButtons = html.querySelector('.apply-buttons'); applyButtons?.remove(); - if(!this.isAuthor && !this.speakerActor?.isOwner) { - const buttons = html.querySelectorAll(".ability-card-footer > .ability-use-button"); + if (!this.isAuthor && !this.speakerActor?.isOwner) { + const buttons = html.querySelectorAll('.ability-card-footer > .ability-use-button'); buttons.forEach(b => b.remove()); } } diff --git a/templates/ui/chat/foundryRoll.hbs b/templates/ui/chat/foundryRoll.hbs index a3c55a9e..8fc62219 100644 --- a/templates/ui/chat/foundryRoll.hbs +++ b/templates/ui/chat/foundryRoll.hbs @@ -8,7 +8,9 @@

{{total}}

-
- - -
\ No newline at end of file +{{#unless flags.core.RollTable}} +
+ + +
+{{/unless}} \ No newline at end of file From a415ab99550f3b093b355668727a930bb5794812 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Tue, 19 Aug 2025 20:43:34 +0200 Subject: [PATCH 19/31] [Fix] Fixed 1.0.6 Errors (#1020) * Raised version * Removed references to the unreleased expandChatMessage * Raised version * Restored 1.0.6 as version --- module/data/action/baseAction.mjs | 18 +++++++++--------- module/documents/chatMessage.mjs | 16 ---------------- system.json | 2 +- templates/ui/tooltip/action.hbs | 2 +- 4 files changed, 11 insertions(+), 27 deletions(-) diff --git a/module/data/action/baseAction.mjs b/module/data/action/baseAction.mjs index 3666b6e7..5d3f7721 100644 --- a/module/data/action/baseAction.mjs +++ b/module/data/action/baseAction.mjs @@ -163,7 +163,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel const hasRoll = this.getUseHasRoll(byPass); return { event, - title: `${this.item.name}: ${this.name}`, + title: `${this.item.name}: ${game.i18n.localize(this.name)}`, source: { item: this.item._id, action: this._id, @@ -208,15 +208,15 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel } async consume(config, successCost = false) { - const actor= this.actor.system.partner ?? this.actor, + const actor = this.actor.system.partner ?? this.actor, usefulResources = { - ...foundry.utils.deepClone(actor.system.resources), - fear: { - value: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Resources.Fear), - max: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).maxFear, - reversed: false - } - }; + ...foundry.utils.deepClone(actor.system.resources), + fear: { + value: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Resources.Fear), + max: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).maxFear, + reversed: false + } + }; for (var cost of config.costs) { if (cost.keyIsID) { diff --git a/module/documents/chatMessage.mjs b/module/documents/chatMessage.mjs index a51686e6..b8667384 100644 --- a/module/documents/chatMessage.mjs +++ b/module/documents/chatMessage.mjs @@ -73,22 +73,6 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage { break; } } - - const autoExpandRoll = game.settings.get( - CONFIG.DH.id, - CONFIG.DH.SETTINGS.gameSettings.appearance - ).expandRollMessage, - rollSections = html.querySelectorAll('.roll-part'), - itemDesc = html.querySelector('.domain-card-move'); - rollSections.forEach(s => { - if (s.classList.contains('roll-section')) { - const toExpand = s.querySelector('[data-action="expandRoll"]'); - toExpand.classList.toggle('expanded', autoExpandRoll.roll); - } else if (s.classList.contains('damage-section')) - s.classList.toggle('expanded', autoExpandRoll.damage); - else if (s.classList.contains('target-section')) s.classList.toggle('expanded', autoExpandRoll.target); - }); - if (itemDesc && autoExpandRoll.desc) itemDesc.setAttribute('open', ''); } if (!game.user.isGM) { diff --git a/system.json b/system.json index d954c6d5..e6b7650f 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "daggerheart", "title": "Daggerheart", "description": "An unofficial implementation of the Daggerheart system", - "version": "1.0.5", + "version": "1.0.6", "compatibility": { "minimum": "13", "verified": "13.347", diff --git a/templates/ui/tooltip/action.hbs b/templates/ui/tooltip/action.hbs index 20929bf3..a3020aff 100644 --- a/templates/ui/tooltip/action.hbs +++ b/templates/ui/tooltip/action.hbs @@ -1,5 +1,5 @@
-

{{item.name}}

+

{{localize item.name}}

{{{description}}}
{{#if item.uses.max}} From 85111648aa1396b4f81a953dcc15c08d2088b9c3 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Wed, 20 Aug 2025 02:42:26 +0200 Subject: [PATCH 20/31] Fixed Spear/HallowedAxe and type in SRD (#1023) --- ...eapon_Advanced_Spear_pK6dsNABKKp1CIGN.json | 41 +------------------ .../weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json | 6 +-- ...eapon_Improved_Spear_j5Pt1thLfcvopBij.json | 41 +------------------ ...apon_Legendary_Spear_4e5pWxi2qohuGsWh.json | 41 +------------------ .../weapon_Spear_TF85tKJetUjLwh54.json | 41 +------------------ ...rnal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json | 2 +- 6 files changed, 8 insertions(+), 164 deletions(-) diff --git a/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json b/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json index a1a7ad44..af308099 100644 --- a/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json +++ b/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json @@ -99,46 +99,7 @@ "artist": "" } }, - "effects": [ - { - "name": "Cumbersome", - "description": "-1 to Finesse", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "changes": [ - { - "key": "system.traits.finesse.value", - "mode": 2, - "value": "-1" - } - ], - "_id": "hl0S2LrBY5Mg69q6", - "type": "base", - "system": {}, - "disabled": false, - "duration": { - "startTime": null, - "combat": null - }, - "origin": null, - "tint": "#ffffff", - "transfer": true, - "statuses": [], - "sort": 0, - "flags": {}, - "_stats": { - "compendiumSource": null, - "duplicateSource": null, - "exportSource": null, - "coreVersion": "13.346", - "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1753831987001, - "modifiedTime": 1753831987001, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" - }, - "_key": "!items.effects!pK6dsNABKKp1CIGN.hl0S2LrBY5Mg69q6" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, diff --git a/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json b/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json index 11e0cc87..1a6d341f 100644 --- a/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json +++ b/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json @@ -25,7 +25,7 @@ "amount": 1 }, "roll": { - "trait": "agility", + "trait": "strength", "type": "attack", "difficulty": null, "bonus": null, @@ -112,9 +112,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.5", + "systemVersion": "1.0.6", "createdTime": 1753828229603, - "modifiedTime": 1755430661659, + "modifiedTime": 1755633052433, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Vayg7CnRTFBrunjM" diff --git a/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json b/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json index a398b785..32c080ff 100644 --- a/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json +++ b/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json @@ -99,46 +99,7 @@ "artist": "" } }, - "effects": [ - { - "name": "Cumbersome", - "description": "-1 to Finesse", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "changes": [ - { - "key": "system.traits.finesse.value", - "mode": 2, - "value": "-1" - } - ], - "_id": "8twXPJELZpvFWA5K", - "type": "base", - "system": {}, - "disabled": false, - "duration": { - "startTime": null, - "combat": null - }, - "origin": null, - "tint": "#ffffff", - "transfer": true, - "statuses": [], - "sort": 0, - "flags": {}, - "_stats": { - "compendiumSource": null, - "duplicateSource": null, - "exportSource": null, - "coreVersion": "13.346", - "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1753829466016, - "modifiedTime": 1753829466016, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" - }, - "_key": "!items.effects!j5Pt1thLfcvopBij.8twXPJELZpvFWA5K" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, diff --git a/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json b/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json index c7fa407a..1f76d2aa 100644 --- a/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json +++ b/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json @@ -99,46 +99,7 @@ "artist": "" } }, - "effects": [ - { - "name": "Cumbersome", - "description": "-1 to Finesse", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "changes": [ - { - "key": "system.traits.finesse.value", - "mode": 2, - "value": "-1" - } - ], - "_id": "f44KWDgCQeKYfccr", - "type": "base", - "system": {}, - "disabled": false, - "duration": { - "startTime": null, - "combat": null - }, - "origin": null, - "tint": "#ffffff", - "transfer": true, - "statuses": [], - "sort": 0, - "flags": {}, - "_stats": { - "compendiumSource": null, - "duplicateSource": null, - "exportSource": null, - "coreVersion": "13.346", - "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1753834816288, - "modifiedTime": 1753834816288, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" - }, - "_key": "!items.effects!4e5pWxi2qohuGsWh.f44KWDgCQeKYfccr" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, diff --git a/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json index 77bd4f42..2432a75b 100644 --- a/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json +++ b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json @@ -99,46 +99,7 @@ "artist": "" } }, - "effects": [ - { - "name": "Cumbersome", - "description": "-1 to Finesse", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "changes": [ - { - "key": "system.traits.finesse.value", - "mode": 2, - "value": "-1" - } - ], - "_id": "Z5MnVI8EOOgzRdXC", - "type": "base", - "system": {}, - "disabled": false, - "duration": { - "startTime": null, - "combat": null - }, - "origin": null, - "tint": "#ffffff", - "transfer": true, - "statuses": [], - "sort": 0, - "flags": {}, - "_stats": { - "compendiumSource": null, - "duplicateSource": null, - "exportSource": null, - "coreVersion": "13.346", - "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1753828072355, - "modifiedTime": 1753828072355, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" - }, - "_key": "!items.effects!TF85tKJetUjLwh54.Z5MnVI8EOOgzRdXC" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, diff --git a/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json b/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json index ece610c0..a1bc9f84 100644 --- a/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json +++ b/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json @@ -125,7 +125,7 @@ "image": {}, "text": { "format": 1, - "content": "

FLOW OF THE GAME

Daggerheart is a conversation. The GM describes fictional scenarios involving the PCs, and the players take turns describing how their characters react. The goal of every person at the table is to build upon everyone else’s ideas and collaboratively tell a satisfying story. The system facilitates this collaborative process by providing structure to the conversation and mechanics for resolving moments of tension where fate or fortune determine the outcome of events.

PLAYER PRINCIPLES & BEST PRACTICES

To get the most out of Daggerheart, we recommend players keep the following principles and practices in mind throughout each session:

PRINCIPLES

  • Be a fan of your character and their journey.

  • Spotlight your friends.

  • Address the characters and address the players.

  • Build the world together.

  • Play to find out what happens.

  • Hold on gently.

BEST PRACTICES

  • Embrace danger.

  • Use your resources.

  • Tell the story.

  • Discover your character.

For more information, see the Daggerheart Core Rulebook, pages 9 and 108.

CORE GAMEPLAY LOOP

The core gameplay loop is the procedure that drives every scene, both in and out of combat:

STEP 1: SET THE SCENE

The GM describes a scenario, establishing the PCs’ surroundings and any dangers, NPCs, or other important details the characters would notice.

STEP 2: ASK AND ANSWER QUESTIONS

The players ask clarifying questions to explore the scene more deeply and gather information that could inform their characters’ actions. The GM responds to these questions by giving the players information their characters could easily obtain, or by asking questions of their own to the players. The players also respond to any questions the GM poses to them.

In this way, the table builds out the fiction collaboratively.

STEP 3: BUILD ON THE FICTION

As the scene develops, the players find opportunities to take action—problems to solve, obstacles to overcome, mysteries to investigate, and so on. The players describe how their characters proceed; if their proposed actions carry no chance of failure (or if failure would be boring), they automatically succeed. But if the outcome of their action is unknown, the GM calls for an action roll. Either way, the table works the outcome into the story and moves the fiction forward, narrating how the PC’s actions have changed things.

STEP 4: GO BACK TO STEP 1

The process repeats from the beginning, with the GM relaying any updated details or material changes to the players. This process continues until the end of the scene is triggered by a mechanic or arrives organically.

THE SPORLIGHT

The spotlight is a symbol that represents the table’s attention—and therefore the immediate focus of both the narrative and the game mechanics. Any time a character or player becomes the focus of a scene, they “are in the spotlight” or “have the spotlight.”

The spotlight moves around the table organically as scenes unfold unless a mechanical trigger determines where the spotlight goes next. For example, when a player fails an action roll, the mechanics prompt the GM to seize the spotlight and make a GM move.

TURN ORDER & ACTION ECONOMY

Daggerheart’s turns don’t follow a traditional, rigid format:
there is no explicit initiative mechanic and characters don’t have a set number of actions they can take or things they can do before the spotlight passes to someone else. A player with the spotlight describes what their character does and the spotlight simply swings to whoever:

  1. the fiction would naturally turn it toward

  2. hasn’t had the focus in a while, or

  3. a triggered mechanic puts it on


Optional: Spotlight Tracker Tool

If your group prefers a more traditional action economy, you can use tokens to track how many times a player has had the spotlight: At the start of a session or scene, each player adds a certain number of tokens (we recommend 3) to their character sheet and removes a token each time they take an action. If the spotlight would swing to someone without any tokens, it swings to someone else instead. Once every player has used all their available tokens, players refill their character sheet with the same number of tokens as before, then continue playing.


MAKING MOVES & TAKING ACTION

Any time a character does something to advance the story, such as speaking with another character, interacting with the environment, making an attack, casting a spell, or using a class feature, they are making a move.

ACTION ROLLS

Any move where success would be trivial or failure would be boring automatically succeeds, but any move that’s difficult to accomplish or risky to attempt triggers an action roll.

OVERVIEW

All action rolls require a pair of d12s called Duality Dice.

These are two visually distinct twelve-sided dice, with one die representing Hope and the other representing Fear.

To make an action roll, you roll the Duality Dice, sum the results, apply any relevant modifiers, and compare the total to a Difficulty number to determine the outcome:

  • Success with Hope: If your total meets or beats the difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a “Success with Hope.” You succeed and gain a Hope.

  • Success with Fear: If your total meets or beats the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a “Success with Fear.” You succeed with a cost or complication, but the GM gains a Fear.

  • Failure with Hope: If your total is less than the Difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a “Failure with Hope.” You fail with a minor consequence and gain a Hope, then the spotlight swings to the GM.

  • Failure with Fear: If your total is less than the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a “Failure with Fear.” You fail with a major consequence and the GM gains a Fear, then the spotlight swings to the GM.

  • Critical Success: If the Duality Dice show matching results, you rolled a “Critical Success” (“Crit”). You automatically succeed with a bonus, gain a Hope, and clear a Stress. If this was an attack roll, you deal critical damage.

Note: A Critical Success counts as a roll “with Hope.”

After resolving the action roll, the table works together to weave the outcome into the narrative and play continues.

FAILING FORWARD

In Daggerheart, every time you roll the dice, the scene changes in some way. There is no such thing as a roll where “nothing happens,” because the fiction constantly evolves based on the successes and failures of the characters.

PROCEDURE

The following steps describe in more detail the procedure that all action rolls utilize:

STEP 1: PICK AN APPROPRIATE TRAIT

Some actions and effects specify in their description which trait applies to the roll; otherwise, the GM tells the acting player which character trait best applies to the action being attempted. If more than one trait could apply to the roll, the GM chooses or lets the acting player decide.

STEP 2: DETERMINE THE DIFFICULTY

Some actions and features say in their description what the Difficulty is. Otherwise, the GM determines the Difficulty based on the scenario. The GM can choose whether to share the Difficulty with the table. In either case, the GM should communicate the potential consequences of failure to the acting player.

STEP 3: APPLY EXTRA DICE AND MODIFIERS

The acting player decides whether to Utilize an Experience or activate other effects, then, if applicable, adds the appropriate tokens and dice (such as advantage or Rally dice) to their dice pool.


Note: Unless an action, ability, or feature specifically allows for it, a player must declare the use of any Experiences, extra dice, or other modifiers before they roll.


STEP 4: ROLL THE DICE

The acting player rolls their entire dice pool and announces the results in the format of “[total result] with [Hope/Fear]”— or “Critical Success!” in the case of matching Duality Dice.


Example: A player is making an action roll with a +1 in the relevant trait and no other modifiers; they roll the Duality Dice and get a result of 5 on their Hope Die and 7 on their Fear Die, then announce “I rolled a 13 with Fear!”


STEP 5: RESOLVE THE OUTCOME

The active player and the GM work together, along with the suggestions and support of the rest of the table, to resolve the outcome of the action.

GM MOVES AND ADVERSARY ACTIONS

GMs also make moves. They should consider making a move when a player does one of the following things:

  • Rolls with Fear on an action roll.

  • Fails an action roll.

  • Does something that would have consequences.

  • Gives them a golden opportunity.

  • Looks to them for what happens next.

After the GM turn is done, the spotlight goes back to the PCs.

Many adversaries and environments have Fear Features, especially powerful or consequential moves that the GM must spend Fear to activate.


Note: This Fear is in addition to any Fear the GM has previously spent to seize the spotlight or activate another action or ability.


ADVERSARY ACTIONS

When play passes to the GM, the GM can make a GM move to spotlight an adversary. A spotlighted adversary can:

  • Move within Close range and make a standard attack

  • Move within Close range and use an adversary action

  • Clear a condition

  • Sprint within Far or Very Far range on the battlefield

  • Do anything else the fiction demands or the GM deems appropriate

The GM can spend additional Fear to spotlight additional adversaries. Once the GM has finished, the spotlight swings back to the PCs.

SPECIAL ROLLS

Some rolls have unique specifications or otherwise modify the action roll procedure: trait rolls, Spellcast Rolls, attack rolls, and damage rolls. Unless otherwise noted, you can apply any bonus, modifier, or effect to a special roll as if it were a standard action roll.

TRAIT ROLLS

An action roll that specifies which character trait applies to it is called a trait roll. In the text of a feature or effect, a trait roll is referenced with the format “[Trait] Roll (Difficulty)” (e.g., “Agility Roll (12)”). If the text of an effect doesn’t specify a trait roll’s Difficulty, the GM sets the Difficulty based on the circumstances.

Features and effects that affect a trait roll also affect any action roll that uses the same trait, including attack rolls, Spellcast rolls, and standard action rolls.


Example: The katari’s ancestry feature “Feline Instincts,” which allows the katari to reroll an Agility Roll, can also be used on a standard action roll using Agility to traverse dangerous terrain or on an attack roll made with a weapon that uses Agility.


SPELLCAST ROLLS

Spellcast Rolls are trait rolls that require you to use your Spellcast trait. Your Spellcast trait, if you have one, is determined by your subclass.

Spellcast Rolls are only made when a character uses a feature that requires one. A successful Spellcast Roll activates the effect as described by the feature.


Notes: A Spellcast Roll that can damage a target is also considered an attack roll.

When you cast a spell, the text tells you when the effect ends. The GM can spend a Fear to end a temporary effect. If your spell doesn’t specify when it ends, it ends when you choose or at a natural moment of the story. You can choose to end your spell early.

You can cast and maintain the effects of more than one spell at the same time.


REACTION ROLLS

A reaction roll is made in response to an attack or a hazard, representing a character’s attempt to avoid or withstand an imminent effect.

Reaction rolls work like action rolls, except they don’t generate Hope or Fear, don’t trigger additional GM moves, and other characters can’t aid you with Help an Ally.

If you critically succeed on a reaction roll, you don’t clear a Stress or gain a Hope, but you do ignore any effects that would have impacted you on a success, such as taking damage or marking Stress.

GROUP ACTION ROLLS

When multiple PCs take action together, the party chooses one PC to lead the action. Each other player then describes how their character collaborates on the task. The leader makes an action roll as usual, while the other players make reaction rolls using whichever traits they and the GM decide fit best.

The lead character gains a +1 bonus to their lead action roll for each of these reaction rolls that succeeded and a −1 penalty for each these reaction rolls that failed.

TAG TEAM ROLLS

Each player can, once per session, initiate a Tag Team Roll between their character and another PC by spending 3 Hope. The players work with one another to describe how they combine their actions in a unique and exciting way. Both players make separate action rolls; before resolving the roll’s outcome, choose one of the rolls to apply to both actions. On a roll with Hope, all PCs involved gain a Hope. On a roll with Fear, the GM gains a Fear token for each PC involved.

On a successful Tag Team attack roll, both players roll damage and add the totals together to determine the damage dealt, which is then treated as if it came from a single source. If the attacks deal different types of damage, the players choose which type to deal.


Notes:

A Tag Team Roll counts as a single action roll for the purposes of any countdowns or features that track action rolls.

Though each player may only initiate one Tag Team Roll per session, one PC can be involved in multiple Tag Team Rolls.


ADVANTAGE & DISADVANTAGE

Some features and effects let you roll with advantage or disadvantage on an action or reaction roll:

  • Advantage represents an opportunity that you seize to increase your chances of success. When you roll with advantage, you roll a d6 advantage die with your dice pool and add its result to your total.

  • Disadvantage represents an additional difficulty, hardship, or challenge you face when attempting an action. When you roll with disadvantage, you roll a d6 disadvantage die with your dice pool and subtract its result from your total.

Advantage or disadvantage can be granted or imposed by mechanical triggers or at the GM’s discretion. When a PC aids you with Help an Ally, they roll their own advantage die and you add it to your total.

Advantage and disadvantage dice cancel each out, one-for-one, when they would be added to the same dice pool, so you’ll never roll both at the same time. If you have advantage or disadvantage from other sources that don’t affect your own dice pool, such as another player’s Help an Ally move, their effects stack with your rolled results.

HOPE & FEAR

Hope and Fear are metacurrencies representing the cosmic forces that shape the events of your table’s story. Hope powers PC abilities and features, while Fear powers the abilities of the GM and the adversaries and environments they control.

HOPE

Every PC starts with 2 Hope at character creation and gains more throughout play. A PC can have a maximum of 6 Hope at one time, and Hope carries over between sessions.

Players can spend Hope to:

  • Help an Ally

    When you Help an Ally who is making an action roll, describe how you do so and roll an advantage die. Multiple players can spend Hope to help the same acting player, but that player only adds the highest result to their final total.

  • Utilize an Experience

    When you Utilize an Experience on a relevant roll, add its modifier to the result. You can spend multiple Hope to utilize multiple Experiences.

  • Initiate a Tag Team Roll

    Spend 3 Hope to initiate a Tag Team roll, combining the actions of two PCs into one impressive act of synergy. When you make a Tag Team roll, both players roll their action rolls and then choose which set of results to apply to the outcome.

  • Activate a Hope Feature

    A Hope Feature is any effect that allows (or requires) you to spend a specified amount of Hope to activate it. Class Hope features are class-specific features, detailed on your character sheet, that cost 3 Hope to activate


Note: When using a Hope Feature, if you rolled with Hope for that action, the Hope you gain from that roll can be spent on that feature (or toward it, if it requires spending multiple Hope).


FEAR

The GM gains Fear whenever a player rolls with Fear and can spend Fear at any time to make or enhance a GM move or to use a Fear Feature. The GM can have up to 12 Fear at one time. Fear carries over between sessions.

COMBAT

Though Daggerheart relies on the same flow of collaborative storytelling in and out of combat, physical conflicts rely more heavily on several key mechanics related to attacking, maneuvering, and taking damage.

EVASION

Evasion represents a character’s ability to avoid attacks and other unwanted effects. Any roll made against a PC has a Difficulty equal to the target’s Evasion. A PC’s base Evasion is determined by their class, but can be modified by domain cards, equipment, conditions, and other effects.


Note: attacks rolled against adversaries use the target’s Difficulty instead of Evasion.


HIT POINTS & DAMAGE THRESHOLDS

Hit Points (HP) represent a character’s ability to withstand physical injury. When a character takes damage, they mark 1 to 3 HP, based on their damage thresholds:

  • If the final damage is at or above the character’s Severe damage threshold, they mark 3 HP.

  • If the final damage is at or above the character’s Major damage threshold but below their Severe damage threshold, they mark 2 HP.

  • If the final damage is below the character’s Major damage threshold, they mark 1 HP.

  • If incoming damage is ever reduced to 0 or less, no HP is marked.

A PC’s damage thresholds are calculated by adding their level to the listed damage thresholds of their equipped armor. A PC’s starting HP is based on their class, but they can gain additional Hit Points through advancements, features, and other effects.

An adversary’s Damage Thresholds and HP are listed in their stat blocks.

When a character marks their last Hit Point, they fall. If a PC falls, they make a death move.

Characters can clear Hit Points by taking downtime moves (see: Downtime) or by activating relevant special abilities or effects.


Optional Rule: Massive Damage

If a character ever takes damage equal to twice their Severe threshold, they mark 4 HP instead of 3.


STRESS

Stress represents how much mental, physical, and emotional strain a character can endure. Some special abilities or effects require the character activating them to mark Stress, and the GM can require a PC to mark Stress as a GM move or to represent the cost, complication, or consequence of an action roll.

When a character marks their last Stress, they become Vulnerable (see: Conditions) until they clear at least 1 Stress.

When a character must mark 1 or more Stress but can’t, they mark 1 HP instead. A character can’t use a move that requires them to mark Stress if all of their Stress is marked.

PCs can clear Stress by making downtime moves (see: Downtime). A PC’s maximum Stress is determined by their class, but they can increase it through advancements, abilities, and other effects.

ATTACKING

ATTACK ROLLS

An attack roll is an action roll intended to inflict harm. The trait that applies to an attack roll is specified by the weapon or spell being used. Unarmed attack rolls use either Strength or Finesse (GM’s choice). An attack roll’s Difficulty, unless otherwise noted, is equal to the Difficulty score of its target.

DAMAGE ROLLS

On a successful attack, roll damage. Damage is calculated from the damage roll listed in the attack’s description with the format “xdy+[modifier]” (e.g., for a spell that inflicts “1d8+2” damage, you roll an eight-sided and add 2 to the result; the damage dealt is equal to the total).

Any time an effect says to deal damage using your Spellcast trait, you roll a number of dice equal to your Spellcast trait.


Note: If your Spellcast trait is +0 or lower, you don’t roll anything.


For weapons, the number of damage dice you roll is equal to your Proficiency. Note that your Proficiency multiplies the number of dice you roll, but doesn’t affect the modifier. For example, a PC with Proficiency 2 and wielding a weapon with adamage rating of “d8+2” deals damage equal to “2d8+2” on a successful attack.

Successful unarmed attacks inflict [Proficiency]d4 damage.

CRITICAL DAMAGE

When you get a critical success (i.e., you roll matching values on your Duality Dice) on an attack roll, you deal extra damage.

Make the damage roll as usual, but add the maximum possible result of the damage dice to the final total. For instance, if an attack would normally deal 2d8+1 damage, a critical success would deal 2d8+1+16.

DAMAGE TYPES

There are two damage types: physical damage (phy) and magic damage (mag). Unless stated otherwise, mundane weapons and unarmed attacks deal physical damage, and spells deal magic damage.

RESISTANCE, IMMUNITY, AND DIRECT DAMAGE

If a target has resistance to a damage type, then they reduce incoming damage of that type by half before comparing it to their Hit Point Thresholds. If the target has additional ways of reducing incoming damage, such as marking Armor Slots, they apply the resistance effect first. The effects of multiple resistances to the same damage type do not stack.

If a target has immunity to a damage type, they ignore incoming damage of that type.

If an attack deals both physical and magic damage, a character can only benefit from resistance or immunity if they are resistant or immune to both damage types.

Direct damage is damage that can’t be reduced by marking Armor Slots.

MULTI-TARGET ATTACK ROLLS

If a spell or ability allows you to target multiple adversaries, make one attack roll and one damage roll, then apply the results to each target individually.

MULTIPLE DAMAGE SOURCES

Damage dealt simultaneously from multiple sources is always totaled before it’s compared to its target’s damage thresholds.


For example, if a PC with orc ancestry makes a successful attack against a target in Melee range and decides to spend a Hope to use their “Tusks” feature (which gives them an extra 1d6 damage on a damage roll), they would roll their normal weapon damage and add a d6 to the result, then deal that total damage to the adversary.


MAPS, RANGE, AND MOVEMENT

You can play Daggerheart using “theater of the mind” or maps and miniatures. The conversions below from abstract ranges to physical measurements assume 1 inch of map represents about 5 feet of fictional space.

Daggerheart uses the following ranges to translate fictional positioning into relative distance for the purposes of targeting, movement, and other game mechanics:

  • Melee: Close enough to touch, up to a few feet away.

  • Very Close: Close enough to see fine details, about 5–10 feet away. While in danger, a character can move, as part of their action, from Very Close range into Melee range. On a map: anything within the shortest length of a game card (2-3 inches).

  • Close: Close enough to see prominent details, about 10–30 feet away. While in danger, a character can move, as part of their action, from Close range into Melee range. On a map: anything within the length of a pencil (5-6 inches).

  • Far: Close enough to see very little detail, about 30–100 feet away. While in danger, a character must make an Agility Roll to safely move from Far range into Melee range. On a map: anything within the length of the long edge of a piece of copy paper (11–12 inches).

  • Very Far: Too far to make out any details, about 100–300 feet away. While in danger, a character must make an Agility Roll to safely move from Very Far range into Melee range. On a map: anything beyond Far range, but still within the bounds of the conflict or scene.

  • Out of Range: Anything beyond a character’s Very Far range is Out of Range and usually can’t be targeted.

Range is measured from the source of an effect, such as the attacker or spellcaster, to the target or object of an effect.

A weapon, spell, ability, item, or other effect’s stated range is a maximum range; unless otherwise noted, it can be used at closer distances.


Optional Rule: Defined Ranges

If your table would rather operate with more precise range rules, you can use a 1-inch grid battle map during combat.

If you do, use the following guidelines for play:

  • Melee: 1 square

  • Very Close: 3 squares

  • Close: 6 squares

  • Far: 12 squares

  • Very Far: 13+ squares

  • Out of Range: Off the battlemap


MOVEMENT UNDER PRESSURE

When you’re under pressure or in danger and make an action roll, you can move to a location within Close range as part of that action. If you’re not already making an action roll, or if you want to move farther than your Close range, you need to succeed on an Agility Roll to safely reposition yourself.

An adversary can move within Close range for free as part of an action, or within Very Far range as a separate action.

AREA OF EFFECT

Unless stated otherwise, all the targets of a group effect must be within Very Close range of a single origin point within your effect’s range.

LINE OF SIGHT & COVER

Unless stated otherwise, a ranged attacker must have line of sight to their intended target to make an attack roll. If a partial obstruction lies between the attacker and target, the target has cover. Attacks made through cover are rolled with disadvantage. If the obstruction is total, there is no line of sight.

CONDITIONS

Conditions are effects that grant specific benefits or drawbacks to the target they are attached to.

STANDARD CONDITIONS

Daggerheart has three standard conditions:

HIDDEN

While you’re out of sight from all enemies and they don’t otherwise know your location, you gain the Hidden condition. Any rolls against a Hidden creature have disadvantage. After an adversary moves to where they would see you, you move into their line of sight, or you make an attack, you are no longer Hidden.

RESTRAINED

Restrained characters can’t move, but you can still take actions from their current position.

VULNERABLE

When a creature is Vulnerable, all rolls targeting them have advantage.

Some features can apply special or unique conditions, which work as described in the feature text.

Unless otherwise noted, the same condition can’t be applied more than once to the same target.

TEMPORARY TAGS & SPECIAL CONDITIONS

The temporary tag denotes a condition or effect that the affected creature can clear by making a move against it. When an affected PC makes a move to clear a temporary condition or effect, it normally requires a successful action roll using an appropriate trait. When an affected adversary makes a move to clear a temporary condition or effect, the GM puts the spotlight on the adversary and describes how they do it; this doesn’t require a roll but it does use up that adversary’s spotlight.

Special conditions are only cleared when specific requirements are met, such as completing a certain action or using a particular item. The requirements for clearing these conditions are stated in the text of the effect that applies the condition.

DOWNTIME

Between conflicts, the party can take a rest to recover expended resources and deepen their bonds. During a rest, each PC can make up to two downtime moves.

When the party rests, they must choose between a short rest and a long rest. If a party takes three short rests in a row, their next rest must be a long rest.

If a short rest is interrupted, such as by an adversary's attack, the characters don’t gain its benefits. If a long rest is interrupted, the characters only gain the benefits of a short rest.

A short rest lasts enough time for the party to catch its breath, about an hour in-world. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):

  • Tend to Wounds: Clear 1d4+Tier Hit Points for yourself or an ally.

  • Clear Stress: Clear 1d4+Tier Stress.

  • Repair Armor: Clear 1d4+Tier Armor Slots from your or an ally’s armor.

  • Prepare: Describe how you prepare yourself for the path ahead, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.

At the end of a short rest, any features or effects with a limited number of uses per rest refresh and any features or effects that last until your next rest expire.

A long rest is when the characters make camp and relax or sleep for several in-game hours. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):

  • Tend to All Wounds: Clear all Hit Points for yourself or an ally.

  • Clear All Stress: Clear all Stress.

  • Repair All Armor: Clear all Armor Slots from your or an ally’s armor

  • Prepare: Describe how you prepare for the next day’s adventure, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.

  • Work on a Project: With GM approval, a PC may pursue a long-term project, such as deciphering an ancient text or crafting a new weapon. The first time they start a new project, assign it a countdown. Each time a PC makes the Work on a Project move, they either advance their project’s countdown automatically or make an action roll to advance it (GM’s choice).

At the end of a long rest, any features or effects with a limited number of uses per rest or per long rest refresh and any features or effects that last until your next rest or until your next long rest expire.

DOWNTIME CONSEQUENCES

On a short rest, the GM gains 1d4 Fear. On a long rest, they gain Fear equal to 1d4 + the number of PCs, and they can advance a long-term countdown of their choice.

DEATH

When a PC marks their last Hit Point, they must make a death move by choosing one of the following options:

  • Blaze of Glory: Your character embraces death and goes out in a blaze of glory. Take one final action. It automatically critically succeeds (with GM approval), and then you cross through the veil of death.

  • Avoid Death: Your character avoids death and faces the consequences. They temporarily drop unconscious, and then you work with the GM to describe how the situation worsens. While unconscious, your character can’t move or act, and they can’t be targeted by an attack. They return to consciousness when an ally clears 1 or more of their marked Hit Points or when the party finishes a long rest. After your character falls unconscious, roll your Hope Die. If its value is equal to or less than your character’s level, they gain a scar: permanently cross out a Hope slot and work with the GM to determine its lasting narrative impact and how, if possible, it can be restored. If you ever cross out your last Hope slot, your character’s journey ends.

  • Risk It All: Roll your Duality Dice. If the Hope Die is higher, your character stays on their feet and clears a number of Hit Points or Stress equal to the value of the Hope Die (you can divide the Hope Die value between Hit Points and Stress however you’d prefer). If the Fear Die is higher, your character crosses through the veil of death. If the Duality Dice show matching results, your character stays up and clears all Hit Points and Stress.

If your character dies, work with the GM before the next session to create a new character at the current level of the rest of the party.

ADDITIONAL RULES

The following rules apply to many aspects of the game.

ROUNDING UP

This game doesn’t use fractions; if you need to round to a whole number, round up unless otherwise specified. When in doubt, resolve any ambiguity in favor of the PCs.

REROLLING DICE

When a feature allows you to reroll a die, you always take the new result unless the feature specifically says otherwise.

INCOMING DAMAGE

Incoming damage means the total damage from a single attack or source, before Armor Slots are marked.

SIMULTANEOUS EFFECTS

If the resolution order of multiple effects is unclear, the person in control of the effects (player or GM) decides what order to resolve them in.

STACKING EFFECTS

Unless stated otherwise, all effects beside conditions and advantage/disadvantage can stack.

ONGOING SPELL EFFECTS

If an effect doesn’t have a listed mechanical expiration, it only ends when decided by the controlling player, the GM, or the demands of the fiction.

SPENDING RESOURCES

Unless an effect states otherwise, you can’t spend Hope or mark Stress multiple times on the same feature to increase or repeat its effects on the same roll.

USING FEATURES AFTER A ROLL

If a feature allows you to affect a roll after the result has been totaled, you can use it after the GM declares whether the roll succeeds or fails, but not after the consequences unfold or another roll is made.

LEVELING UP

Your party levels up whenever the GM decides you’ve reached a narrative milestone (usually about every 3 sessions). All party members level up at the same time.

Daggerheart has 10 PC levels divided into 4 tiers:


→ Tier 1 encompasses level 1 only.

→ Tier 2 encompasses levels 2–4.

→ Tier 3 encompasses levels 5–7.

→ Tier 4 encompasses levels 8–10.


Your tier affects your damage thresholds, tier achievements, and access to advancements.

STEP ONE: TIER ACHIEVEMENTS

Take any applicable tier achievements

  • At level 2, you gain a new Experience at +2 and permanently increase your Proficiency by 1.

  • At level 5, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.

  • At level 8, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.

STEP TWO: ADVANCEMENTS

Choose any two advancements with at least one unmarked slot from your tier or below. Options with multiple slots can be chosen more than once. When you choose an advancement, mark one of its slots.

  • When you choose to increase two unmarked character traits and mark them: Choose two unmarked character traits and gain a permanent +1 bonus to them. You can’t increase these stats again until the next tier (when your tier achievement allows you to clear those marks).

  • When you choose to permanently add 1 or more Hit Point slots: Darken the outline of the next rectangle in the Hit Point section of your character sheet in pen or permanent marker.

  • When you choose to permanently add 1 or more Stress slots: Darken the outline of the next rectangle in the Stress section of your character sheet in pen or permanent marker.

  • When you choose to increase your Experience: Choose two Experiences on your character sheet and gain a permanent +1 bonus to both.

  • When you take an additional domain card: You can choose an additional domain card at or below your level or from your class’s domains. If you’ve multiclassed, you can instead select a card at or below half your level from your chosen multiclass domain.

  • When you choose to increase your Evasion: Gain a permanent +1 bonus to your Evasion.

  • When you choose to take an upgraded subclass card: Take the next card for your subclass. If you have only the foundation card, take a specialization; if you have a specialization already, take a mastery. Then cross out this tier’s multiclass option.

  • When you choose to increase your Proficiency: Fill in one of the open circles in the “Proficiency” section of your character sheet, then increase your weapon’s number of damage dice by 1. The black box around this advancement’s slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.

  • When you choose to multiclass: Choose an additional class, select one of its domains, and gain its class feature. Add the appropriate multiclass module to your character sheet and take the foundation card from one of its subclasses. Then cross out the “upgraded subclass” advancement option in this tier and all other “multiclass” advancement options on your character sheet. The black box around this advancement’s slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.

STEP THREE: DAMAGE THRESHOLDS

Increase all damage thresholds by 1.

STEP FOUR: DOMAIN CARDS

Acquire a new domain card at your level or lower from one of your class’s domains and add it to your loadout or vault. If your loadout is already full, you can’t add the new card to it until you move another into your vault. You can also exchange one domain card you’ve previously acquired for a different domain card of the same level or lower.

MULTICLASSING

Starting at level 5, you can choose multiclassing as an option when leveling up. When you multiclass, you choose an additional class, gain access to one of its domains, and acquire its class feature. Take the appropriate multiclass module and add it to the right side of your character sheet, then choose a foundation card from one of its subclasses. If your foundation cards specify different Spellcast traits, you can choose which one to apply when making a Spellcast roll.

Whenever you have the option to acquire a new domain card, you can choose from cards at or below half your current level (rounded up) from the domain you chose when you selected the multiclass advancement.

EQUIPMENT

Your equipped weapons and armor are the ones listed in the “Active Weapons” and “Active Armor” sections of your character sheet. Your character can only attack with weapons, benefit from armor, and gain features from items they have equipped. You can’t equip weapons or armor with a higher tier than you.

PCs can carry up to two additional weapons in the “Inventory Weapon” areas of the character sheet.

You can swap an Inventory Weapon with an Active Weapon at no cost during a rest or moment of calm; otherwise, you must mark a Stress to do so.

Your character can only have one Active Armor at a time.

They can’t equip armor while in danger or under pressure; otherwise, they can equip or unequip armor without cost.

Each armor has its own Armor Slots; if your character unequips their armor, track how many of its Armor Slots are marked. You can't carry armor in your inventory. When your character equips or unequips armor, recalculate your damage thresholds.

WEAPONS

All weapons have a tier, trait, range, damage die, damage type, and burden. Some weapons also have a feature.

CATEGORY

A weapon’s category specifies whether it is a Primary or Secondary weapon. Your character can only equip up to one weapon of each category at a time.

TRAIT

A weapon’s trait specifies which trait to use when making an attack roll with it.

RANGE

A weapon’s range specifies the maximum distance between the attacker and their target when attacking with it.

DAMAGE

A weapon’s damage indicates the size of the damage dice you roll on a successful attack with it; you roll a number of dice equal to your Proficiency. If the damage includes a flat modifier, this number is added to the total damage rolled, but is not altered or affected by Proficiency.

DAMAGE TYPE

A weapon’s damage type indicates whether it deals physical or magic damage. Weapons that deal magic damage can only be wielded by characters with a Spellcast trait.

BURDEN

A weapon’s burden indicates how many hands it occupies when equipped. Your character’s maximum burden is 2 hands.

FEATURE

A weapon’s feature is a special rule that stays in effect while the weapon is equipped.

You can throw an equipped weapon at a target within Very Close range, making the attack roll with Finesse. On a success, deal damage as usual for that weapon. Once thrown, the weapon is no longer considered equipped. Until you retrieve and re-equip it, you can’t attack with it or benefit from its features.

Combat Wheelchair

By Mark Thompson

The combat wheelchair is a ruleset designed to help you play a wheelchair user in Daggerheart. This section provides mechanics and narrative guidance for you to work from, but feel free to adapt the flavor text to best suit your character. Have fun with your character’s wheelchair design, and make it as unique or tailored to them as you please.

ACTION AND MOVEMENT

When describing how your character moves, you can use descriptions such as the following:

  • “I roll over to the door to see if it’s open.”

  • “I wheel myself over to the group to ask what’s going on.”

  • “I pull my brakes and skid to a halt, turning in my seat to level my bow at the intruder.”

CONSEQUENCES

Here are some ways you might describe complications you encounter when your character uses their wheelchair:

  • “I pull my brakes, but I don’t think to account for the loose gravel on the ground.”

  • “I hit a patch of ice awkwardly and am sent skidding out past my target.”

  • “I go to push off in pursuit, but one of my front caster wheels snags on a crack in the pavement, stalling me for a moment.”

GMs should avoid breaking a character's wheelchair or otherwise removing it from play as a consequence, unless everyone at the table, especially the wheelchair user’s player, gives their approval.

EVASION

Your character is assumed to be skilled in moving their wheelchair and navigating numerous situations in it. As a result, the only wheelchair that gives a penalty to a PC's Evasion is the Heavy Frame model.

BURDEN

All wheelchairs can be maneuvered using one or two hands outside of combat. However, when being used as a weapon, the chair is restricted to requiring one or two hands to perform attacks, depending on the model you’ve chosen. If you’re playing a character who has limited to no mobility in their arms, their wheelchair can be attuned to them by magical means. For example, your character might use a psychic link to guide the chair around like a pseudo-electric wheelchair. All the rules presented here can be tailored and adapted to any character's needs.

CHOOSING YOUR MODEL

All combat wheelchairs are equipped as Primary Weapons.

There are three models of wheelchair available: light, heavy, and arcane. You’re encouraged to consider the type of character you’re playing and the class they belong to, then choose the model that best matches that character concept.

ARMOR

Every armor has a name, base damage thresholds, and a base Armor Score. Some armor also has a feature.

  • An armor’s base armor score indicates how many Armor Slots it provides its wearer before additional bonuses are added to calculate their total Armor Score. A PC’s Armor Score can’t exceed 12.

  • An armor’s base thresholds determine its wearer’s major and severe damage thresholds before adding bonuses to calculate their final damage thresholds.

  • An armor’s feature is a special rule that stays in effect while the armor is equipped.

While unarmored, your character’s base Armor Score is 0, their Major threshold is equal to their level, and their Severe threshold is equal to twice their level.

REDUCING INCOMING DAMAGE

When you take damage, you can mark one Armor Slot to reduce the number of Hit Points you would mark by one. If your character has an Armor Score of 0, you can’t mark Armor Slots. If an effect temporarily increases your Armor Score,

it increases your available Armor Slots by the same amount; when the effect ends, so does the availability of these Armor Slots.

LOOT

Loot comprises any consumables or reusable items the party acquires.

Items can be used until sold, discarded, or lost.

To generate a random item, choose a rarity, roll the designated dice, and match the total to the item in the table:

  • Common: 1d12 or 2d12

  • Rare: 3d12 or 4d12

  • Uncommon: 2d12 or 3d12

  • Legendary: 4d12 or 5d12

@UUID[RollTable.KKqUrMMXPpm7uhYT]{Loot}

Consumables

Consumables are loot that can only be used once. You can hold up to five of each consumable at a time. Using a consumable doesn’t require a roll unless required by the GM or the demands of the fiction.

To generate a random consumable, choose a rarity, roll the designated dice, and match the total to the item in the table:

  • Common: 1d12 or 2d12

  • Rare: 3d12 or 4d12

  • Uncommon: 2d12 or 3d12

  • Legendary: 4d12 or 5d12

@UUID[RollTable.wZXyi343PSVVwWB3]{Consumables}

GOLD

Gold is an abstract measurement of how much wealth a character has, and is measured in handfuls, bags, and chests, with 10 handfuls to 1 bag, and 10 bags to 1 chest. When you have marked all of the slots in a category and you gain another gold reward in that category, mark a slot in the following category and clear all the slots in the current one.

For example, if you have 9 handfuls and gain another, you instead mark 1 bag and erase all handfuls. If you have 9 bags and gain another, you mark 1 chest and erase all bags.

You can’t have more than 1 chest, so if all your Gold slots are marked, you’ll need to spend some of your gold or store it somewhere else before you can acquire more.


Optional Rule: Gold Coins

If your group wants to track gold with more granularity, you can add coins as your lowest denomination. Following the established pattern, 10 coins equal 1 handful.


" + "content": "

FLOW OF THE GAME

Daggerheart is a conversation. The GM describes fictional scenarios involving the PCs, and the players take turns describing how their characters react. The goal of every person at the table is to build upon everyone else’s ideas and collaboratively tell a satisfying story. The system facilitates this collaborative process by providing structure to the conversation and mechanics for resolving moments of tension where fate or fortune determine the outcome of events.

PLAYER PRINCIPLES & BEST PRACTICES

To get the most out of Daggerheart, we recommend players keep the following principles and practices in mind throughout each session:

PRINCIPLES

  • Be a fan of your character and their journey.

  • Spotlight your friends.

  • Address the characters and address the players.

  • Build the world together.

  • Play to find out what happens.

  • Hold on gently.

BEST PRACTICES

  • Embrace danger.

  • Use your resources.

  • Tell the story.

  • Discover your character.

For more information, see the Daggerheart Core Rulebook, pages 9 and 108.

CORE GAMEPLAY LOOP

The core gameplay loop is the procedure that drives every scene, both in and out of combat:

STEP 1: SET THE SCENE

The GM describes a scenario, establishing the PCs’ surroundings and any dangers, NPCs, or other important details the characters would notice.

STEP 2: ASK AND ANSWER QUESTIONS

The players ask clarifying questions to explore the scene more deeply and gather information that could inform their characters’ actions. The GM responds to these questions by giving the players information their characters could easily obtain, or by asking questions of their own to the players. The players also respond to any questions the GM poses to them.

In this way, the table builds out the fiction collaboratively.

STEP 3: BUILD ON THE FICTION

As the scene develops, the players find opportunities to take action—problems to solve, obstacles to overcome, mysteries to investigate, and so on. The players describe how their characters proceed; if their proposed actions carry no chance of failure (or if failure would be boring), they automatically succeed. But if the outcome of their action is unknown, the GM calls for an action roll. Either way, the table works the outcome into the story and moves the fiction forward, narrating how the PC’s actions have changed things.

STEP 4: GO BACK TO STEP 1

The process repeats from the beginning, with the GM relaying any updated details or material changes to the players. This process continues until the end of the scene is triggered by a mechanic or arrives organically.

THE SPOTLIGHT

The spotlight is a symbol that represents the table’s attention—and therefore the immediate focus of both the narrative and the game mechanics. Any time a character or player becomes the focus of a scene, they “are in the spotlight” or “have the spotlight.”

The spotlight moves around the table organically as scenes unfold unless a mechanical trigger determines where the spotlight goes next. For example, when a player fails an action roll, the mechanics prompt the GM to seize the spotlight and make a GM move.

TURN ORDER & ACTION ECONOMY

Daggerheart’s turns don’t follow a traditional, rigid format:
there is no explicit initiative mechanic and characters don’t have a set number of actions they can take or things they can do before the spotlight passes to someone else. A player with the spotlight describes what their character does and the spotlight simply swings to whoever:

  1. the fiction would naturally turn it toward

  2. hasn’t had the focus in a while, or

  3. a triggered mechanic puts it on


Optional: Spotlight Tracker Tool

If your group prefers a more traditional action economy, you can use tokens to track how many times a player has had the spotlight: At the start of a session or scene, each player adds a certain number of tokens (we recommend 3) to their character sheet and removes a token each time they take an action. If the spotlight would swing to someone without any tokens, it swings to someone else instead. Once every player has used all their available tokens, players refill their character sheet with the same number of tokens as before, then continue playing.


MAKING MOVES & TAKING ACTION

Any time a character does something to advance the story, such as speaking with another character, interacting with the environment, making an attack, casting a spell, or using a class feature, they are making a move.

ACTION ROLLS

Any move where success would be trivial or failure would be boring automatically succeeds, but any move that’s difficult to accomplish or risky to attempt triggers an action roll.

OVERVIEW

All action rolls require a pair of d12s called Duality Dice.

These are two visually distinct twelve-sided dice, with one die representing Hope and the other representing Fear.

To make an action roll, you roll the Duality Dice, sum the results, apply any relevant modifiers, and compare the total to a Difficulty number to determine the outcome:

  • Success with Hope: If your total meets or beats the difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a “Success with Hope.” You succeed and gain a Hope.

  • Success with Fear: If your total meets or beats the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a “Success with Fear.” You succeed with a cost or complication, but the GM gains a Fear.

  • Failure with Hope: If your total is less than the Difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a “Failure with Hope.” You fail with a minor consequence and gain a Hope, then the spotlight swings to the GM.

  • Failure with Fear: If your total is less than the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a “Failure with Fear.” You fail with a major consequence and the GM gains a Fear, then the spotlight swings to the GM.

  • Critical Success: If the Duality Dice show matching results, you rolled a “Critical Success” (“Crit”). You automatically succeed with a bonus, gain a Hope, and clear a Stress. If this was an attack roll, you deal critical damage.

Note: A Critical Success counts as a roll “with Hope.”

After resolving the action roll, the table works together to weave the outcome into the narrative and play continues.

FAILING FORWARD

In Daggerheart, every time you roll the dice, the scene changes in some way. There is no such thing as a roll where “nothing happens,” because the fiction constantly evolves based on the successes and failures of the characters.

PROCEDURE

The following steps describe in more detail the procedure that all action rolls utilize:

STEP 1: PICK AN APPROPRIATE TRAIT

Some actions and effects specify in their description which trait applies to the roll; otherwise, the GM tells the acting player which character trait best applies to the action being attempted. If more than one trait could apply to the roll, the GM chooses or lets the acting player decide.

STEP 2: DETERMINE THE DIFFICULTY

Some actions and features say in their description what the Difficulty is. Otherwise, the GM determines the Difficulty based on the scenario. The GM can choose whether to share the Difficulty with the table. In either case, the GM should communicate the potential consequences of failure to the acting player.

STEP 3: APPLY EXTRA DICE AND MODIFIERS

The acting player decides whether to Utilize an Experience or activate other effects, then, if applicable, adds the appropriate tokens and dice (such as advantage or Rally dice) to their dice pool.


Note: Unless an action, ability, or feature specifically allows for it, a player must declare the use of any Experiences, extra dice, or other modifiers before they roll.


STEP 4: ROLL THE DICE

The acting player rolls their entire dice pool and announces the results in the format of “[total result] with [Hope/Fear]”— or “Critical Success!” in the case of matching Duality Dice.


Example: A player is making an action roll with a +1 in the relevant trait and no other modifiers; they roll the Duality Dice and get a result of 5 on their Hope Die and 7 on their Fear Die, then announce “I rolled a 13 with Fear!”


STEP 5: RESOLVE THE OUTCOME

The active player and the GM work together, along with the suggestions and support of the rest of the table, to resolve the outcome of the action.

GM MOVES AND ADVERSARY ACTIONS

GMs also make moves. They should consider making a move when a player does one of the following things:

  • Rolls with Fear on an action roll.

  • Fails an action roll.

  • Does something that would have consequences.

  • Gives them a golden opportunity.

  • Looks to them for what happens next.

After the GM turn is done, the spotlight goes back to the PCs.

Many adversaries and environments have Fear Features, especially powerful or consequential moves that the GM must spend Fear to activate.


Note: This Fear is in addition to any Fear the GM has previously spent to seize the spotlight or activate another action or ability.


ADVERSARY ACTIONS

When play passes to the GM, the GM can make a GM move to spotlight an adversary. A spotlighted adversary can:

  • Move within Close range and make a standard attack

  • Move within Close range and use an adversary action

  • Clear a condition

  • Sprint within Far or Very Far range on the battlefield

  • Do anything else the fiction demands or the GM deems appropriate

The GM can spend additional Fear to spotlight additional adversaries. Once the GM has finished, the spotlight swings back to the PCs.

SPECIAL ROLLS

Some rolls have unique specifications or otherwise modify the action roll procedure: trait rolls, Spellcast Rolls, attack rolls, and damage rolls. Unless otherwise noted, you can apply any bonus, modifier, or effect to a special roll as if it were a standard action roll.

TRAIT ROLLS

An action roll that specifies which character trait applies to it is called a trait roll. In the text of a feature or effect, a trait roll is referenced with the format “[Trait] Roll (Difficulty)” (e.g., “Agility Roll (12)”). If the text of an effect doesn’t specify a trait roll’s Difficulty, the GM sets the Difficulty based on the circumstances.

Features and effects that affect a trait roll also affect any action roll that uses the same trait, including attack rolls, Spellcast rolls, and standard action rolls.


Example: The katari’s ancestry feature “Feline Instincts,” which allows the katari to reroll an Agility Roll, can also be used on a standard action roll using Agility to traverse dangerous terrain or on an attack roll made with a weapon that uses Agility.


SPELLCAST ROLLS

Spellcast Rolls are trait rolls that require you to use your Spellcast trait. Your Spellcast trait, if you have one, is determined by your subclass.

Spellcast Rolls are only made when a character uses a feature that requires one. A successful Spellcast Roll activates the effect as described by the feature.


Notes: A Spellcast Roll that can damage a target is also considered an attack roll.

When you cast a spell, the text tells you when the effect ends. The GM can spend a Fear to end a temporary effect. If your spell doesn’t specify when it ends, it ends when you choose or at a natural moment of the story. You can choose to end your spell early.

You can cast and maintain the effects of more than one spell at the same time.


REACTION ROLLS

A reaction roll is made in response to an attack or a hazard, representing a character’s attempt to avoid or withstand an imminent effect.

Reaction rolls work like action rolls, except they don’t generate Hope or Fear, don’t trigger additional GM moves, and other characters can’t aid you with Help an Ally.

If you critically succeed on a reaction roll, you don’t clear a Stress or gain a Hope, but you do ignore any effects that would have impacted you on a success, such as taking damage or marking Stress.

GROUP ACTION ROLLS

When multiple PCs take action together, the party chooses one PC to lead the action. Each other player then describes how their character collaborates on the task. The leader makes an action roll as usual, while the other players make reaction rolls using whichever traits they and the GM decide fit best.

The lead character gains a +1 bonus to their lead action roll for each of these reaction rolls that succeeded and a −1 penalty for each these reaction rolls that failed.

TAG TEAM ROLLS

Each player can, once per session, initiate a Tag Team Roll between their character and another PC by spending 3 Hope. The players work with one another to describe how they combine their actions in a unique and exciting way. Both players make separate action rolls; before resolving the roll’s outcome, choose one of the rolls to apply to both actions. On a roll with Hope, all PCs involved gain a Hope. On a roll with Fear, the GM gains a Fear token for each PC involved.

On a successful Tag Team attack roll, both players roll damage and add the totals together to determine the damage dealt, which is then treated as if it came from a single source. If the attacks deal different types of damage, the players choose which type to deal.


Notes:

A Tag Team Roll counts as a single action roll for the purposes of any countdowns or features that track action rolls.

Though each player may only initiate one Tag Team Roll per session, one PC can be involved in multiple Tag Team Rolls.


ADVANTAGE & DISADVANTAGE

Some features and effects let you roll with advantage or disadvantage on an action or reaction roll:

  • Advantage represents an opportunity that you seize to increase your chances of success. When you roll with advantage, you roll a d6 advantage die with your dice pool and add its result to your total.

  • Disadvantage represents an additional difficulty, hardship, or challenge you face when attempting an action. When you roll with disadvantage, you roll a d6 disadvantage die with your dice pool and subtract its result from your total.

Advantage or disadvantage can be granted or imposed by mechanical triggers or at the GM’s discretion. When a PC aids you with Help an Ally, they roll their own advantage die and you add it to your total.

Advantage and disadvantage dice cancel each out, one-for-one, when they would be added to the same dice pool, so you’ll never roll both at the same time. If you have advantage or disadvantage from other sources that don’t affect your own dice pool, such as another player’s Help an Ally move, their effects stack with your rolled results.

HOPE & FEAR

Hope and Fear are metacurrencies representing the cosmic forces that shape the events of your table’s story. Hope powers PC abilities and features, while Fear powers the abilities of the GM and the adversaries and environments they control.

HOPE

Every PC starts with 2 Hope at character creation and gains more throughout play. A PC can have a maximum of 6 Hope at one time, and Hope carries over between sessions.

Players can spend Hope to:

  • Help an Ally

    When you Help an Ally who is making an action roll, describe how you do so and roll an advantage die. Multiple players can spend Hope to help the same acting player, but that player only adds the highest result to their final total.

  • Utilize an Experience

    When you Utilize an Experience on a relevant roll, add its modifier to the result. You can spend multiple Hope to utilize multiple Experiences.

  • Initiate a Tag Team Roll

    Spend 3 Hope to initiate a Tag Team roll, combining the actions of two PCs into one impressive act of synergy. When you make a Tag Team roll, both players roll their action rolls and then choose which set of results to apply to the outcome.

  • Activate a Hope Feature

    A Hope Feature is any effect that allows (or requires) you to spend a specified amount of Hope to activate it. Class Hope features are class-specific features, detailed on your character sheet, that cost 3 Hope to activate


Note: When using a Hope Feature, if you rolled with Hope for that action, the Hope you gain from that roll can be spent on that feature (or toward it, if it requires spending multiple Hope).


FEAR

The GM gains Fear whenever a player rolls with Fear and can spend Fear at any time to make or enhance a GM move or to use a Fear Feature. The GM can have up to 12 Fear at one time. Fear carries over between sessions.

COMBAT

Though Daggerheart relies on the same flow of collaborative storytelling in and out of combat, physical conflicts rely more heavily on several key mechanics related to attacking, maneuvering, and taking damage.

EVASION

Evasion represents a character’s ability to avoid attacks and other unwanted effects. Any roll made against a PC has a Difficulty equal to the target’s Evasion. A PC’s base Evasion is determined by their class, but can be modified by domain cards, equipment, conditions, and other effects.


Note: attacks rolled against adversaries use the target’s Difficulty instead of Evasion.


HIT POINTS & DAMAGE THRESHOLDS

Hit Points (HP) represent a character’s ability to withstand physical injury. When a character takes damage, they mark 1 to 3 HP, based on their damage thresholds:

  • If the final damage is at or above the character’s Severe damage threshold, they mark 3 HP.

  • If the final damage is at or above the character’s Major damage threshold but below their Severe damage threshold, they mark 2 HP.

  • If the final damage is below the character’s Major damage threshold, they mark 1 HP.

  • If incoming damage is ever reduced to 0 or less, no HP is marked.

A PC’s damage thresholds are calculated by adding their level to the listed damage thresholds of their equipped armor. A PC’s starting HP is based on their class, but they can gain additional Hit Points through advancements, features, and other effects.

An adversary’s Damage Thresholds and HP are listed in their stat blocks.

When a character marks their last Hit Point, they fall. If a PC falls, they make a death move.

Characters can clear Hit Points by taking downtime moves (see: Downtime) or by activating relevant special abilities or effects.


Optional Rule: Massive Damage

If a character ever takes damage equal to twice their Severe threshold, they mark 4 HP instead of 3.


STRESS

Stress represents how much mental, physical, and emotional strain a character can endure. Some special abilities or effects require the character activating them to mark Stress, and the GM can require a PC to mark Stress as a GM move or to represent the cost, complication, or consequence of an action roll.

When a character marks their last Stress, they become Vulnerable (see: Conditions) until they clear at least 1 Stress.

When a character must mark 1 or more Stress but can’t, they mark 1 HP instead. A character can’t use a move that requires them to mark Stress if all of their Stress is marked.

PCs can clear Stress by making downtime moves (see: Downtime). A PC’s maximum Stress is determined by their class, but they can increase it through advancements, abilities, and other effects.

ATTACKING

ATTACK ROLLS

An attack roll is an action roll intended to inflict harm. The trait that applies to an attack roll is specified by the weapon or spell being used. Unarmed attack rolls use either Strength or Finesse (GM’s choice). An attack roll’s Difficulty, unless otherwise noted, is equal to the Difficulty score of its target.

DAMAGE ROLLS

On a successful attack, roll damage. Damage is calculated from the damage roll listed in the attack’s description with the format “xdy+[modifier]” (e.g., for a spell that inflicts “1d8+2” damage, you roll an eight-sided and add 2 to the result; the damage dealt is equal to the total).

Any time an effect says to deal damage using your Spellcast trait, you roll a number of dice equal to your Spellcast trait.


Note: If your Spellcast trait is +0 or lower, you don’t roll anything.


For weapons, the number of damage dice you roll is equal to your Proficiency. Note that your Proficiency multiplies the number of dice you roll, but doesn’t affect the modifier. For example, a PC with Proficiency 2 and wielding a weapon with adamage rating of “d8+2” deals damage equal to “2d8+2” on a successful attack.

Successful unarmed attacks inflict [Proficiency]d4 damage.

CRITICAL DAMAGE

When you get a critical success (i.e., you roll matching values on your Duality Dice) on an attack roll, you deal extra damage.

Make the damage roll as usual, but add the maximum possible result of the damage dice to the final total. For instance, if an attack would normally deal 2d8+1 damage, a critical success would deal 2d8+1+16.

DAMAGE TYPES

There are two damage types: physical damage (phy) and magic damage (mag). Unless stated otherwise, mundane weapons and unarmed attacks deal physical damage, and spells deal magic damage.

RESISTANCE, IMMUNITY, AND DIRECT DAMAGE

If a target has resistance to a damage type, then they reduce incoming damage of that type by half before comparing it to their Hit Point Thresholds. If the target has additional ways of reducing incoming damage, such as marking Armor Slots, they apply the resistance effect first. The effects of multiple resistances to the same damage type do not stack.

If a target has immunity to a damage type, they ignore incoming damage of that type.

If an attack deals both physical and magic damage, a character can only benefit from resistance or immunity if they are resistant or immune to both damage types.

Direct damage is damage that can’t be reduced by marking Armor Slots.

MULTI-TARGET ATTACK ROLLS

If a spell or ability allows you to target multiple adversaries, make one attack roll and one damage roll, then apply the results to each target individually.

MULTIPLE DAMAGE SOURCES

Damage dealt simultaneously from multiple sources is always totaled before it’s compared to its target’s damage thresholds.


For example, if a PC with orc ancestry makes a successful attack against a target in Melee range and decides to spend a Hope to use their “Tusks” feature (which gives them an extra 1d6 damage on a damage roll), they would roll their normal weapon damage and add a d6 to the result, then deal that total damage to the adversary.


MAPS, RANGE, AND MOVEMENT

You can play Daggerheart using “theater of the mind” or maps and miniatures. The conversions below from abstract ranges to physical measurements assume 1 inch of map represents about 5 feet of fictional space.

Daggerheart uses the following ranges to translate fictional positioning into relative distance for the purposes of targeting, movement, and other game mechanics:

  • Melee: Close enough to touch, up to a few feet away.

  • Very Close: Close enough to see fine details, about 5–10 feet away. While in danger, a character can move, as part of their action, from Very Close range into Melee range. On a map: anything within the shortest length of a game card (2-3 inches).

  • Close: Close enough to see prominent details, about 10–30 feet away. While in danger, a character can move, as part of their action, from Close range into Melee range. On a map: anything within the length of a pencil (5-6 inches).

  • Far: Close enough to see very little detail, about 30–100 feet away. While in danger, a character must make an Agility Roll to safely move from Far range into Melee range. On a map: anything within the length of the long edge of a piece of copy paper (11–12 inches).

  • Very Far: Too far to make out any details, about 100–300 feet away. While in danger, a character must make an Agility Roll to safely move from Very Far range into Melee range. On a map: anything beyond Far range, but still within the bounds of the conflict or scene.

  • Out of Range: Anything beyond a character’s Very Far range is Out of Range and usually can’t be targeted.

Range is measured from the source of an effect, such as the attacker or spellcaster, to the target or object of an effect.

A weapon, spell, ability, item, or other effect’s stated range is a maximum range; unless otherwise noted, it can be used at closer distances.


Optional Rule: Defined Ranges

If your table would rather operate with more precise range rules, you can use a 1-inch grid battle map during combat.

If you do, use the following guidelines for play:

  • Melee: 1 square

  • Very Close: 3 squares

  • Close: 6 squares

  • Far: 12 squares

  • Very Far: 13+ squares

  • Out of Range: Off the battlemap


MOVEMENT UNDER PRESSURE

When you’re under pressure or in danger and make an action roll, you can move to a location within Close range as part of that action. If you’re not already making an action roll, or if you want to move farther than your Close range, you need to succeed on an Agility Roll to safely reposition yourself.

An adversary can move within Close range for free as part of an action, or within Very Far range as a separate action.

AREA OF EFFECT

Unless stated otherwise, all the targets of a group effect must be within Very Close range of a single origin point within your effect’s range.

LINE OF SIGHT & COVER

Unless stated otherwise, a ranged attacker must have line of sight to their intended target to make an attack roll. If a partial obstruction lies between the attacker and target, the target has cover. Attacks made through cover are rolled with disadvantage. If the obstruction is total, there is no line of sight.

CONDITIONS

Conditions are effects that grant specific benefits or drawbacks to the target they are attached to.

STANDARD CONDITIONS

Daggerheart has three standard conditions:

HIDDEN

While you’re out of sight from all enemies and they don’t otherwise know your location, you gain the Hidden condition. Any rolls against a Hidden creature have disadvantage. After an adversary moves to where they would see you, you move into their line of sight, or you make an attack, you are no longer Hidden.

RESTRAINED

Restrained characters can’t move, but you can still take actions from their current position.

VULNERABLE

When a creature is Vulnerable, all rolls targeting them have advantage.

Some features can apply special or unique conditions, which work as described in the feature text.

Unless otherwise noted, the same condition can’t be applied more than once to the same target.

TEMPORARY TAGS & SPECIAL CONDITIONS

The temporary tag denotes a condition or effect that the affected creature can clear by making a move against it. When an affected PC makes a move to clear a temporary condition or effect, it normally requires a successful action roll using an appropriate trait. When an affected adversary makes a move to clear a temporary condition or effect, the GM puts the spotlight on the adversary and describes how they do it; this doesn’t require a roll but it does use up that adversary’s spotlight.

Special conditions are only cleared when specific requirements are met, such as completing a certain action or using a particular item. The requirements for clearing these conditions are stated in the text of the effect that applies the condition.

DOWNTIME

Between conflicts, the party can take a rest to recover expended resources and deepen their bonds. During a rest, each PC can make up to two downtime moves.

When the party rests, they must choose between a short rest and a long rest. If a party takes three short rests in a row, their next rest must be a long rest.

If a short rest is interrupted, such as by an adversary's attack, the characters don’t gain its benefits. If a long rest is interrupted, the characters only gain the benefits of a short rest.

A short rest lasts enough time for the party to catch its breath, about an hour in-world. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):

  • Tend to Wounds: Clear 1d4+Tier Hit Points for yourself or an ally.

  • Clear Stress: Clear 1d4+Tier Stress.

  • Repair Armor: Clear 1d4+Tier Armor Slots from your or an ally’s armor.

  • Prepare: Describe how you prepare yourself for the path ahead, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.

At the end of a short rest, any features or effects with a limited number of uses per rest refresh and any features or effects that last until your next rest expire.

A long rest is when the characters make camp and relax or sleep for several in-game hours. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):

  • Tend to All Wounds: Clear all Hit Points for yourself or an ally.

  • Clear All Stress: Clear all Stress.

  • Repair All Armor: Clear all Armor Slots from your or an ally’s armor

  • Prepare: Describe how you prepare for the next day’s adventure, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.

  • Work on a Project: With GM approval, a PC may pursue a long-term project, such as deciphering an ancient text or crafting a new weapon. The first time they start a new project, assign it a countdown. Each time a PC makes the Work on a Project move, they either advance their project’s countdown automatically or make an action roll to advance it (GM’s choice).

At the end of a long rest, any features or effects with a limited number of uses per rest or per long rest refresh and any features or effects that last until your next rest or until your next long rest expire.

DOWNTIME CONSEQUENCES

On a short rest, the GM gains 1d4 Fear. On a long rest, they gain Fear equal to 1d4 + the number of PCs, and they can advance a long-term countdown of their choice.

DEATH

When a PC marks their last Hit Point, they must make a death move by choosing one of the following options:

  • Blaze of Glory: Your character embraces death and goes out in a blaze of glory. Take one final action. It automatically critically succeeds (with GM approval), and then you cross through the veil of death.

  • Avoid Death: Your character avoids death and faces the consequences. They temporarily drop unconscious, and then you work with the GM to describe how the situation worsens. While unconscious, your character can’t move or act, and they can’t be targeted by an attack. They return to consciousness when an ally clears 1 or more of their marked Hit Points or when the party finishes a long rest. After your character falls unconscious, roll your Hope Die. If its value is equal to or less than your character’s level, they gain a scar: permanently cross out a Hope slot and work with the GM to determine its lasting narrative impact and how, if possible, it can be restored. If you ever cross out your last Hope slot, your character’s journey ends.

  • Risk It All: Roll your Duality Dice. If the Hope Die is higher, your character stays on their feet and clears a number of Hit Points or Stress equal to the value of the Hope Die (you can divide the Hope Die value between Hit Points and Stress however you’d prefer). If the Fear Die is higher, your character crosses through the veil of death. If the Duality Dice show matching results, your character stays up and clears all Hit Points and Stress.

If your character dies, work with the GM before the next session to create a new character at the current level of the rest of the party.

ADDITIONAL RULES

The following rules apply to many aspects of the game.

ROUNDING UP

This game doesn’t use fractions; if you need to round to a whole number, round up unless otherwise specified. When in doubt, resolve any ambiguity in favor of the PCs.

REROLLING DICE

When a feature allows you to reroll a die, you always take the new result unless the feature specifically says otherwise.

INCOMING DAMAGE

Incoming damage means the total damage from a single attack or source, before Armor Slots are marked.

SIMULTANEOUS EFFECTS

If the resolution order of multiple effects is unclear, the person in control of the effects (player or GM) decides what order to resolve them in.

STACKING EFFECTS

Unless stated otherwise, all effects beside conditions and advantage/disadvantage can stack.

ONGOING SPELL EFFECTS

If an effect doesn’t have a listed mechanical expiration, it only ends when decided by the controlling player, the GM, or the demands of the fiction.

SPENDING RESOURCES

Unless an effect states otherwise, you can’t spend Hope or mark Stress multiple times on the same feature to increase or repeat its effects on the same roll.

USING FEATURES AFTER A ROLL

If a feature allows you to affect a roll after the result has been totaled, you can use it after the GM declares whether the roll succeeds or fails, but not after the consequences unfold or another roll is made.

LEVELING UP

Your party levels up whenever the GM decides you’ve reached a narrative milestone (usually about every 3 sessions). All party members level up at the same time.

Daggerheart has 10 PC levels divided into 4 tiers:


→ Tier 1 encompasses level 1 only.

→ Tier 2 encompasses levels 2–4.

→ Tier 3 encompasses levels 5–7.

→ Tier 4 encompasses levels 8–10.


Your tier affects your damage thresholds, tier achievements, and access to advancements.

STEP ONE: TIER ACHIEVEMENTS

Take any applicable tier achievements

  • At level 2, you gain a new Experience at +2 and permanently increase your Proficiency by 1.

  • At level 5, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.

  • At level 8, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.

STEP TWO: ADVANCEMENTS

Choose any two advancements with at least one unmarked slot from your tier or below. Options with multiple slots can be chosen more than once. When you choose an advancement, mark one of its slots.

  • When you choose to increase two unmarked character traits and mark them: Choose two unmarked character traits and gain a permanent +1 bonus to them. You can’t increase these stats again until the next tier (when your tier achievement allows you to clear those marks).

  • When you choose to permanently add 1 or more Hit Point slots: Darken the outline of the next rectangle in the Hit Point section of your character sheet in pen or permanent marker.

  • When you choose to permanently add 1 or more Stress slots: Darken the outline of the next rectangle in the Stress section of your character sheet in pen or permanent marker.

  • When you choose to increase your Experience: Choose two Experiences on your character sheet and gain a permanent +1 bonus to both.

  • When you take an additional domain card: You can choose an additional domain card at or below your level or from your class’s domains. If you’ve multiclassed, you can instead select a card at or below half your level from your chosen multiclass domain.

  • When you choose to increase your Evasion: Gain a permanent +1 bonus to your Evasion.

  • When you choose to take an upgraded subclass card: Take the next card for your subclass. If you have only the foundation card, take a specialization; if you have a specialization already, take a mastery. Then cross out this tier’s multiclass option.

  • When you choose to increase your Proficiency: Fill in one of the open circles in the “Proficiency” section of your character sheet, then increase your weapon’s number of damage dice by 1. The black box around this advancement’s slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.

  • When you choose to multiclass: Choose an additional class, select one of its domains, and gain its class feature. Add the appropriate multiclass module to your character sheet and take the foundation card from one of its subclasses. Then cross out the “upgraded subclass” advancement option in this tier and all other “multiclass” advancement options on your character sheet. The black box around this advancement’s slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.

STEP THREE: DAMAGE THRESHOLDS

Increase all damage thresholds by 1.

STEP FOUR: DOMAIN CARDS

Acquire a new domain card at your level or lower from one of your class’s domains and add it to your loadout or vault. If your loadout is already full, you can’t add the new card to it until you move another into your vault. You can also exchange one domain card you’ve previously acquired for a different domain card of the same level or lower.

MULTICLASSING

Starting at level 5, you can choose multiclassing as an option when leveling up. When you multiclass, you choose an additional class, gain access to one of its domains, and acquire its class feature. Take the appropriate multiclass module and add it to the right side of your character sheet, then choose a foundation card from one of its subclasses. If your foundation cards specify different Spellcast traits, you can choose which one to apply when making a Spellcast roll.

Whenever you have the option to acquire a new domain card, you can choose from cards at or below half your current level (rounded up) from the domain you chose when you selected the multiclass advancement.

EQUIPMENT

Your equipped weapons and armor are the ones listed in the “Active Weapons” and “Active Armor” sections of your character sheet. Your character can only attack with weapons, benefit from armor, and gain features from items they have equipped. You can’t equip weapons or armor with a higher tier than you.

PCs can carry up to two additional weapons in the “Inventory Weapon” areas of the character sheet.

You can swap an Inventory Weapon with an Active Weapon at no cost during a rest or moment of calm; otherwise, you must mark a Stress to do so.

Your character can only have one Active Armor at a time.

They can’t equip armor while in danger or under pressure; otherwise, they can equip or unequip armor without cost.

Each armor has its own Armor Slots; if your character unequips their armor, track how many of its Armor Slots are marked. You can't carry armor in your inventory. When your character equips or unequips armor, recalculate your damage thresholds.

WEAPONS

All weapons have a tier, trait, range, damage die, damage type, and burden. Some weapons also have a feature.

CATEGORY

A weapon’s category specifies whether it is a Primary or Secondary weapon. Your character can only equip up to one weapon of each category at a time.

TRAIT

A weapon’s trait specifies which trait to use when making an attack roll with it.

RANGE

A weapon’s range specifies the maximum distance between the attacker and their target when attacking with it.

DAMAGE

A weapon’s damage indicates the size of the damage dice you roll on a successful attack with it; you roll a number of dice equal to your Proficiency. If the damage includes a flat modifier, this number is added to the total damage rolled, but is not altered or affected by Proficiency.

DAMAGE TYPE

A weapon’s damage type indicates whether it deals physical or magic damage. Weapons that deal magic damage can only be wielded by characters with a Spellcast trait.

BURDEN

A weapon’s burden indicates how many hands it occupies when equipped. Your character’s maximum burden is 2 hands.

FEATURE

A weapon’s feature is a special rule that stays in effect while the weapon is equipped.

You can throw an equipped weapon at a target within Very Close range, making the attack roll with Finesse. On a success, deal damage as usual for that weapon. Once thrown, the weapon is no longer considered equipped. Until you retrieve and re-equip it, you can’t attack with it or benefit from its features.

Combat Wheelchair

By Mark Thompson

The combat wheelchair is a ruleset designed to help you play a wheelchair user in Daggerheart. This section provides mechanics and narrative guidance for you to work from, but feel free to adapt the flavor text to best suit your character. Have fun with your character’s wheelchair design, and make it as unique or tailored to them as you please.

ACTION AND MOVEMENT

When describing how your character moves, you can use descriptions such as the following:

  • “I roll over to the door to see if it’s open.”

  • “I wheel myself over to the group to ask what’s going on.”

  • “I pull my brakes and skid to a halt, turning in my seat to level my bow at the intruder.”

CONSEQUENCES

Here are some ways you might describe complications you encounter when your character uses their wheelchair:

  • “I pull my brakes, but I don’t think to account for the loose gravel on the ground.”

  • “I hit a patch of ice awkwardly and am sent skidding out past my target.”

  • “I go to push off in pursuit, but one of my front caster wheels snags on a crack in the pavement, stalling me for a moment.”

GMs should avoid breaking a character's wheelchair or otherwise removing it from play as a consequence, unless everyone at the table, especially the wheelchair user’s player, gives their approval.

EVASION

Your character is assumed to be skilled in moving their wheelchair and navigating numerous situations in it. As a result, the only wheelchair that gives a penalty to a PC's Evasion is the Heavy Frame model.

BURDEN

All wheelchairs can be maneuvered using one or two hands outside of combat. However, when being used as a weapon, the chair is restricted to requiring one or two hands to perform attacks, depending on the model you’ve chosen. If you’re playing a character who has limited to no mobility in their arms, their wheelchair can be attuned to them by magical means. For example, your character might use a psychic link to guide the chair around like a pseudo-electric wheelchair. All the rules presented here can be tailored and adapted to any character's needs.

CHOOSING YOUR MODEL

All combat wheelchairs are equipped as Primary Weapons.

There are three models of wheelchair available: light, heavy, and arcane. You’re encouraged to consider the type of character you’re playing and the class they belong to, then choose the model that best matches that character concept.

ARMOR

Every armor has a name, base damage thresholds, and a base Armor Score. Some armor also has a feature.

  • An armor’s base armor score indicates how many Armor Slots it provides its wearer before additional bonuses are added to calculate their total Armor Score. A PC’s Armor Score can’t exceed 12.

  • An armor’s base thresholds determine its wearer’s major and severe damage thresholds before adding bonuses to calculate their final damage thresholds.

  • An armor’s feature is a special rule that stays in effect while the armor is equipped.

While unarmored, your character’s base Armor Score is 0, their Major threshold is equal to their level, and their Severe threshold is equal to twice their level.

REDUCING INCOMING DAMAGE

When you take damage, you can mark one Armor Slot to reduce the number of Hit Points you would mark by one. If your character has an Armor Score of 0, you can’t mark Armor Slots. If an effect temporarily increases your Armor Score,

it increases your available Armor Slots by the same amount; when the effect ends, so does the availability of these Armor Slots.

LOOT

Loot comprises any consumables or reusable items the party acquires.

Items can be used until sold, discarded, or lost.

To generate a random item, choose a rarity, roll the designated dice, and match the total to the item in the table:

  • Common: 1d12 or 2d12

  • Rare: 3d12 or 4d12

  • Uncommon: 2d12 or 3d12

  • Legendary: 4d12 or 5d12

@UUID[RollTable.KKqUrMMXPpm7uhYT]{Loot}

Consumables

Consumables are loot that can only be used once. You can hold up to five of each consumable at a time. Using a consumable doesn’t require a roll unless required by the GM or the demands of the fiction.

To generate a random consumable, choose a rarity, roll the designated dice, and match the total to the item in the table:

  • Common: 1d12 or 2d12

  • Rare: 3d12 or 4d12

  • Uncommon: 2d12 or 3d12

  • Legendary: 4d12 or 5d12

@UUID[RollTable.wZXyi343PSVVwWB3]{Consumables}

GOLD

Gold is an abstract measurement of how much wealth a character has, and is measured in handfuls, bags, and chests, with 10 handfuls to 1 bag, and 10 bags to 1 chest. When you have marked all of the slots in a category and you gain another gold reward in that category, mark a slot in the following category and clear all the slots in the current one.

For example, if you have 9 handfuls and gain another, you instead mark 1 bag and erase all handfuls. If you have 9 bags and gain another, you mark 1 chest and erase all bags.

You can’t have more than 1 chest, so if all your Gold slots are marked, you’ll need to spend some of your gold or store it somewhere else before you can acquire more.


Optional Rule: Gold Coins

If your group wants to track gold with more granularity, you can add coins as your lowest denomination. Following the established pattern, 10 coins equal 1 handful.


" }, "video": { "controls": true, From 774b6dbdcca072d10af66a87b045dfa1b4030a5d Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Wed, 20 Aug 2025 02:56:00 +0200 Subject: [PATCH 21/31] Fixed so character dice rolls await the DiceSoNice animation before consuming resources (#1024) --- module/dice/dhRoll.mjs | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/module/dice/dhRoll.mjs b/module/dice/dhRoll.mjs index 6d691c20..ac340c64 100644 --- a/module/dice/dhRoll.mjs +++ b/module/dice/dhRoll.mjs @@ -84,7 +84,7 @@ export default class DHRoll extends Roll { static async toMessage(roll, config) { const cls = getDocumentClass('ChatMessage'), - msg = { + msgData = { type: this.messageType, user: game.user.id, title: roll.title, @@ -94,8 +94,16 @@ export default class DHRoll extends Roll { rolls: [roll] }; config.selectedRollMode ??= game.settings.get('core', 'rollMode'); - if (roll._evaluated) return await cls.create(msg, { rollMode: config.selectedRollMode }); - return msg; + + if (roll._evaluated) { + const message = await cls.create(msgData, { rollMode: config.selectedRollMode }); + + if (game.modules.get('dice-so-nice')?.active) { + await game.dice3d.waitFor3DAnimationByMessageID(message.id); + } + + return message; + } else return msgData; } /** @inheritDoc */ From af250d7a61ee953d384a70b476d9a252fa222bdf Mon Sep 17 00:00:00 2001 From: joaquinpereyra98 <24190917+joaquinpereyra98@users.noreply.github.com> Date: Tue, 19 Aug 2025 22:07:35 -0300 Subject: [PATCH 22/31] [BUG] - Deleting items in the scrollable window causes scrollbar to reset to top (#1025) Fixes #977 Co-authored-by: Joaquin Pereyra --- .../applications/sheets/actors/adversary.mjs | 19 ++++++++--- .../applications/sheets/actors/character.mjs | 6 ++++ .../applications/sheets/actors/companion.mjs | 5 ++- .../sheets/actors/environment.mjs | 8 +++-- .../less/sheets/actors/adversary/effects.less | 17 ++++++++++ .../less/sheets/actors/companion/effects.less | 17 ++++++++++ .../environment/potentialAdversaries.less | 17 ++++++++++ styles/less/sheets/index.less | 3 ++ templates/sheets/actors/adversary/effects.hbs | 34 ++++++++++--------- templates/sheets/actors/companion/effects.hbs | 34 ++++++++++--------- .../environment/potentialAdversaries.hbs | 2 +- 11 files changed, 122 insertions(+), 40 deletions(-) create mode 100644 styles/less/sheets/actors/adversary/effects.less create mode 100644 styles/less/sheets/actors/companion/effects.less create mode 100644 styles/less/sheets/actors/environment/potentialAdversaries.less diff --git a/module/applications/sheets/actors/adversary.mjs b/module/applications/sheets/actors/adversary.mjs index a5d9d8a6..b47cb85a 100644 --- a/module/applications/sheets/actors/adversary.mjs +++ b/module/applications/sheets/actors/adversary.mjs @@ -25,11 +25,22 @@ export default class AdversarySheet extends DHBaseActorSheet { }; static PARTS = { - sidebar: { template: 'systems/daggerheart/templates/sheets/actors/adversary/sidebar.hbs' }, + sidebar: { + template: 'systems/daggerheart/templates/sheets/actors/adversary/sidebar.hbs', + scrollable: ['.shortcut-items-section'] + }, header: { template: 'systems/daggerheart/templates/sheets/actors/adversary/header.hbs' }, - features: { template: 'systems/daggerheart/templates/sheets/actors/adversary/features.hbs' }, - notes: { template: 'systems/daggerheart/templates/sheets/actors/adversary/notes.hbs' }, - effects: { template: 'systems/daggerheart/templates/sheets/actors/adversary/effects.hbs' } + features: { + template: 'systems/daggerheart/templates/sheets/actors/adversary/features.hbs', + scrollable: ['.feature-section'] + }, + notes: { + template: 'systems/daggerheart/templates/sheets/actors/adversary/notes.hbs' + }, + effects: { + template: 'systems/daggerheart/templates/sheets/actors/adversary/effects.hbs', + scrollable: ['.effects-sections'] + } }; /** @inheritdoc */ diff --git a/module/applications/sheets/actors/character.mjs b/module/applications/sheets/actors/character.mjs index 92f6239b..0328f0dd 100644 --- a/module/applications/sheets/actors/character.mjs +++ b/module/applications/sheets/actors/character.mjs @@ -78,6 +78,7 @@ export default class CharacterSheet extends DHBaseActorSheet { static PARTS = { sidebar: { id: 'sidebar', + scrollable: ['.shortcut-items-section'], template: 'systems/daggerheart/templates/sheets/actors/character/sidebar.hbs' }, header: { @@ -86,22 +87,27 @@ export default class CharacterSheet extends DHBaseActorSheet { }, features: { id: 'features', + scrollable: ['.features-sections'], template: 'systems/daggerheart/templates/sheets/actors/character/features.hbs' }, loadout: { id: 'loadout', + scrollable: ['.items-section'], template: 'systems/daggerheart/templates/sheets/actors/character/loadout.hbs' }, inventory: { id: 'inventory', + scrollable: ['.items-section'], template: 'systems/daggerheart/templates/sheets/actors/character/inventory.hbs' }, biography: { id: 'biography', + scrollable: ['.items-section'], template: 'systems/daggerheart/templates/sheets/actors/character/biography.hbs' }, effects: { id: 'effects', + scrollable: ['.effects-sections'], template: 'systems/daggerheart/templates/sheets/actors/character/effects.hbs' } }; diff --git a/module/applications/sheets/actors/companion.mjs b/module/applications/sheets/actors/companion.mjs index 1105131d..2b82f50a 100644 --- a/module/applications/sheets/actors/companion.mjs +++ b/module/applications/sheets/actors/companion.mjs @@ -15,7 +15,10 @@ export default class DhCompanionSheet extends DHBaseActorSheet { static PARTS = { header: { template: 'systems/daggerheart/templates/sheets/actors/companion/header.hbs' }, details: { template: 'systems/daggerheart/templates/sheets/actors/companion/details.hbs' }, - effects: { template: 'systems/daggerheart/templates/sheets/actors/companion/effects.hbs' } + effects: { + template: 'systems/daggerheart/templates/sheets/actors/companion/effects.hbs', + scrollable: ['.effects-sections'] + } }; /* -------------------------------------------- */ diff --git a/module/applications/sheets/actors/environment.mjs b/module/applications/sheets/actors/environment.mjs index 9fd003c6..0389d2c9 100644 --- a/module/applications/sheets/actors/environment.mjs +++ b/module/applications/sheets/actors/environment.mjs @@ -27,9 +27,13 @@ export default class DhpEnvironment extends DHBaseActorSheet { /**@override */ static PARTS = { header: { template: 'systems/daggerheart/templates/sheets/actors/environment/header.hbs' }, - features: { template: 'systems/daggerheart/templates/sheets/actors/environment/features.hbs' }, + features: { + template: 'systems/daggerheart/templates/sheets/actors/environment/features.hbs', + scrollable: ['feature-section'] + }, potentialAdversaries: { - template: 'systems/daggerheart/templates/sheets/actors/environment/potentialAdversaries.hbs' + template: 'systems/daggerheart/templates/sheets/actors/environment/potentialAdversaries.hbs', + scrollable: ['items-sections'] }, notes: { template: 'systems/daggerheart/templates/sheets/actors/environment/notes.hbs' } }; diff --git a/styles/less/sheets/actors/adversary/effects.less b/styles/less/sheets/actors/adversary/effects.less new file mode 100644 index 00000000..4afe2454 --- /dev/null +++ b/styles/less/sheets/actors/adversary/effects.less @@ -0,0 +1,17 @@ +@import '../../../utils/colors.less'; + +.application.sheet.daggerheart.actor.dh-style.adversary { + .tab.effects { + .effects-sections { + display: flex; + flex-direction: column; + gap: 10px; + overflow-y: auto; + mask-image: linear-gradient(0deg, transparent 0%, black 5%); + padding-bottom: 20px; + + scrollbar-width: thin; + scrollbar-color: light-dark(@dark-blue, @golden) transparent; + } + } +} diff --git a/styles/less/sheets/actors/companion/effects.less b/styles/less/sheets/actors/companion/effects.less new file mode 100644 index 00000000..12e1d847 --- /dev/null +++ b/styles/less/sheets/actors/companion/effects.less @@ -0,0 +1,17 @@ +@import '../../../utils/colors.less'; + +.application.sheet.daggerheart.actor.dh-style.companion { + .tab.effects { + .effects-sections { + display: flex; + flex-direction: column; + gap: 10px; + overflow-y: auto; + mask-image: linear-gradient(0deg, transparent 0%, black 5%); + padding-bottom: 20px; + + scrollbar-width: thin; + scrollbar-color: light-dark(@dark-blue, @golden) transparent; + } + } +} diff --git a/styles/less/sheets/actors/environment/potentialAdversaries.less b/styles/less/sheets/actors/environment/potentialAdversaries.less new file mode 100644 index 00000000..6fd7af65 --- /dev/null +++ b/styles/less/sheets/actors/environment/potentialAdversaries.less @@ -0,0 +1,17 @@ +@import '../../../utils/colors.less'; + +.application.sheet.daggerheart.actor.dh-style.environment { + .tab.potentialAdversaries { + .items-section { + display: flex; + flex-direction: column; + gap: 10px; + overflow-y: auto; + mask-image: linear-gradient(0deg, transparent 0%, black 5%); + padding-bottom: 20px; + + scrollbar-width: thin; + scrollbar-color: light-dark(@dark-blue, @golden) transparent; + } + } +} \ No newline at end of file diff --git a/styles/less/sheets/index.less b/styles/less/sheets/index.less index 1ffb92fe..991837c0 100644 --- a/styles/less/sheets/index.less +++ b/styles/less/sheets/index.less @@ -4,6 +4,7 @@ @import './actors/adversary/header.less'; @import './actors/adversary/sheet.less'; @import './actors/adversary/sidebar.less'; +@import './actors/adversary/effects.less'; @import './actors/character/biography.less'; @import './actors/character/effects.less'; @@ -17,9 +18,11 @@ @import './actors/companion/details.less'; @import './actors/companion/header.less'; @import './actors/companion/sheet.less'; +@import './actors/companion/effects.less'; @import './actors/environment/actions.less'; @import './actors/environment/header.less'; +@import './actors/environment/potentialAdversaries.less'; @import './actors/environment/sheet.less'; @import './items/beastform.less'; diff --git a/templates/sheets/actors/adversary/effects.hbs b/templates/sheets/actors/adversary/effects.hbs index 325610e6..cefb6e57 100644 --- a/templates/sheets/actors/adversary/effects.hbs +++ b/templates/sheets/actors/adversary/effects.hbs @@ -1,20 +1,22 @@
- {{> 'daggerheart.inventory-items' - title='DAGGERHEART.GENERAL.activeEffects' - type='effect' - isGlassy=true - collection=effects.actives - canCreate=true - hideResources=true - }} +
+ {{> 'daggerheart.inventory-items' + title='DAGGERHEART.GENERAL.activeEffects' + type='effect' + isGlassy=true + collection=effects.actives + canCreate=true + hideResources=true + }} - {{> 'daggerheart.inventory-items' - title='DAGGERHEART.GENERAL.inactiveEffects' - type='effect' - isGlassy=true - collection=effects.inactives - canCreate=true - hideResources=true - }} + {{> 'daggerheart.inventory-items' + title='DAGGERHEART.GENERAL.inactiveEffects' + type='effect' + isGlassy=true + collection=effects.inactives + canCreate=true + hideResources=true + }} +
\ No newline at end of file diff --git a/templates/sheets/actors/companion/effects.hbs b/templates/sheets/actors/companion/effects.hbs index 325610e6..cefb6e57 100644 --- a/templates/sheets/actors/companion/effects.hbs +++ b/templates/sheets/actors/companion/effects.hbs @@ -1,20 +1,22 @@
- {{> 'daggerheart.inventory-items' - title='DAGGERHEART.GENERAL.activeEffects' - type='effect' - isGlassy=true - collection=effects.actives - canCreate=true - hideResources=true - }} +
+ {{> 'daggerheart.inventory-items' + title='DAGGERHEART.GENERAL.activeEffects' + type='effect' + isGlassy=true + collection=effects.actives + canCreate=true + hideResources=true + }} - {{> 'daggerheart.inventory-items' - title='DAGGERHEART.GENERAL.inactiveEffects' - type='effect' - isGlassy=true - collection=effects.inactives - canCreate=true - hideResources=true - }} + {{> 'daggerheart.inventory-items' + title='DAGGERHEART.GENERAL.inactiveEffects' + type='effect' + isGlassy=true + collection=effects.inactives + canCreate=true + hideResources=true + }} +
\ No newline at end of file diff --git a/templates/sheets/actors/environment/potentialAdversaries.hbs b/templates/sheets/actors/environment/potentialAdversaries.hbs index cc246312..5f4d039e 100644 --- a/templates/sheets/actors/environment/potentialAdversaries.hbs +++ b/templates/sheets/actors/environment/potentialAdversaries.hbs @@ -3,7 +3,7 @@ data-tab='{{tabs.potentialAdversaries.id}}' data-group='{{tabs.potentialAdversaries.group}}' > -
+
{{#each document.system.potentialAdversaries as |category categoryId|}} {{> 'daggerheart.inventory-items' title=category.label From 218f180fa013fdf0cd0d4d86d068af5f43c15269 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Wed, 20 Aug 2025 10:13:51 +0200 Subject: [PATCH 23/31] [Fix] DiceSoNice DamageRolls (#1026) * Fixed so the 3d damage dice can be seen by everyone when not whispered * Fixed typo --- module/dice/damageRoll.mjs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/module/dice/damageRoll.mjs b/module/dice/damageRoll.mjs index 427b6273..aa9e1d94 100644 --- a/module/dice/damageRoll.mjs +++ b/module/dice/damageRoll.mjs @@ -37,7 +37,13 @@ export default class DamageRoll extends DHRoll { Object.values(config.damage).flatMap(r => r.parts.map(p => p.roll)) ), diceRoll = Roll.fromTerms([pool]); - await game.dice3d.showForRoll(diceRoll, game.user, true, chatMessage.whisper, chatMessage.blind); + await game.dice3d.showForRoll( + diceRoll, + game.user, + true, + chatMessage.whisper?.length > 0 ? chatMessage.whisper : null, + chatMessage.blind + ); } await super.buildPost(roll, config, message); if (config.source?.message) { From 7a6bbe34888dd4687f797565bca5001f318c3d59 Mon Sep 17 00:00:00 2001 From: Murilo Brito <91566541+moliloo@users.noreply.github.com> Date: Wed, 20 Aug 2025 05:14:46 -0300 Subject: [PATCH 24/31] add light theme for chat messages (#1016) --- styles/less/global/chat.less | 15 ++++- styles/less/global/inventory-item.less | 2 +- styles/less/ui/chat/ability-use.less | 40 ++++++++++-- styles/less/ui/chat/action.less | 31 ++++++++- styles/less/ui/chat/chat.less | 50 +++++++++++++- styles/less/ui/chat/downtime.less | 29 +++++++++ styles/less/ui/chat/sheet.less | 90 +++++++++++++++++++++----- styles/less/utils/colors.less | 1 + 8 files changed, 231 insertions(+), 27 deletions(-) diff --git a/styles/less/global/chat.less b/styles/less/global/chat.less index 37ec993d..bf29a05c 100644 --- a/styles/less/global/chat.less +++ b/styles/less/global/chat.less @@ -7,6 +7,15 @@ #chat-notifications .chat-log { .chat-message { background-image: url('../assets/parchments/dh-parchment-light.png'); + + .message-header .message-header-metadata .message-metadata, + .message-header .message-header-main .message-sub-header-container { + color: @dark; + } + + .message-header .message-header-main .message-sub-header-container h4 { + color: @dark-blue; + } } } } @@ -36,7 +45,7 @@ .message-metadata { font-family: @font-body; - color: light-dark(@dark, @beige); + color: @beige; } } @@ -59,14 +68,14 @@ display: flex; flex-direction: column; justify-content: space-between; - color: light-dark(@dark, @beige); + color: @beige; h4 { font-size: 16px; font-weight: bold; margin-bottom: 0; font-family: @font-subtitle; - color: light-dark(@dark-blue, @golden); + color: @golden; } } } diff --git a/styles/less/global/inventory-item.less b/styles/less/global/inventory-item.less index 6c58d31a..d63c658e 100644 --- a/styles/less/global/inventory-item.less +++ b/styles/less/global/inventory-item.less @@ -135,7 +135,7 @@ .label { gap: 4px; - color: @beige-80; + color: light-dark(@dark-80, @beige-80); } } } diff --git a/styles/less/ui/chat/ability-use.less b/styles/less/ui/chat/ability-use.less index 7993d29d..58897697 100644 --- a/styles/less/ui/chat/ability-use.less +++ b/styles/less/ui/chat/ability-use.less @@ -2,6 +2,38 @@ @import '../../utils/fonts.less'; @import '../../utils/spacing.less'; +.theme-light { + .daggerheart.chat.domain-card { + .domain-card-move .domain-card-header { + border-bottom: 1px solid @dark-blue; + + &:hover { + background: @dark-blue-10; + } + + .domain-label { + .title { + color: @dark-blue; + } + + .tags .tag { + background: @dark-15; + border: 1px solid @dark; + color: @dark; + } + } + + .fa-chevron-down { + color: @dark-blue; + } + } + + .description { + color: @dark; + } + } +} + .daggerheart.chat { &.domain-card { display: flex; @@ -41,7 +73,7 @@ border-bottom: 1px solid @golden; &:hover { - background: light-dark(@dark-blue-10, @golden-10); + background: @golden-10; cursor: pointer; transition: all 0.3s ease; } @@ -73,9 +105,9 @@ padding: 3px 5px; font-size: 12px; - background: light-dark(@dark-15, @beige-15); - border: 1px solid light-dark(@dark, @beige); - color: light-dark(@dark, @beige); + background: @beige-15; + border: 1px solid @beige; + color: @beige; border-radius: 3px; } } diff --git a/styles/less/ui/chat/action.less b/styles/less/ui/chat/action.less index 0200c9dc..82cc3210 100644 --- a/styles/less/ui/chat/action.less +++ b/styles/less/ui/chat/action.less @@ -2,6 +2,35 @@ @import '../../utils/fonts.less'; @import '../../utils/spacing.less'; +.theme-light { + .daggerheart.chat.action { + .action-move .action-section { + border-bottom: 1px solid @dark-blue; + + &:hover { + background: @dark-blue-10; + } + + .action-header { + .title { + color: @dark-blue; + } + .label { + color: @dark; + } + } + + .fa-chevron-down { + color: @dark-blue; + } + } + + .description { + color: @dark; + } + } +} + .daggerheart.chat { &.action { display: flex; @@ -34,7 +63,7 @@ border-bottom: 1px solid @golden; &:hover { - background: light-dark(@dark-blue-10, @golden-10); + background: @golden-10; cursor: pointer; transition: all 0.3s ease; } diff --git a/styles/less/ui/chat/chat.less b/styles/less/ui/chat/chat.less index 81af3d23..c6ed95ca 100644 --- a/styles/less/ui/chat/chat.less +++ b/styles/less/ui/chat/chat.less @@ -2,6 +2,49 @@ @import '../../utils/fonts.less'; @import '../../utils/spacing.less'; +.theme-light { + .daggerheart, + #chat-notifications { + --text-color: @dark-blue; + --bg-color: @dark-blue-40; + + .message-content .chat-roll { + .roll-part-header { + span, + span:before, + span:after { + color: @dark-blue; + } + &:before { + background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, @dark-blue 100%); + color: @dark-blue; + } + + &:after { + background: linear-gradient(90deg, @dark-blue 0%, rgba(0, 0, 0, 0) 100%); + color: @dark-blue; + } + } + .roll-section { + .roll-part-content { + .roll-result-value { + color: @dark-blue; + } + + .dice-tooltip .wrapper .roll-die { + color: @beige; + } + } + } + } + + .chat-message .roll-formula { + background: @dark-15; + color: @dark; + } + } +} + .daggerheart.chat { &.resource-roll { .reroll-message { @@ -27,8 +70,8 @@ .daggerheart, #chat-notifications { .chat-message { - --text-color: light-dark(@dark-blue, @golden); - --bg-color: light-dark(@dark-blue-40, @golden-40); + --text-color: @golden; + --bg-color: @golden-40; [data-use-perm='false'] { pointer-events: none; @@ -85,7 +128,7 @@ display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; - color: light-dark(@dark, @beige); + color: @beige; margin: 10px 0; span { @@ -427,6 +470,7 @@ gap: 5px; margin-top: 8px; button { + height: 32px; flex: 1; } } diff --git a/styles/less/ui/chat/downtime.less b/styles/less/ui/chat/downtime.less index 7c28c835..8b898c43 100644 --- a/styles/less/ui/chat/downtime.less +++ b/styles/less/ui/chat/downtime.less @@ -2,6 +2,35 @@ @import '../../utils/fonts.less'; @import '../../utils/spacing.less'; +.theme-light { + .daggerheart.chat.downtime { + .downtime-moves-list .downtime-move { + &:hover { + background: @dark-blue-10; + } + + .downtime-label { + border-bottom: 1px solid @dark-blue; + + .header-label .title { + color: @dark-blue; + } + .header-label .label { + color: @dark; + } + } + + .fa-chevron-down { + color: @dark-blue; + } + } + + .description { + color: @dark; + } + } +} + .daggerheart.chat { &.downtime { display: flex; diff --git a/styles/less/ui/chat/sheet.less b/styles/less/ui/chat/sheet.less index da66c12f..59fa39dc 100644 --- a/styles/less/ui/chat/sheet.less +++ b/styles/less/ui/chat/sheet.less @@ -1,6 +1,66 @@ @import '../../utils/colors.less'; @import '../../utils/fonts.less'; +.theme-light { + .chat-message .message-content { + color: @dark; + + blockquote { + border-left: 5px solid @dark-blue-40; + } + + a[href] { + color: @dark-blue; + } + + a[href]:hover, + a[href].active { + font-weight: bold; + text-shadow: 0 0 8px @dark-blue; + } + + button { + background: transparent; + border: 1px solid @dark-blue; + color: @dark-blue; + + &:hover { + background: @light-black; + color: @dark-blue; + } + + &:disabled { + background: transparent; + color: @dark-blue; + + &:hover { + background: transparent; + color: @dark-blue; + } + } + + &.reverted { + background: @dark-blue-10; + color: @dark-blue; + border: 1px solid @dark; + &:hover { + background: transparent; + color: @dark-blue; + } + img { + border-radius: 3px; + } + } + } + + .roll-buttons button { + height: 40px; + font-family: @font-body; + font-weight: bold; + } + } +} + .chat-message.dh-chat-message { .message-content { padding: 0; @@ -17,7 +77,7 @@ .message-content { padding: 0 8px; font-family: @font-body; - color: light-dark(@dark, @beige); + color: @beige; blockquote { border-left: 5px solid light-dark(@dark-blue-40, @golden-40); @@ -34,15 +94,15 @@ } button { - background: light-dark(transparent, @golden); - border: 1px solid light-dark(@dark-blue, @dark-blue); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + border: 1px solid @dark-blue; + color: @dark-blue; outline: none; box-shadow: none; &:hover { - background: light-dark(@light-black, @dark-blue); - color: light-dark(@dark-blue, @golden); + background: @dark-blue; + color: @golden; } &.glow { @@ -50,24 +110,24 @@ } &:disabled { - background: light-dark(transparent, @golden); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + color: @dark-blue; opacity: 0.6; cursor: not-allowed; &:hover { - background: light-dark(transparent, @golden); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + color: @dark-blue; } } &.reverted { - background: light-dark(@dark-blue-10, @golden-10); - color: light-dark(@dark-blue, @golden); - border: 1px solid light-dark(@dark, transparent); + background: @golden-10; + color: @golden; + border: 1px solid transparent; &:hover { - background: light-dark(transparent, @golden); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + color: @dark-blue; } img { border-radius: 3px; diff --git a/styles/less/utils/colors.less b/styles/less/utils/colors.less index dcc7cc5b..9ce201a3 100755 --- a/styles/less/utils/colors.less +++ b/styles/less/utils/colors.less @@ -53,6 +53,7 @@ @dark: #222; @dark-15: #22222215; @dark-40: #22222240; +@dark-80: #22222280; @dark-filter: brightness(0) saturate(100%); @deep-black: #0e0d15; From 60b55619e1035e5a10509e22055af079a76ac946 Mon Sep 17 00:00:00 2001 From: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> Date: Fri, 22 Aug 2025 01:05:09 +1000 Subject: [PATCH 25/31] [PR] [Feature] 652 Allow override range measurement settings (#1030) * Look for rangeMeasurementSettingsOverride on the scene to switch off DH global range measurement settings. * Part progress on adding config tab to scene config * Hard coded template; no value applied/saved * Flag fix * Use the flags setting * Clean up * Remove import * Better initialisation of PARTS and TABS * Fix localisation --------- Co-authored-by: Chris Ryan Co-authored-by: WBHarry --- daggerheart.mjs | 5 ++++ lang/en.json | 11 +++++++ module/applications/_module.mjs | 1 + module/applications/scene/_module.mjs | 1 + .../scene/sceneConfigSettings.mjs | 25 ++++++++++++++++ module/canvas/placeables/measuredTemplate.mjs | 30 +++++++++++++------ module/canvas/placeables/ruler.mjs | 6 ++-- module/canvas/placeables/tokenRuler.mjs | 6 ++-- module/systemRegistration/handlebars.mjs | 3 ++ templates/scene/dh-config.hbs | 9 ++++++ 10 files changed, 82 insertions(+), 15 deletions(-) create mode 100644 module/applications/scene/_module.mjs create mode 100644 module/applications/scene/sceneConfigSettings.mjs create mode 100644 templates/scene/dh-config.hbs diff --git a/daggerheart.mjs b/daggerheart.mjs index 795764cc..9ed5feb1 100644 --- a/daggerheart.mjs +++ b/daggerheart.mjs @@ -145,6 +145,11 @@ Hooks.once('init', () => { // Make Compendium Dialog resizable foundry.applications.sidebar.apps.Compendium.DEFAULT_OPTIONS.window.resizable = true; + DocumentSheetConfig.registerSheet(foundry.documents.Scene, SYSTEM.id, applications.scene.DhSceneConfigSettings, { + makeDefault: true, + label: 'Daggerheart' + }); + settingsRegistration.registerDHSettings(); RegisterHandlebarsHelpers.registerHelpers(); diff --git a/lang/en.json b/lang/en.json index a7a615f5..d8a4b08f 100755 --- a/lang/en.json +++ b/lang/en.json @@ -26,6 +26,14 @@ "CONTROLS": { "inFront": "In Front" }, + "SCENE": { + "TABS": { + "SHEET": { + "dh": "Daggerheart" + } + } + }, + "DAGGERHEART": { "ACTIONS": { "TYPES": { @@ -2283,6 +2291,9 @@ "ResetSettings": { "resetConfirmationTitle": "Reset Settings", "resetConfirmationText": "Are you sure you want to reset the {settings}?" + }, + "Scene": { + "rangeMeasurementOverride": "Override Global Range Measurement Settings" } }, "UI": { diff --git a/module/applications/_module.mjs b/module/applications/_module.mjs index d4ceb229..3dd0c78f 100644 --- a/module/applications/_module.mjs +++ b/module/applications/_module.mjs @@ -2,6 +2,7 @@ export * as characterCreation from './characterCreation/_module.mjs'; export * as dialogs from './dialogs/_module.mjs'; export * as hud from './hud/_module.mjs'; export * as levelup from './levelup/_module.mjs'; +export * as scene from './scene/_module.mjs'; export * as settings from './settings/_module.mjs'; export * as sheets from './sheets/_module.mjs'; export * as sheetConfigs from './sheets-configs/_module.mjs'; diff --git a/module/applications/scene/_module.mjs b/module/applications/scene/_module.mjs new file mode 100644 index 00000000..6dc59081 --- /dev/null +++ b/module/applications/scene/_module.mjs @@ -0,0 +1 @@ +export { default as DhSceneConfigSettings } from './sceneConfigSettings.mjs'; \ No newline at end of file diff --git a/module/applications/scene/sceneConfigSettings.mjs b/module/applications/scene/sceneConfigSettings.mjs new file mode 100644 index 00000000..2ad7421a --- /dev/null +++ b/module/applications/scene/sceneConfigSettings.mjs @@ -0,0 +1,25 @@ +export default class DhSceneConfigSettings extends foundry.applications.sheets.SceneConfig { + constructor(options, ...args) { + super(options, ...args); + } + + static buildParts() { + const { footer, ...parts } = super.PARTS; + const tmpParts = { + ...parts, + dh: { template: "systems/daggerheart/templates/scene/dh-config.hbs" }, + footer + } + return tmpParts; + } + + static PARTS = DhSceneConfigSettings.buildParts(); + + static buildTabs() { + super.TABS.sheet.tabs.push({ id: "dh", icon: "fa-solid" }); + return super.TABS; + } + + static TABS = DhSceneConfigSettings.buildTabs(); + +} \ No newline at end of file diff --git a/module/canvas/placeables/measuredTemplate.mjs b/module/canvas/placeables/measuredTemplate.mjs index c9950650..49142685 100644 --- a/module/canvas/placeables/measuredTemplate.mjs +++ b/module/canvas/placeables/measuredTemplate.mjs @@ -10,29 +10,41 @@ export default class DhMeasuredTemplate extends foundry.canvas.placeables.Measur const splitRulerText = this.ruler.text.split(' '); if (splitRulerText.length > 0) { const rulerValue = Number(splitRulerText[0]); - const vagueLabel = this.constructor.getDistanceLabel(rulerValue, rangeMeasurementSettings); - this.ruler.text = vagueLabel; + const result = this.constructor.getRangeLabels(rulerValue, rangeMeasurementSettings); + this.ruler.text = result.distance + result.units ? (' ' + result.units) : ''; } } } - static getDistanceLabel(distance, settings) { + static getRangeLabels(distance, settings) { + let result = { distance: '', units: null } + const rangeMeasurementOverride = canvas.scene.flags.daggerheart?.rangeMeasurementOverride; + + if (rangeMeasurementOverride === true) { + result.distance = distance; + result.units = canvas.scene?.grid?.units; + return result + } if (distance <= settings.melee) { - return game.i18n.localize('DAGGERHEART.CONFIG.Range.melee.name'); + result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.melee.name'); + return result; } if (distance <= settings.veryClose) { - return game.i18n.localize('DAGGERHEART.CONFIG.Range.veryClose.name'); + result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.veryClose.name'); + return result; } if (distance <= settings.close) { - return game.i18n.localize('DAGGERHEART.CONFIG.Range.close.name'); + result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.close.name'); + return result; } if (distance <= settings.far) { - return game.i18n.localize('DAGGERHEART.CONFIG.Range.far.name'); + result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.far.name'); + return result; } if (distance > settings.far) { - return game.i18n.localize('DAGGERHEART.CONFIG.Range.veryFar.name'); + result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.veryFar.name'); } - return ''; + return result; } } diff --git a/module/canvas/placeables/ruler.mjs b/module/canvas/placeables/ruler.mjs index 6585a1cd..6e2f220d 100644 --- a/module/canvas/placeables/ruler.mjs +++ b/module/canvas/placeables/ruler.mjs @@ -8,9 +8,9 @@ export default class DhpRuler extends foundry.canvas.interaction.Ruler { const range = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.variantRules).rangeMeasurement; if (range.enabled) { - const distance = DhMeasuredTemplate.getDistanceLabel(waypoint.measurement.distance.toNearest(0.01), range); - context.cost = { total: distance, units: null }; - context.distance = { total: distance, units: null }; + const result = DhMeasuredTemplate.getRangeLabels(waypoint.measurement.distance.toNearest(0.01), range); + context.cost = { total: result.distance, units: result.units }; + context.distance = { total: result.distance, units: result.units }; } return context; diff --git a/module/canvas/placeables/tokenRuler.mjs b/module/canvas/placeables/tokenRuler.mjs index ff8fc0d5..056953f8 100644 --- a/module/canvas/placeables/tokenRuler.mjs +++ b/module/canvas/placeables/tokenRuler.mjs @@ -8,9 +8,9 @@ export default class DhpTokenRuler extends foundry.canvas.placeables.tokens.Toke const range = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.variantRules).rangeMeasurement; if (range.enabled) { - const distance = DhMeasuredTemplate.getDistanceLabel(waypoint.measurement.distance.toNearest(0.01), range); - context.cost = { total: distance, units: null }; - context.distance = { total: distance, units: null }; + const result = DhMeasuredTemplate.getRangeLabels(waypoint.measurement.distance.toNearest(0.01), range); + context.cost = { total: result.distance, units: result.units }; + context.distance = { total: result.distance, units: result.units }; } return context; diff --git a/module/systemRegistration/handlebars.mjs b/module/systemRegistration/handlebars.mjs index ff741b91..cb7be42a 100644 --- a/module/systemRegistration/handlebars.mjs +++ b/module/systemRegistration/handlebars.mjs @@ -35,5 +35,8 @@ export const preloadHandlebarsTemplates = async function () { 'systems/daggerheart/templates/ui/chat/parts/damage-part.hbs', 'systems/daggerheart/templates/ui/chat/parts/target-part.hbs', 'systems/daggerheart/templates/ui/chat/parts/button-part.hbs', + + 'systems/daggerheart/templates/scene/dh-config.hbs', + ]); }; diff --git a/templates/scene/dh-config.hbs b/templates/scene/dh-config.hbs new file mode 100644 index 00000000..0d20c302 --- /dev/null +++ b/templates/scene/dh-config.hbs @@ -0,0 +1,9 @@ +
+
+
+ + +
+
+
\ No newline at end of file From 523ecb506b8f4b91d97f71b2859c7b36c36b0b79 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Fri, 22 Aug 2025 01:38:07 +0200 Subject: [PATCH 26/31] [Fix] ItemLink Fix (#1032) * . * . * Removed outcommented code * Raised to minor version * Added confirmation on import of old character data --- daggerheart.mjs | 3 ++ lang/en.json | 4 +- .../sheets/api/application-mixin.mjs | 1 - module/applications/sheets/api/base-item.mjs | 9 ++-- module/config/settingsConfig.mjs | 3 +- module/data/actor/character.mjs | 12 ++--- module/data/item/base.mjs | 50 ++++++------------- module/data/item/feature.mjs | 18 ------- module/documents/actor.mjs | 42 +++++++++++----- module/helpers/utils.mjs | 11 ++++ module/systemRegistration/_module.mjs | 1 + module/systemRegistration/migrations.mjs | 41 +++++++++++++++ module/systemRegistration/settings.mjs | 6 +++ system.json | 2 +- 14 files changed, 122 insertions(+), 81 deletions(-) create mode 100644 module/systemRegistration/migrations.mjs diff --git a/daggerheart.mjs b/daggerheart.mjs index 795764cc..96a6783b 100644 --- a/daggerheart.mjs +++ b/daggerheart.mjs @@ -13,6 +13,7 @@ import { enrichedDualityRoll } from './module/enrichers/DualityRollEnricher.mjs' import { registerCountdownHooks } from './module/data/countdowns.mjs'; import { handlebarsRegistration, + runMigrations, settingsRegistration, socketRegistration } from './module/systemRegistration/_module.mjs'; @@ -168,6 +169,8 @@ Hooks.on('ready', async () => { game.user.setFlag(CONFIG.DH.id, CONFIG.DH.FLAGS.userFlags.welcomeMessage, true); } } + + runMigrations(); }); Hooks.once('dicesoniceready', () => {}); diff --git a/lang/en.json b/lang/en.json index 7daf6b14..6a34037d 100755 --- a/lang/en.json +++ b/lang/en.json @@ -193,7 +193,9 @@ "companionLevelup": { "confirmTitle": "Companion Levelup", "confirmText": "Would you like to level up your companion {name} by {levelChange} levels at this time? (You can do it manually later)" - } + }, + "InvalidOldCharacterImportTitle": "Old Character Import", + "InvalidOldCharacterImportText": "Character data exported prior to system version 1.1 will not generate a complete character. Do you wish to continue?" }, "Companion": { "FIELDS": { diff --git a/module/applications/sheets/api/application-mixin.mjs b/module/applications/sheets/api/application-mixin.mjs index ab1c9ab2..bdcee27a 100644 --- a/module/applications/sheets/api/application-mixin.mjs +++ b/module/applications/sheets/api/application-mixin.mjs @@ -591,7 +591,6 @@ export default function DHApplicationMixin(Base) { if (featureOnCharacter) { systemData = { originItemType: this.document.type, - originId: this.document.id, identifier: this.document.system.isMulticlass ? 'multiclass' : null }; } diff --git a/module/applications/sheets/api/base-item.mjs b/module/applications/sheets/api/base-item.mjs index 9d7df6ee..e722b72e 100644 --- a/module/applications/sheets/api/base-item.mjs +++ b/module/applications/sheets/api/base-item.mjs @@ -149,12 +149,12 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) { const { type } = target.dataset; const cls = foundry.documents.Item.implementation; + const multiclass = this.document.system.isMulticlass ? 'multiclass' : null; let systemData = {}; if (this.document.parent?.type === 'character') { systemData = { originItemType: this.document.type, - originId: this.document.id, - identifier: this.document.system.isMulticlass ? 'multiclass' : null + identifier: multiclass ?? type }; } @@ -275,14 +275,15 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) { if (this.document.parent?.type === 'character') { const itemData = item.toObject(); + const multiclass = this.document.system.isMulticlass ? 'multiclass' : null; item = await cls.create( { ...itemData, + _stats: { compendiumSource: this.document.uuid }, system: { ...itemData.system, originItemType: this.document.type, - originId: this.document.id, - identifier: this.document.system.isMulticlass ? 'multiclass' : null + identifier: multiclass ?? target.dataset.type } }, { parent: this.document.parent } diff --git a/module/config/settingsConfig.mjs b/module/config/settingsConfig.mjs index dd8aeffe..76234a97 100644 --- a/module/config/settingsConfig.mjs +++ b/module/config/settingsConfig.mjs @@ -26,5 +26,6 @@ export const gameSettings = { Fear: 'ResourcesFear' }, LevelTiers: 'LevelTiers', - Countdowns: 'Countdowns' + Countdowns: 'Countdowns', + LastMigrationVersion: 'LastMigrationVersion' }; diff --git a/module/data/actor/character.mjs b/module/data/actor/character.mjs index bb6a8c65..7dd7993c 100644 --- a/module/data/actor/character.mjs +++ b/module/data/actor/character.mjs @@ -444,16 +444,12 @@ export default class DhCharacter extends BaseDataActor { } else if (item.system.originItemType === CONFIG.DH.ITEM.featureTypes.subclass.id) { if (this.class.subclass) { const subclassState = this.class.subclass.system.featureState; - const subclass = - item.system.identifier === 'multiclass' ? this.multiclass.subclass : this.class.subclass; - const featureType = subclass - ? (subclass.system.features.find(x => x.item?.uuid === item.uuid)?.type ?? null) - : null; if ( - featureType === CONFIG.DH.ITEM.featureSubTypes.foundation || - (featureType === CONFIG.DH.ITEM.featureSubTypes.specialization && subclassState >= 2) || - (featureType === CONFIG.DH.ITEM.featureSubTypes.mastery && subclassState >= 3) + item.system.identifier === CONFIG.DH.ITEM.featureSubTypes.foundation || + (item.system.identifier === CONFIG.DH.ITEM.featureSubTypes.specialization && + subclassState >= 2) || + (item.system.identifier === CONFIG.DH.ITEM.featureSubTypes.mastery && subclassState >= 3) ) { subclassFeatures.push(item); } diff --git a/module/data/item/base.mjs b/module/data/item/base.mjs index f0b22b44..f333537b 100644 --- a/module/data/item/base.mjs +++ b/module/data/item/base.mjs @@ -144,50 +144,30 @@ export default class BaseDataItem extends foundry.abstract.TypeDataModel { } if (this.actor && this.actor.type === 'character' && this.features) { - const featureUpdates = {}; + const features = []; for (let f of this.features) { const fBase = f.item ?? f; const feature = fBase.system ? fBase : await foundry.utils.fromUuid(fBase.uuid); - const createData = foundry.utils.mergeObject( - feature.toObject(), - { - system: { - originItemType: this.parent.type, - originId: data._id, - identifier: this.isMulticlass ? 'multiclass' : null - } - }, - { inplace: false } + const multiclass = this.isMulticlass ? 'multiclass' : null; + features.push( + foundry.utils.mergeObject( + feature.toObject(), + { + _stats: { compendiumSource: fBase.uuid }, + system: { + originItemType: this.parent.type, + identifier: multiclass ?? (f.item ? f.type : null) + } + }, + { inplace: false } + ) ); - const [doc] = await this.actor.createEmbeddedDocuments('Item', [createData]); - - if (!featureUpdates.features) - featureUpdates.features = this.features.map(x => (x.item ? { ...x, item: x.item.uuid } : x.uuid)); - - if (f.item) { - const existingFeature = featureUpdates.features.find(x => x.item === f.item.uuid); - existingFeature.item = doc.uuid; - } else { - const replaceIndex = featureUpdates.features.findIndex(x => x === f.uuid); - featureUpdates.features.splice(replaceIndex, 1, doc.uuid); - } } - await this.updateSource(featureUpdates); + await this.actor.createEmbeddedDocuments('Item', features); } } - async _preDelete() { - if (!this.actor || this.actor.type !== 'character') return; - - const items = this.actor.items.filter(item => item.system.originId === this.parent.id); - if (items.length > 0) - await this.actor.deleteEmbeddedDocuments( - 'Item', - items.map(x => x.id) - ); - } - async _preUpdate(changed, options, userId) { const allowed = await super._preUpdate(changed, options, userId); if (allowed === false) return false; diff --git a/module/data/item/feature.mjs b/module/data/item/feature.mjs index 13c1d149..6e1aab41 100644 --- a/module/data/item/feature.mjs +++ b/module/data/item/feature.mjs @@ -1,5 +1,4 @@ import BaseDataItem from './base.mjs'; -import { ActionField, ActionsField } from '../fields/actionField.mjs'; export default class DHFeature extends BaseDataItem { /** @inheritDoc */ @@ -30,24 +29,7 @@ export default class DHFeature extends BaseDataItem { nullable: true, initial: null }), - originId: new fields.StringField({ nullable: true, initial: null }), identifier: new fields.StringField() }; } - - get spellcastingModifier() { - let traitValue = 0; - if (this.actor && this.originId && ['class', 'subclass'].includes(this.originItemType)) { - if (this.originItemType === 'subclass') { - traitValue = - this.actor.system.traits[this.actor.items.get(this.originId).system.spellcastingTrait]?.value ?? 0; - } else { - const { value: multiclass, subclass } = this.actor.system.multiclass; - const selectedSubclass = multiclass?.id === this.originId ? subclass : this.actor.system.class.subclass; - traitValue = this.actor.system.traits[selectedSubclass.system.spellcastingTrait]?.value ?? 0; - } - } - - return traitValue; - } } diff --git a/module/documents/actor.mjs b/module/documents/actor.mjs index 4a6d2d67..e1dd93af 100644 --- a/module/documents/actor.mjs +++ b/module/documents/actor.mjs @@ -1,7 +1,7 @@ import { emitAsGM, GMUpdateEvent } from '../systemRegistration/socket.mjs'; import { LevelOptionType } from '../data/levelTier.mjs'; import DHFeature from '../data/item/feature.mjs'; -import { damageKeyToNumber } from '../helpers/utils.mjs'; +import { damageKeyToNumber, versionCompare } from '../helpers/utils.mjs'; import DhCompanionLevelUp from '../applications/levelup/companionLevelup.mjs'; export default class DhpActor extends Actor { @@ -27,7 +27,7 @@ export default class DhpActor extends Actor { /** @inheritDoc */ static migrateData(source) { - if(source.system?.attack && !source.system.attack.type) source.system.attack.type = "attack"; + if (source.system?.attack && !source.system.attack.type) source.system.attack.type = 'attack'; return super.migrateData(source); } @@ -571,19 +571,15 @@ export default class DhpActor extends Actor { if (armorSlotResult) { const { modifiedDamage, armorSpent, stressSpent } = armorSlotResult; updates.find(u => u.key === 'hitPoints').value = modifiedDamage; - if(armorSpent) { + if (armorSpent) { const armorUpdate = updates.find(u => u.key === 'armor'); - if(armorUpdate) - armorUpdate.value += armorSpent; - else - updates.push({ value: armorSpent, key: 'armor' }); + if (armorUpdate) armorUpdate.value += armorSpent; + else updates.push({ value: armorSpent, key: 'armor' }); } - if(stressSpent) { + if (stressSpent) { const stressUpdate = updates.find(u => u.key === 'stress'); - if(stressUpdate) - stressUpdate.value += stressSpent; - else - updates.push({ value: stressSpent, key: 'stress' }); + if (stressUpdate) stressUpdate.value += stressSpent; + else updates.push({ value: stressSpent, key: 'stress' }); } } } @@ -753,4 +749,26 @@ export default class DhpActor extends Actor { } } } + + /** @inheritdoc */ + async importFromJSON(json) { + if (!this.type === 'character') return await super.importFromJSON(json); + + if (!CONST.WORLD_DOCUMENT_TYPES.includes(this.documentName)) { + throw new Error('Only world Documents may be imported'); + } + + const parsedJSON = JSON.parse(json); + if (versionCompare(parsedJSON._stats.systemVersion, '1.1.0')) { + const confirmed = await foundry.applications.api.DialogV2.confirm({ + window: { + title: game.i18n.localize('DAGGERHEART.ACTORS.Character.InvalidOldCharacterImportTitle') + }, + content: game.i18n.localize('DAGGERHEART.ACTORS.Character.InvalidOldCharacterImportText') + }); + if (!confirmed) return; + } + + return await super.importFromJSON(json); + } } diff --git a/module/helpers/utils.mjs b/module/helpers/utils.mjs index 6f4e5a26..c8f4186f 100644 --- a/module/helpers/utils.mjs +++ b/module/helpers/utils.mjs @@ -420,3 +420,14 @@ export async function createEmbeddedItemsWithEffects(actor, baseData) { export const slugify = name => { return name.toLowerCase().replaceAll(' ', '-').replaceAll('.', ''); }; + +export const versionCompare = (current, target) => { + const currentSplit = current.split('.').map(x => Number.parseInt(x)); + const targetSplit = target.split('.').map(x => Number.parseInt(x)); + for (var i = 0; i < currentSplit.length; i++) { + if (currentSplit[i] < targetSplit[i]) return true; + if (currentSplit[i] > targetSplit[i]) return false; + } + + return false; +}; diff --git a/module/systemRegistration/_module.mjs b/module/systemRegistration/_module.mjs index 38dcac4f..483a6b37 100644 --- a/module/systemRegistration/_module.mjs +++ b/module/systemRegistration/_module.mjs @@ -1,3 +1,4 @@ export { preloadHandlebarsTemplates as handlebarsRegistration } from './handlebars.mjs'; export * as settingsRegistration from './settings.mjs'; export * as socketRegistration from './socket.mjs'; +export { runMigrations } from './migrations.mjs'; diff --git a/module/systemRegistration/migrations.mjs b/module/systemRegistration/migrations.mjs new file mode 100644 index 00000000..e84018fa --- /dev/null +++ b/module/systemRegistration/migrations.mjs @@ -0,0 +1,41 @@ +import { versionCompare } from '../helpers/utils.mjs'; + +export async function runMigrations() { + let lastMigrationVersion = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion); + if (!lastMigrationVersion) lastMigrationVersion = '1.0.6'; + + if (versionCompare(lastMigrationVersion, '1.1.0')) { + const compendiumActors = []; + for (let pack of game.packs) { + const documents = await pack.getDocuments(); + compendiumActors.push(...documents.filter(x => x.type === 'character')); + } + + [...compendiumActors, ...game.actors].forEach(actor => { + const items = actor.items.reduce((acc, item) => { + if (item.type === 'feature') { + const { originItemType, isMulticlass, identifier } = item.system; + const base = originItemType + ? actor.items.find( + x => x.type === originItemType && Boolean(isMulticlass) === Boolean(x.system.isMulticlass) + ) + : null; + if (base) { + const feature = base.system.features.find(x => x.item && x.item.uuid === item.uuid); + if (feature && identifier !== 'multiclass') { + acc.push({ _id: item.id, system: { identifier: feature.type } }); + } + } + } + + return acc; + }, []); + + actor.updateEmbeddedDocuments('Item', items); + }); + + lastMigrationVersion = '1.1.0'; + } + + await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion, lastMigrationVersion); +} diff --git a/module/systemRegistration/settings.mjs b/module/systemRegistration/settings.mjs index 3d9ffc19..4828ebb0 100644 --- a/module/systemRegistration/settings.mjs +++ b/module/systemRegistration/settings.mjs @@ -91,6 +91,12 @@ const registerMenus = () => { }; const registerNonConfigSettings = () => { + game.settings.register(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion, { + scope: 'world', + config: false, + type: String + }); + game.settings.register(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers, { scope: 'world', config: false, diff --git a/system.json b/system.json index e6b7650f..d72c53d5 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "daggerheart", "title": "Daggerheart", "description": "An unofficial implementation of the Daggerheart system", - "version": "1.0.6", + "version": "1.1.0", "compatibility": { "minimum": "13", "verified": "13.347", From 888cf9172bb69c0d444201527c408c9d6f53a825 Mon Sep 17 00:00:00 2001 From: Luiz HD Costa Date: Thu, 21 Aug 2025 22:35:36 -0300 Subject: [PATCH 27/31] [Community PR] Localize hardcoded text (#1002) * Localize remaining hardcoded user-facing strings * Introduce pluralize helper for localizing strings * Localize missing strings from ItemBrowser --- lang/en.json | 39 +++++- module/applications/ui/itemBrowser.mjs | 15 ++- module/config/itemBrowserConfig.mjs | 128 +++++++++---------- module/data/fields/action/costField.mjs | 2 +- module/data/fields/action/usesField.mjs | 2 +- module/helpers/handlebarsHelper.mjs | 21 ++- templates/sheets/actors/character/header.hbs | 2 +- templates/ui/chat/parts/target-part.hbs | 6 +- templates/ui/itemBrowser/itemBrowser.hbs | 14 +- 9 files changed, 147 insertions(+), 82 deletions(-) diff --git a/lang/en.json b/lang/en.json index 63b18219..1bddbad3 100755 --- a/lang/en.json +++ b/lang/en.json @@ -2347,6 +2347,42 @@ "playerMessage": "{user} rerolled their {name}" } }, + "ItemBrowser": { + "title": "Daggerheart Compendium Browser", + "hint": "Select a Folder in sidebar to start browsing through the compendium", + "searchPlaceholder": "Search...", + "columnName": "Name", + "tooltipFilters": "Filters", + "tooltipErase": "Erase", + "difficultyMin": "Difficulty (Min)", + "difficultyMax": "Difficulty (Max)", + "hitPointsMin": "Hit Points (Min)", + "hitPointsMax": "Hit Points (Max)", + "stressMin": "Stress (Min)", + "stressMax": "Stress (Max)", + "armorScoreMin": "Armor Score (Min)", + "armorScoreMax": "Armor Score (Max)", + "levelMin": "Level (Min)", + "levelMax": "Level (Max)", + "recallCostMin": "Recall Cost (Min)", + "recallCostMax": "Recall Cost (Max)", + "evasionMin": "Evasion (Min)", + "evasionMax": "Evasion (Max)", + "subtype": "Subtype", + "folders": { + "adversaries": "Adversaries", + "ancestries": "Ancestries", + "equipment": "Equipment", + "classes": "Classes", + "subclasses": "Subclasses", + "domainCards": "Domain Cards", + "communities": "Communities", + "environments": "Environments", + "beastforms": "Beastforms", + "features": "Features", + "items": "Items" + } + }, "Notifications": { "adversaryMissing": "The linked adversary doesn't exist in the world.", "beastformInapplicable": "A beastform can only be applied to a Character.", @@ -2406,7 +2442,8 @@ "beastformEquipWeapon": "You cannot use weapons while in a Beastform.", "loadoutMaxReached": "You've reached maximum loadout. Move atleast one domain card to the vault, or increase the limit in homebrew settings if desired.", "domainMaxReached": "You've reached the maximum domains for the class. Increase the limit in homebrew settings if desired.", - "insufficientResources": "You have insufficient resources", + "insufficientResources": "You don't have enough resources to use that action.", + "actionNoUsesRemaining": "That action doesn't have remaining uses.", "multiclassAlreadyPresent": "You already have a class and multiclass", "subclassesAlreadyPresent": "You already have a class and multiclass subclass", "noDiceSystem": "Your selected dice {system} does not have a {faces} dice" diff --git a/module/applications/ui/itemBrowser.mjs b/module/applications/ui/itemBrowser.mjs index f0ad98db..3a31bd4e 100644 --- a/module/applications/ui/itemBrowser.mjs +++ b/module/applications/ui/itemBrowser.mjs @@ -154,7 +154,7 @@ export class ItemBrowser extends HandlebarsApplicationMixin(ApplicationV2) { Object.values(config).forEach(c => { const folder = { id: c.id, - label: c.label, + label: game.i18n.localize(c.label), selected: (!parent || parent.selected) && this.selectedMenu.path[depth] === c.id }; folder.folders = c.folders @@ -173,11 +173,16 @@ export class ItemBrowser extends HandlebarsApplicationMixin(ApplicationV2) { folderPath = `${compendium}.folders.${folderId}`, folderData = foundry.utils.getProperty(config, folderPath); + const columns = ItemBrowser.getFolderConfig(folderData).map(col => ({ + ...col, + label: game.i18n.localize(col.label) + })); + this.selectedMenu = { path: folderPath.split('.'), data: { ...folderData, - columns: ItemBrowser.getFolderConfig(folderData) + columns: columns } }; @@ -237,6 +242,12 @@ export class ItemBrowser extends HandlebarsApplicationMixin(ApplicationV2) { else if (typeof f.choices === 'function') { f.choices = f.choices(); } + + // Clear field label so template uses our custom label parameter + if (f.field && f.label) { + f.field.label = undefined; + } + f.name ??= f.key; f.value = this.presets?.filter?.[f.name]?.value ?? null; }); diff --git a/module/config/itemBrowserConfig.mjs b/module/config/itemBrowserConfig.mjs index 6e3c0dea..0cb42d2c 100644 --- a/module/config/itemBrowserConfig.mjs +++ b/module/config/itemBrowserConfig.mjs @@ -3,63 +3,63 @@ export const typeConfig = { columns: [ { key: "system.tier", - label: "Tier" + label: "DAGGERHEART.GENERAL.Tiers.singular" }, { key: "system.type", - label: "Type" + label: "DAGGERHEART.GENERAL.type" } ], filters: [ { key: "system.tier", - label: "Tier", + label: "DAGGERHEART.GENERAL.Tiers.singular", field: 'system.api.models.actors.DhAdversary.schema.fields.tier' }, { key: "system.type", - label: "Type", + label: "DAGGERHEART.GENERAL.type", field: 'system.api.models.actors.DhAdversary.schema.fields.type' }, { key: "system.difficulty", name: "difficulty.min", - label: "Difficulty (Min)", + label: "DAGGERHEART.UI.ItemBrowser.difficultyMin", field: 'system.api.models.actors.DhAdversary.schema.fields.difficulty', operator: "gte" }, { key: "system.difficulty", name: "difficulty.max", - label: "Difficulty (Max)", + label: "DAGGERHEART.UI.ItemBrowser.difficultyMax", field: 'system.api.models.actors.DhAdversary.schema.fields.difficulty', operator: "lte" }, { key: "system.resources.hitPoints.max", name: "hp.min", - label: "Hit Points (Min)", + label: "DAGGERHEART.UI.ItemBrowser.hitPointsMin", field: 'system.api.models.actors.DhAdversary.schema.fields.resources.fields.hitPoints.fields.max', operator: "gte" }, { key: "system.resources.hitPoints.max", name: "hp.max", - label: "Hit Points (Max)", + label: "DAGGERHEART.UI.ItemBrowser.hitPointsMax", field: 'system.api.models.actors.DhAdversary.schema.fields.resources.fields.hitPoints.fields.max', operator: "lte" }, { key: "system.resources.stress.max", name: "stress.min", - label: "Stress (Min)", + label: "DAGGERHEART.UI.ItemBrowser.stressMin", field: 'system.api.models.actors.DhAdversary.schema.fields.resources.fields.stress.fields.max', operator: "gte" }, { key: "system.resources.stress.max", name: "stress.max", - label: "Stress (Max)", + label: "DAGGERHEART.UI.ItemBrowser.stressMax", field: 'system.api.models.actors.DhAdversary.schema.fields.resources.fields.stress.fields.max', operator: "lte" }, @@ -69,70 +69,70 @@ export const typeConfig = { columns: [ { key: "type", - label: "Type" + label: "DAGGERHEART.GENERAL.type" }, { key: "system.secondary", - label: "Subtype", + label: "DAGGERHEART.UI.ItemBrowser.subtype", format: (isSecondary) => isSecondary ? "secondary" : (isSecondary === false ? "primary" : '-') }, { key: "system.tier", - label: "Tier" + label: "DAGGERHEART.GENERAL.Tiers.singular" } ], filters: [ { key: "type", - label: "Type", + label: "DAGGERHEART.GENERAL.type", choices: () => CONFIG.Item.documentClass.TYPES.filter(t => ["armor", "weapon", "consumable", "loot"].includes(t)).map(t => ({ value: t, label: t })) }, { key: "system.secondary", - label: "Subtype", + label: "DAGGERHEART.UI.ItemBrowser.subtype", choices: [ - { value: false, label: "Primary Weapon"}, - { value: true, label: "Secondary Weapon"} + { value: false, label: "DAGGERHEART.ITEMS.Weapon.primaryWeapon" }, + { value: true, label: "DAGGERHEART.ITEMS.Weapon.secondaryWeapon" } ] }, { key: "system.tier", - label: "Tier", - choices: [{ value: "1", label: "1"}, { value: "2", label: "2"}, { value: "3", label: "3"}, { value: "4", label: "4"}] + label: "DAGGERHEART.GENERAL.Tiers.singular", + choices: [{ value: "1", label: "1" }, { value: "2", label: "2" }, { value: "3", label: "3" }, { value: "4", label: "4" }] }, { key: "system.burden", - label: "Burden", + label: "DAGGERHEART.GENERAL.burden", field: 'system.api.models.items.DHWeapon.schema.fields.burden' }, { key: "system.attack.roll.trait", - label: "Trait", + label: "DAGGERHEART.GENERAL.Trait.single", field: 'system.api.models.actions.actionsTypes.attack.schema.fields.roll.fields.trait' }, { key: "system.attack.range", - label: "Range", + label: "DAGGERHEART.GENERAL.range", field: 'system.api.models.actions.actionsTypes.attack.schema.fields.range' }, { key: "system.baseScore", name: "armor.min", - label: "Armor Score (Min)", + label: "DAGGERHEART.UI.ItemBrowser.armorScoreMin", field: 'system.api.models.items.DHArmor.schema.fields.baseScore', operator: "gte" }, { key: "system.baseScore", name: "armor.max", - label: "Armor Score (Max)", + label: "DAGGERHEART.UI.ItemBrowser.armorScoreMax", field: 'system.api.models.items.DHArmor.schema.fields.baseScore', operator: "lte" }, { key: "system.itemFeatures", - label: "Features", - choices: () => [...Object.entries(CONFIG.DH.ITEM.weaponFeatures), ...Object.entries(CONFIG.DH.ITEM.armorFeatures)].map(([k,v]) => ({ value: k, label: v.label})), + label: "DAGGERHEART.GENERAL.features", + choices: () => [...Object.entries(CONFIG.DH.ITEM.weaponFeatures), ...Object.entries(CONFIG.DH.ITEM.armorFeatures)].map(([k, v]) => ({ value: k, label: v.label })), operator: "contains3" } ] @@ -149,54 +149,54 @@ export const typeConfig = { columns: [ { key: "system.type", - label: "Type" + label: "DAGGERHEART.GENERAL.type" }, { key: "system.domain", - label: "Domain" + label: "DAGGERHEART.GENERAL.Domain.single" }, { key: "system.level", - label: "Level" + label: "DAGGERHEART.GENERAL.level" } ], filters: [ { key: "system.type", - label: "Type", + label: "DAGGERHEART.GENERAL.type", field: 'system.api.models.items.DHDomainCard.schema.fields.type' }, { key: "system.domain", - label: "Domain", + label: "DAGGERHEART.GENERAL.Domain.single", field: 'system.api.models.items.DHDomainCard.schema.fields.domain', operator: "contains2" }, { key: "system.level", name: "level.min", - label: "Level (Min)", + label: "DAGGERHEART.UI.ItemBrowser.levelMin", field: 'system.api.models.items.DHDomainCard.schema.fields.level', operator: "gte" }, { key: "system.level", name: "level.max", - label: "Level (Max)", + label: "DAGGERHEART.UI.ItemBrowser.levelMax", field: 'system.api.models.items.DHDomainCard.schema.fields.level', operator: "lte" }, { key: "system.recallCost", name: "recall.min", - label: "Recall Cost (Min)", + label: "DAGGERHEART.UI.ItemBrowser.recallCostMin", field: 'system.api.models.items.DHDomainCard.schema.fields.recallCost', operator: "gte" }, { key: "system.recallCost", name: "recall.max", - label: "Recall Cost (Max)", + label: "DAGGERHEART.UI.ItemBrowser.recallCostMax", field: 'system.api.models.items.DHDomainCard.schema.fields.recallCost', operator: "lte" } @@ -206,50 +206,50 @@ export const typeConfig = { columns: [ { key: "system.evasion", - label: "Evasion" + label: "DAGGERHEART.GENERAL.evasion" }, { key: "system.hitPoints", - label: "Hit Points" + label: "DAGGERHEART.GENERAL.HitPoints.plural" }, { key: "system.domains", - label: "Domains" + label: "DAGGERHEART.GENERAL.Domain.plural" } ], filters: [ { key: "system.evasion", name: "evasion.min", - label: "Evasion (Min)", + label: "DAGGERHEART.UI.ItemBrowser.evasionMin", field: 'system.api.models.items.DHClass.schema.fields.evasion', operator: "gte" }, { key: "system.evasion", name: "evasion.max", - label: "Evasion (Max)", + label: "DAGGERHEART.UI.ItemBrowser.evasionMax", field: 'system.api.models.items.DHClass.schema.fields.evasion', operator: "lte" }, { key: "system.hitPoints", name: "hp.min", - label: "Hit Points (Min)", + label: "DAGGERHEART.UI.ItemBrowser.hitPointsMin", field: 'system.api.models.items.DHClass.schema.fields.hitPoints', operator: "gte" }, { key: "system.hitPoints", name: "hp.max", - label: "Hit Points (Max)", + label: "DAGGERHEART.UI.ItemBrowser.hitPointsMax", field: 'system.api.models.items.DHClass.schema.fields.hitPoints', operator: "lte" }, { key: "system.domains", - label: "Domains", - choices: () => Object.values(CONFIG.DH.DOMAIN.domains).map(d => ({ value: d.id, label: d.label})), + label: "DAGGERHEART.GENERAL.Domain.plural", + choices: () => Object.values(CONFIG.DH.DOMAIN.domains).map(d => ({ value: d.id, label: d.label })), operator: "contains2" } ] @@ -258,14 +258,14 @@ export const typeConfig = { columns: [ { key: "id", - label: "Class", + label: "TYPES.Item.class", format: (id) => { return ""; } }, { key: "system.spellcastingTrait", - label: "Spellcasting Trait" + label: "DAGGERHEART.ITEMS.Subclass.spellcastingTrait" } ], filters: [] @@ -274,22 +274,22 @@ export const typeConfig = { columns: [ { key: "system.tier", - label: "Tier" + label: "DAGGERHEART.GENERAL.Tiers.singular" }, { key: "system.mainTrait", - label: "Main Trait" + label: "DAGGERHEART.GENERAL.Trait.single" } ], filters: [ { key: "system.tier", - label: "Tier", + label: "DAGGERHEART.GENERAL.Tiers.singular", field: 'system.api.models.items.DHBeastform.schema.fields.tier' }, { key: "system.mainTrait", - label: "Main Trait", + label: "DAGGERHEART.GENERAL.Trait.single", field: 'system.api.models.items.DHBeastform.schema.fields.mainTrait' } ] @@ -304,20 +304,20 @@ export const compendiumConfig = { "adversaries": { id: "adversaries", keys: ["adversaries"], - label: "Adversaries", + label: "DAGGERHEART.UI.ItemBrowser.folders.adversaries", type: ["adversary"], listType: "adversaries" }, "ancestries": { id: "ancestries", keys: ["ancestries"], - label: "Ancestries", + label: "DAGGERHEART.UI.ItemBrowser.folders.ancestries", type: ["ancestry"], folders: { "features": { id: "features", keys: ["ancestries"], - label: "Features", + label: "DAGGERHEART.UI.ItemBrowser.folders.features", type: ["feature"] } } @@ -325,26 +325,26 @@ export const compendiumConfig = { "equipments": { id: "equipments", keys: ["armors", "weapons", "consumables", "loot"], - label: "Equipment", + label: "DAGGERHEART.UI.ItemBrowser.folders.equipment", type: ["armor", "weapon", "consumable", "loot"], listType: "items" }, "classes": { id: "classes", keys: ["classes"], - label: "Classes", + label: "DAGGERHEART.UI.ItemBrowser.folders.classes", type: ["class"], folders: { "features": { id: "features", keys: ["classes"], - label: "Features", + label: "DAGGERHEART.UI.ItemBrowser.folders.features", type: ["feature"] }, "items": { id: "items", keys: ["classes"], - label: "Items", + label: "DAGGERHEART.UI.ItemBrowser.folders.items", type: ["armor", "weapon", "consumable", "loot"], listType: "items" } @@ -354,27 +354,27 @@ export const compendiumConfig = { "subclasses": { id: "subclasses", keys: ["subclasses"], - label: "Subclasses", + label: "DAGGERHEART.UI.ItemBrowser.folders.subclasses", type: ["subclass"], listType: "subclasses" }, "domains": { id: "domains", keys: ["domains"], - label: "Domain Cards", + label: "DAGGERHEART.UI.ItemBrowser.folders.domainCards", type: ["domainCard"], listType: "cards" }, "communities": { id: "communities", keys: ["communities"], - label: "Communities", + label: "DAGGERHEART.UI.ItemBrowser.folders.communities", type: ["community"], folders: { "features": { id: "features", keys: ["communities"], - label: "Features", + label: "DAGGERHEART.UI.ItemBrowser.folders.features", type: ["feature"] } } @@ -382,20 +382,20 @@ export const compendiumConfig = { "environments": { id: "environments", keys: ["environments"], - label: "Environments", + label: "DAGGERHEART.UI.ItemBrowser.folders.environments", type: ["environment"] }, "beastforms": { id: "beastforms", keys: ["beastforms"], - label: "Beastforms", + label: "DAGGERHEART.UI.ItemBrowser.folders.beastforms", type: ["beastform"], listType: "beastforms", folders: { "features": { id: "features", keys: ["beastforms"], - label: "Features", + label: "DAGGERHEART.UI.ItemBrowser.folders.features", type: ["feature"] } } diff --git a/module/data/fields/action/costField.mjs b/module/data/fields/action/costField.mjs index f4d942b1..c224fff0 100644 --- a/module/data/fields/action/costField.mjs +++ b/module/data/fields/action/costField.mjs @@ -25,7 +25,7 @@ export default class CostField extends fields.ArrayField { config.costs = CostField.calcCosts.call(this, costs); const hasCost = CostField.hasCost.call(this, config.costs); if (config.isFastForward && !hasCost) - return ui.notifications.warn("You don't have the resources to use that action."); + return ui.notifications.warn(game.i18n.localize('DAGGERHEART.UI.Notifications.insufficientResources')); return hasCost; } diff --git a/module/data/fields/action/usesField.mjs b/module/data/fields/action/usesField.mjs index 3993ca3b..5c2bfb61 100644 --- a/module/data/fields/action/usesField.mjs +++ b/module/data/fields/action/usesField.mjs @@ -25,7 +25,7 @@ export default class UsesField extends fields.SchemaField { if (uses && !uses.value) uses.value = 0; config.uses = uses; const hasUses = UsesField.hasUses.call(this, config.uses); - if (config.isFastForward && !hasUses) return ui.notifications.warn("That action doesn't have remaining uses."); + if (config.isFastForward && !hasUses) return ui.notifications.warn(game.i18n.localize('DAGGERHEART.UI.Notifications.actionNoUsesRemaining')); return hasUses; } diff --git a/module/helpers/handlebarsHelper.mjs b/module/helpers/handlebarsHelper.mjs index 171255e2..83220307 100644 --- a/module/helpers/handlebarsHelper.mjs +++ b/module/helpers/handlebarsHelper.mjs @@ -13,7 +13,8 @@ export default class RegisterHandlebarsHelpers { hasProperty: foundry.utils.hasProperty, getProperty: foundry.utils.getProperty, setVar: this.setVar, - empty: this.empty + empty: this.empty, + pluralize: this.pluralize }); } static add(a, b) { @@ -64,7 +65,7 @@ export default class RegisterHandlebarsHelpers { return isNumerical ? (!result ? 0 : Number(result)) : result; } - static setVar(name, value, context) { + static setVar(name, value) { this[name] = value; } @@ -72,4 +73,20 @@ export default class RegisterHandlebarsHelpers { if (!(typeof object === 'object')) return true; return Object.keys(object).length === 0; } + + /** + * Pluralize helper that returns the appropriate localized string based on count + * @param {number} count - The number to check for plurality + * @param {string} baseKey - The base localization key (e.g., "DAGGERHEART.GENERAL.Target") + * @returns {string} The localized singular or plural string + * + * Usage: {{pluralize currentTargets.length "DAGGERHEART.GENERAL.Target"}} + * Returns: "Target" if count is exactly 1, "Targets" if count is 0, 2+, or invalid + */ + static pluralize(count, baseKey) { + const numericCount = Number(count); + const isSingular = !isNaN(numericCount) && numericCount === 1; + const key = isSingular ? `${baseKey}.single` : `${baseKey}.plural`; + return game.i18n.localize(key); + } } diff --git a/templates/sheets/actors/character/header.hbs b/templates/sheets/actors/character/header.hbs index 88a72fb8..e19c1dea 100644 --- a/templates/sheets/actors/character/header.hbs +++ b/templates/sheets/actors/character/header.hbs @@ -6,7 +6,7 @@ type='text' name='name' value='{{document.name}}' - placeholder='Actor Name' + placeholder='{{localize "DAGGERHEART.GENERAL.actorName"}}' /> diff --git a/templates/ui/chat/parts/target-part.hbs b/templates/ui/chat/parts/target-part.hbs index 82c71456..af7e93b0 100644 --- a/templates/ui/chat/parts/target-part.hbs +++ b/templates/ui/chat/parts/target-part.hbs @@ -1,11 +1,11 @@
-
Target
+
{{pluralize currentTargets.length "DAGGERHEART.GENERAL.Target"}}
{{#if (or (and targets.length (or (gt targetShort.hit 0) (gt targetShort.miss 0))) (and hasSave pendingSaves))}}
{{#if (or (gt targetShort.hit 0) (gt targetShort.miss 0))}} -
{{targetShort.hit}} {{#if (gt targetShort.hit 1)}}{{localize "DAGGERHEART.GENERAL.hit.single"}}{{else}}{{localize "DAGGERHEART.GENERAL.hit.plural"}}{{/if}}
-
{{targetShort.miss}} {{#if (gt targetShort.miss 1)}}{{localize "DAGGERHEART.GENERAL.miss.single"}}{{else}}{{localize "DAGGERHEART.GENERAL.miss.plural"}}{{/if}}
+
{{targetShort.hit}} {{pluralize targetShort.hit "DAGGERHEART.GENERAL.hit"}}
+
{{targetShort.miss}} {{pluralize targetShort.miss "DAGGERHEART.GENERAL.miss"}}
{{/if}} {{#if (and hasSave pendingSaves)}}
{{/if}}
diff --git a/templates/ui/itemBrowser/itemBrowser.hbs b/templates/ui/itemBrowser/itemBrowser.hbs index 000e4c03..ca0def19 100644 --- a/templates/ui/itemBrowser/itemBrowser.hbs +++ b/templates/ui/itemBrowser/itemBrowser.hbs @@ -17,12 +17,12 @@
- +
{{#if fieldFilter.length}} - + {{/if}} - +
@@ -55,9 +55,9 @@ {{#if menu.data.columns.length}}
-
Name
+
{{localize 'DAGGERHEART.UI.ItemBrowser.columnName'}}
{{#each menu.data.columns}} - {{label}} + {{localize label}} {{/each}}
{{/if}} @@ -82,8 +82,8 @@ {{!--
--}} {{else}}
-

Daggerheart Compendium Browser

- Select a Folder in sidebar to start browsing trought the compendium +

{{localize "DAGGERHEART.UI.ItemBrowser.title"}}

+ {{localize "DAGGERHEART.UI.ItemBrowser.hint"}}
{{/if}}
\ No newline at end of file From ee786544c75a970dc34d2364db600b932f6a72b7 Mon Sep 17 00:00:00 2001 From: Dapoulp <74197441+Dapoulp@users.noreply.github.com> Date: Fri, 22 Aug 2025 12:22:47 +0200 Subject: [PATCH 28/31] Fix double damageKeyToNumber (#1044) --- module/documents/actor.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/documents/actor.mjs b/module/documents/actor.mjs index 0a68e9d1..4ef8b3b0 100644 --- a/module/documents/actor.mjs +++ b/module/documents/actor.mjs @@ -1,7 +1,7 @@ import { emitAsGM, GMUpdateEvent } from '../systemRegistration/socket.mjs'; import { LevelOptionType } from '../data/levelTier.mjs'; import DHFeature from '../data/item/feature.mjs'; -import { createScrollText, damageKeyToNumber, damageKeyToNumber, versionCompare } from '../helpers/utils.mjs'; +import { createScrollText, damageKeyToNumber, versionCompare } from '../helpers/utils.mjs'; import DhCompanionLevelUp from '../applications/levelup/companionLevelup.mjs'; export default class DhpActor extends Actor { From d5f7e17339dd0b24490be12064fe06f4fbebdf1c Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Sat, 23 Aug 2025 02:18:25 +0200 Subject: [PATCH 29/31] Added Custom Adversary Types (#1048) --- lang/en.json | 7 ++- .../settings/homebrewSettings.mjs | 54 +++++++++++++++++-- .../applications/sheets/actors/adversary.mjs | 4 ++ module/config/actorConfig.mjs | 5 ++ module/data/actor/adversary.mjs | 2 +- module/data/settings/Homebrew.mjs | 7 +++ styles/less/ui/index.less | 1 + .../ui/settings/homebrew-settings/types.less | 52 ++++++++++++++++++ .../settings/homebrew-settings/types.hbs | 28 ++++++++++ templates/sheets/actors/adversary/header.hbs | 4 +- templates/ui/tooltip/adversary.hbs | 2 +- 11 files changed, 156 insertions(+), 10 deletions(-) create mode 100644 styles/less/ui/settings/homebrew-settings/types.less create mode 100644 templates/settings/homebrew-settings/types.hbs diff --git a/lang/en.json b/lang/en.json index 1bddbad3..1c614fc2 100755 --- a/lang/en.json +++ b/lang/en.json @@ -1900,7 +1900,8 @@ "tier4": "tier 4", "domains": "Domains", "downtime": "Downtime", - "rules": "Rules" + "rules": "Rules", + "types": "Types" }, "Tiers": { "singular": "Tier", @@ -2230,6 +2231,10 @@ "deleteDomain": "Delete Domain", "deleteDomainText": "Are you sure you want to delete the {name} domain? It will be immediately removed from all Actors in this world where it's currently used. Compendiums are not cleared.", "duplicateDomain": "There is already a domain with this identification." + }, + "adversaryType": { + "title": "Custom Adversary Types", + "newType": "Adversary Type" } }, "Menu": { diff --git a/module/applications/settings/homebrewSettings.mjs b/module/applications/settings/homebrewSettings.mjs index 3fa42afd..c2ac4a89 100644 --- a/module/applications/settings/homebrewSettings.mjs +++ b/module/applications/settings/homebrewSettings.mjs @@ -1,5 +1,6 @@ import { DhHomebrew } from '../../data/settings/_module.mjs'; import { slugify } from '../../helpers/utils.mjs'; + const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api; export default class DhHomebrewSettings extends HandlebarsApplicationMixin(ApplicationV2) { @@ -10,11 +11,14 @@ export default class DhHomebrewSettings extends HandlebarsApplicationMixin(Appli game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).toObject() ); - this.selected = { - domain: null - }; + this.selected = this.#getDefaultAdversaryType(); } + #getDefaultAdversaryType = () => ({ + domain: null, + adversaryType: null + }); + get title() { return game.i18n.localize('DAGGERHEART.SETTINGS.Menu.title'); } @@ -35,6 +39,9 @@ export default class DhHomebrewSettings extends HandlebarsApplicationMixin(Appli addDomain: this.addDomain, toggleSelectedDomain: this.toggleSelectedDomain, deleteDomain: this.deleteDomain, + addAdversaryType: this.addAdversaryType, + deleteAdversaryType: this.deleteAdversaryType, + selectAdversaryType: this.selectAdversaryType, save: this.save, reset: this.reset }, @@ -45,6 +52,7 @@ export default class DhHomebrewSettings extends HandlebarsApplicationMixin(Appli tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' }, settings: { template: 'systems/daggerheart/templates/settings/homebrew-settings/settings.hbs' }, domains: { template: 'systems/daggerheart/templates/settings/homebrew-settings/domains.hbs' }, + types: { template: 'systems/daggerheart/templates/settings/homebrew-settings/types.hbs' }, downtime: { template: 'systems/daggerheart/templates/settings/homebrew-settings/downtime.hbs' }, footer: { template: 'systems/daggerheart/templates/settings/homebrew-settings/footer.hbs' } }; @@ -52,12 +60,19 @@ export default class DhHomebrewSettings extends HandlebarsApplicationMixin(Appli /** @inheritdoc */ static TABS = { main: { - tabs: [{ id: 'settings' }, { id: 'domains' }, { id: 'downtime' }], + tabs: [{ id: 'settings' }, { id: 'domains' }, { id: 'types' }, { id: 'downtime' }], initial: 'settings', labelPrefix: 'DAGGERHEART.GENERAL.Tabs' } }; + changeTab(tab, group, options) { + super.changeTab(tab, group, options); + this.selected = this.#getDefaultAdversaryType(); + + this.render(); + } + async _prepareContext(_options) { const context = await super._prepareContext(_options); context.settingFields = this.settings; @@ -79,6 +94,11 @@ export default class DhHomebrewSettings extends HandlebarsApplicationMixin(Appli context.configDomains = CONFIG.DH.DOMAIN.domains; context.homebrewDomains = this.settings.domains; break; + case 'types': + context.selectedAdversaryType = this.selected.adversaryType + ? { id: this.selected.adversaryType, ...this.settings.adversaryTypes[this.selected.adversaryType] } + : null; + break; } return context; @@ -301,6 +321,32 @@ export default class DhHomebrewSettings extends HandlebarsApplicationMixin(Appli this.render(); } + static async addAdversaryType(_, target) { + const newId = foundry.utils.randomID(); + await this.settings.updateSource({ + [`adversaryTypes.${newId}`]: { + id: newId, + label: game.i18n.localize('DAGGERHEART.SETTINGS.Homebrew.adversaryType.newType') + } + }); + + this.selected.adversaryType = newId; + this.render(); + } + + static async deleteAdversaryType(_, target) { + const { key } = target.dataset; + await this.settings.updateSource({ [`adversaryTypes.-=${key}`]: null }); + + this.selected.adversaryType = this.selected.adversaryType === key ? null : this.selected.adversaryType; + this.render(); + } + + static async selectAdversaryType(_, target) { + this.selected.adversaryType = this.selected.adversaryType === target.dataset.type ? null : target.dataset.type; + this.render(); + } + static async save() { await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew, this.settings.toObject()); this.close(); diff --git a/module/applications/sheets/actors/adversary.mjs b/module/applications/sheets/actors/adversary.mjs index b47cb85a..f575a2f2 100644 --- a/module/applications/sheets/actors/adversary.mjs +++ b/module/applications/sheets/actors/adversary.mjs @@ -56,6 +56,7 @@ export default class AdversarySheet extends DHBaseActorSheet { async _prepareContext(options) { const context = await super._prepareContext(options); context.systemFields.attack.fields = this.document.system.attack.schema.fields; + return context; } @@ -65,6 +66,9 @@ export default class AdversarySheet extends DHBaseActorSheet { switch (partId) { case 'header': await this._prepareHeaderContext(context, options); + + const adversaryTypes = CONFIG.DH.ACTOR.allAdversaryTypes(); + context.adversaryType = game.i18n.localize(adversaryTypes[this.document.system.type].label); break; case 'notes': await this._prepareNotesContext(context, options); diff --git a/module/config/actorConfig.mjs b/module/config/actorConfig.mjs index 6453cd78..55f03789 100644 --- a/module/config/actorConfig.mjs +++ b/module/config/actorConfig.mjs @@ -157,6 +157,11 @@ export const adversaryTypes = { } }; +export const allAdversaryTypes = () => ({ + ...adversaryTypes, + ...game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).adversaryTypes +}); + export const environmentTypes = { exploration: { label: 'DAGGERHEART.CONFIG.EnvironmentType.exploration.label', diff --git a/module/data/actor/adversary.mjs b/module/data/actor/adversary.mjs index 80bcb43e..ba0693f7 100644 --- a/module/data/actor/adversary.mjs +++ b/module/data/actor/adversary.mjs @@ -27,7 +27,7 @@ export default class DhpAdversary extends BaseDataActor { }), type: new fields.StringField({ required: true, - choices: CONFIG.DH.ACTOR.adversaryTypes, + choices: CONFIG.DH.ACTOR.allAdversaryTypes, initial: CONFIG.DH.ACTOR.adversaryTypes.standard.id }), motivesAndTactics: new fields.StringField(), diff --git a/module/data/settings/Homebrew.mjs b/module/data/settings/Homebrew.mjs index e18fee39..0719b085 100644 --- a/module/data/settings/Homebrew.mjs +++ b/module/data/settings/Homebrew.mjs @@ -108,6 +108,13 @@ export default class DhHomebrew extends foundry.abstract.DataModel { }), description: new fields.HTMLField() }) + ), + adversaryTypes: new fields.TypedObjectField( + new fields.SchemaField({ + id: new fields.StringField({ required: true }), + label: new fields.StringField({ required: true, label: 'DAGGERHEART.GENERAL.label' }), + description: new fields.StringField() + }) ) }; } diff --git a/styles/less/ui/index.less b/styles/less/ui/index.less index 4a93feb6..49d1e009 100644 --- a/styles/less/ui/index.less +++ b/styles/less/ui/index.less @@ -21,3 +21,4 @@ @import './settings/settings.less'; @import './settings/homebrew-settings/domains.less'; +@import './settings/homebrew-settings/types.less'; diff --git a/styles/less/ui/settings/homebrew-settings/types.less b/styles/less/ui/settings/homebrew-settings/types.less new file mode 100644 index 00000000..d09431f7 --- /dev/null +++ b/styles/less/ui/settings/homebrew-settings/types.less @@ -0,0 +1,52 @@ +.theme-light .daggerheart.dh-style.setting.homebrew-settings .types.tab { + .adversary-types-container .adversary-type-container { + background-image: url('../assets/parchments/dh-parchment-light.png'); + } +} + +.daggerheart.dh-style.setting.homebrew-settings { + .types.tab { + .adversary-types-container { + width: 100%; + display: grid; + grid-template-columns: 1fr 1fr 1fr; + gap: 4px; + + .adversary-type-container { + height: 2em; + display: flex; + align-items: center; + justify-content: space-between; + gap: 8px; + border: 1px solid; + border-radius: 6px; + padding: 0 8px; + border: 1px solid light-dark(@dark-blue, @golden); + color: light-dark(@dark, @beige); + background-image: url('../assets/parchments/dh-parchment-dark.png'); + cursor: pointer; + opacity: 0.6; + + &:hover { + opacity: 1; + } + + &.active { + opacity: 1; + background: var(--color-warm-2); + } + } + } + + .type-edit-container { + width: 100%; + display: flex; + flex-direction: column; + gap: 8px; + + textarea { + width: 100%; + } + } + } +} diff --git a/templates/settings/homebrew-settings/types.hbs b/templates/settings/homebrew-settings/types.hbs new file mode 100644 index 00000000..f9d3bba3 --- /dev/null +++ b/templates/settings/homebrew-settings/types.hbs @@ -0,0 +1,28 @@ +
+
+ + {{localize "DAGGERHEART.SETTINGS.Homebrew.adversaryType.title"}} + + + +
+ {{#each settingFields.adversaryTypes as |type key|}} +
+ {{type.label}} +
+
+ {{/each}} +
+ + {{#if selectedAdversaryType}} +
+ {{formGroup settingFields.schema.fields.adversaryTypes.element.fields.label name=(concat "adversaryTypes." selectedAdversaryType.id ".label") value=selectedAdversaryType.label localize=true }} + +
+ {{/if}} +
+
\ No newline at end of file diff --git a/templates/sheets/actors/adversary/header.hbs b/templates/sheets/actors/adversary/header.hbs index 8411dd93..e6f829b8 100644 --- a/templates/sheets/actors/adversary/header.hbs +++ b/templates/sheets/actors/adversary/header.hbs @@ -13,9 +13,7 @@
- - {{localize (concat 'DAGGERHEART.CONFIG.AdversaryType.' source.system.type '.label')}} - + {{adversaryType}}
{{#if (eq source.system.type 'horde')}}
diff --git a/templates/ui/tooltip/adversary.hbs b/templates/ui/tooltip/adversary.hbs index b400bd29..86c399c5 100644 --- a/templates/ui/tooltip/adversary.hbs +++ b/templates/ui/tooltip/adversary.hbs @@ -12,7 +12,7 @@
- {{#with (lookup config.ACTOR.adversaryTypes item.system.type) as | type |}} + {{#with (lookup adversaryTypes item.system.type) as | type |}}
{{localize type.label}}
{{/with}}
From 471cbd55df7aaf53430846b890848c33ffba84c9 Mon Sep 17 00:00:00 2001 From: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> Date: Sat, 23 Aug 2025 21:24:28 +1000 Subject: [PATCH 30/31] Fixes some measurement issues with templates (#1065) Co-authored-by: Chris Ryan --- module/canvas/placeables/measuredTemplate.mjs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/module/canvas/placeables/measuredTemplate.mjs b/module/canvas/placeables/measuredTemplate.mjs index 49142685..83cddfe1 100644 --- a/module/canvas/placeables/measuredTemplate.mjs +++ b/module/canvas/placeables/measuredTemplate.mjs @@ -10,38 +10,38 @@ export default class DhMeasuredTemplate extends foundry.canvas.placeables.Measur const splitRulerText = this.ruler.text.split(' '); if (splitRulerText.length > 0) { const rulerValue = Number(splitRulerText[0]); - const result = this.constructor.getRangeLabels(rulerValue, rangeMeasurementSettings); - this.ruler.text = result.distance + result.units ? (' ' + result.units) : ''; + const result = DhMeasuredTemplate.getRangeLabels(rulerValue, rangeMeasurementSettings); + this.ruler.text = result.distance + (result.units ? (' ' + result.units) : ''); } } } - static getRangeLabels(distance, settings) { - let result = { distance: '', units: null } + static getRangeLabels(distanceValue, settings) { + let result = { distance: distanceValue, units: '' } const rangeMeasurementOverride = canvas.scene.flags.daggerheart?.rangeMeasurementOverride; if (rangeMeasurementOverride === true) { - result.distance = distance; + result.distance = distanceValue; result.units = canvas.scene?.grid?.units; return result } - if (distance <= settings.melee) { + if (distanceValue <= settings.melee) { result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.melee.name'); return result; } - if (distance <= settings.veryClose) { + if (distanceValue <= settings.veryClose) { result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.veryClose.name'); return result; } - if (distance <= settings.close) { + if (distanceValue <= settings.close) { result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.close.name'); return result; } - if (distance <= settings.far) { + if (distanceValue <= settings.far) { result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.far.name'); return result; } - if (distance > settings.far) { + if (distanceValue > settings.far) { result.distance = game.i18n.localize('DAGGERHEART.CONFIG.Range.veryFar.name'); } From a72d4583cd3167c72327f762a11b51bd2b0f0879 Mon Sep 17 00:00:00 2001 From: Dapoulp <74197441+Dapoulp@users.noreply.github.com> Date: Sat, 23 Aug 2025 14:54:57 +0200 Subject: [PATCH 31/31] [PR]Add custom formula to weapon base attack (#964) * Add custom formula to weapon base attack * Remove log * Update weapon custom damage formula label + update font-size in px --- lang/en.json | 9 ++++++ module/data/fields/action/damageField.mjs | 12 ++++---- module/data/item/weapon.mjs | 4 +-- styles/less/dialog/beastform/sheet.less | 4 +-- .../selections-container.less | 20 ++++++------- .../damage-reduction-container.less | 4 +-- .../less/dialog/dice-roll/roll-selection.less | 8 ++--- .../dialog/downtime/downtime-container.less | 6 ++-- .../dialog/level-up/selections-container.less | 8 ++--- .../dialog/level-up/summary-container.less | 6 ++-- .../less/dialog/level-up/tiers-container.less | 4 +-- styles/less/dialog/reroll-dialog/sheet.less | 6 ++-- styles/less/global/chat.less | 2 +- styles/less/global/dialog.less | 2 +- styles/less/global/elements.less | 18 ++++++------ styles/less/global/inventory-item.less | 29 ++++++++++--------- styles/less/global/item-header.less | 6 ++-- styles/less/global/prose-mirror.less | 8 ++--- .../character-settings/sheet.less | 2 +- styles/less/sheets-settings/header.less | 2 +- .../less/sheets/actors/adversary/header.less | 6 ++-- .../less/sheets/actors/adversary/sidebar.less | 12 ++++---- .../less/sheets/actors/character/header.less | 16 +++++----- .../sheets/actors/character/inventory.less | 2 +- .../less/sheets/actors/character/loadout.less | 2 +- .../less/sheets/actors/character/sidebar.less | 10 +++---- .../less/sheets/actors/companion/details.less | 6 ++-- .../less/sheets/actors/companion/header.less | 6 ++-- .../sheets/actors/environment/header.less | 8 ++--- styles/less/ui/chat/ability-use.less | 4 +-- styles/less/ui/chat/action.less | 4 +-- styles/less/ui/chat/chat.less | 4 +-- styles/less/ui/chat/downtime.less | 4 +-- .../less/ui/combat-sidebar/token-actions.less | 2 +- styles/less/ui/countdown/sheet.less | 2 +- styles/less/ui/item-browser/item-browser.less | 10 +++---- .../settings/homebrew-settings/domains.less | 4 +-- styles/less/ui/settings/settings.less | 6 ++-- styles/less/utils/mixin.less | 6 ++-- styles/less/ux/autocomplete/autocomplete.less | 4 +-- styles/less/ux/tooltip/tooltip.less | 2 +- templates/sheets/items/weapon/header.hbs | 6 +++- templates/sheets/items/weapon/settings.hbs | 15 +++++++--- 43 files changed, 161 insertions(+), 140 deletions(-) diff --git a/lang/en.json b/lang/en.json index 1c614fc2..beeffd41 100755 --- a/lang/en.json +++ b/lang/en.json @@ -72,6 +72,14 @@ "exactHint": "The Character's Tier is used if empty", "label": "Beastform" }, + "damage": { + "multiplier": "Multiplier", + "flatMultiplier": "Flat Multiplier" + }, + "general": { + "customFormula": "Custom Formula", + "formula": "Formula" + }, "displayInChat": "Display in chat" }, "RollField": { @@ -1929,6 +1937,7 @@ "continue": "Continue", "criticalSuccess": "Critical Success", "criticalShort": "Critical", + "custom": "Custom", "d20Roll": "D20 Roll", "damage": "Damage", "damageRoll": "Damage Roll", diff --git a/module/data/fields/action/damageField.mjs b/module/data/fields/action/damageField.mjs index cf327204..7f1b61e9 100644 --- a/module/data/fields/action/damageField.mjs +++ b/module/data/fields/action/damageField.mjs @@ -23,14 +23,14 @@ export class DHActionDiceData extends foundry.abstract.DataModel { multiplier: new fields.StringField({ choices: CONFIG.DH.GENERAL.multiplierTypes, initial: 'prof', - label: 'Multiplier' + label: "DAGGERHEART.ACTIONS.Config.damage.multiplier" }), - flatMultiplier: new fields.NumberField({ nullable: true, initial: 1, label: 'Flat Multiplier' }), - dice: new fields.StringField({ choices: CONFIG.DH.GENERAL.diceTypes, initial: 'd6', label: 'Dice' }), - bonus: new fields.NumberField({ nullable: true, initial: null, label: 'Bonus' }), + flatMultiplier: new fields.NumberField({ nullable: true, initial: 1, label: "DAGGERHEART.ACTIONS.Config.damage.flatMultiplier" }), + dice: new fields.StringField({ choices: CONFIG.DH.GENERAL.diceTypes, initial: 'd6', label: "DAGGERHEART.GENERAL.Dice.single" }), + bonus: new fields.NumberField({ nullable: true, initial: null, label: "DAGGERHEART.GENERAL.bonus" }), custom: new fields.SchemaField({ - enabled: new fields.BooleanField({ label: 'Custom Formula' }), - formula: new FormulaField({ label: 'Formula', initial: '' }) + enabled: new fields.BooleanField({ label: "DAGGERHEART.ACTIONS.Config.general.customFormula" }), + formula: new FormulaField({ label: "DAGGERHEART.ACTIONS.Config.general.formula", initial: '' }) }) }; } diff --git a/module/data/item/weapon.mjs b/module/data/item/weapon.mjs index 66025cc5..ee4b997c 100644 --- a/module/data/item/weapon.mjs +++ b/module/data/item/weapon.mjs @@ -199,8 +199,8 @@ export default class DHWeapon extends AttachableItem { ]; for (const { value, type } of attack.damage.parts) { - const parts = [value.dice]; - if (value.bonus) parts.push(value.bonus.signedString()); + const parts = value.custom.enabled ? [game.i18n.localize("DAGGERHEART.GENERAL.custom")] : [value.dice]; + if (!value.custom.enabled && value.bonus) parts.push(value.bonus.signedString()); if (type.size > 0) { const typeTags = Array.from(type) diff --git a/styles/less/dialog/beastform/sheet.less b/styles/less/dialog/beastform/sheet.less index c13ee95e..9e87f53b 100644 --- a/styles/less/dialog/beastform/sheet.less +++ b/styles/less/dialog/beastform/sheet.less @@ -41,7 +41,7 @@ display: flex; flex-wrap: wrap; text-align: center; - font-size: 16px; + font-size: var(--font-size-16); margin: 0 4px; border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; @@ -135,7 +135,7 @@ align-items: center; i { - font-size: 24px; + font-size: var(--font-size-24); } } diff --git a/styles/less/dialog/character-creation/selections-container.less b/styles/less/dialog/character-creation/selections-container.less index bc7a6987..3b93313a 100644 --- a/styles/less/dialog/character-creation/selections-container.less +++ b/styles/less/dialog/character-creation/selections-container.less @@ -75,7 +75,7 @@ label { position: absolute; - font-size: 18px; + font-size: var(--font-size-18); font-weight: bold; padding: 0 2px; background-image: url(../assets/parchments/dh-parchment-light.png); @@ -141,7 +141,7 @@ .ancestry-preview-feature { flex: 1; - font-size: 14px; + font-size: var(--font-size-14); white-space: wrap; padding: 0 2px; border: 1px solid light-dark(@golden, @dark-blue); @@ -178,7 +178,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 28px; + font-size: var(--font-size-28); font-weight: bold; padding: 0 8px; } @@ -191,7 +191,7 @@ justify-content: center; legend { - font-size: 20px; + font-size: var(--font-size-20); white-space: nowrap; } @@ -343,7 +343,7 @@ border-radius: 50%; height: 20px; width: 20px; - font-size: 14px; + font-size: var(--font-size-14); display: flex; align-items: center; justify-content: center; @@ -358,7 +358,7 @@ .descriptor { position: absolute; bottom: -8px; - font-size: 12px; + font-size: var(--font-size-12); border-radius: 8px; width: 56px; text-align: center; @@ -400,7 +400,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 28px; + font-size: var(--font-size-28); font-weight: bold; padding: 0 8px; white-space: nowrap; @@ -444,7 +444,7 @@ label { position: absolute; top: -8px; - font-size: 12px; + font-size: var(--font-size-12); white-space: nowrap; border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; @@ -472,7 +472,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 12px; + font-size: var(--font-size-12); } .suggestion-inner-container { @@ -490,7 +490,7 @@ label { position: absolute; top: -2px; - font-size: 12px; + font-size: var(--font-size-12); } img { diff --git a/styles/less/dialog/damage-reduction/damage-reduction-container.less b/styles/less/dialog/damage-reduction/damage-reduction-container.less index 9e1d1472..2f343fb3 100644 --- a/styles/less/dialog/damage-reduction/damage-reduction-container.less +++ b/styles/less/dialog/damage-reduction/damage-reduction-container.less @@ -76,7 +76,7 @@ border-radius: 6px; height: 26px; padding: 0 1px; - font-size: 18px; + font-size: var(--font-size-18); display: flex; align-items: center; justify-content: center; @@ -108,7 +108,7 @@ border-radius: 6px; height: 26px; padding: 0 4px; - font-size: 18px; + font-size: var(--font-size-18); display: flex; align-items: center; justify-content: center; diff --git a/styles/less/dialog/dice-roll/roll-selection.less b/styles/less/dialog/dice-roll/roll-selection.less index 9113bc03..a0ac42b6 100644 --- a/styles/less/dialog/dice-roll/roll-selection.less +++ b/styles/less/dialog/dice-roll/roll-selection.less @@ -23,7 +23,7 @@ width: auto; opacity: 0.3; border-radius: 50%; - font-size: 18px; + font-size: var(--font-size-18); font-weight: bold; &:hover { @@ -74,7 +74,7 @@ font-family: @font-subtitle; font-style: normal; font-weight: 700; - font-size: 16px; + font-size: var(--font-size-16); line-height: 19px; color: light-dark(@dark, @beige); @@ -102,7 +102,7 @@ .label { font-style: normal; font-weight: 400; - font-size: 14px; + font-size: var(--font-size-14); line-height: 17px; } @@ -127,7 +127,7 @@ .label { font-style: normal; font-weight: 400; - font-size: 14px; + font-size: var(--font-size-14); line-height: 17px; } diff --git a/styles/less/dialog/downtime/downtime-container.less b/styles/less/dialog/downtime/downtime-container.less index f9f8df17..16edd3b0 100644 --- a/styles/less/dialog/downtime/downtime-container.less +++ b/styles/less/dialog/downtime/downtime-container.less @@ -35,7 +35,7 @@ gap: 4px; .activity-marker { - font-size: 8px; + font-size: .5rem; flex: none; color: light-dark(@dark-blue, @golden); margin-right: 4px; @@ -54,7 +54,7 @@ } .activity-selected-marker { - font-size: 14px; + font-size: var(--font-size-14); border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; color: light-dark(@dark, @beige); @@ -71,7 +71,7 @@ display: grid; grid-template-columns: 1fr 1fr; gap: 4px; - font-size: 12px; + font-size: var(--font-size-12); &.wide { grid-template-columns: 1fr 1fr 1fr 1fr; diff --git a/styles/less/dialog/level-up/selections-container.less b/styles/less/dialog/level-up/selections-container.less index 96cadd29..6a551865 100644 --- a/styles/less/dialog/level-up/selections-container.less +++ b/styles/less/dialog/level-up/selections-container.less @@ -21,7 +21,7 @@ background: light-dark(@dark-blue-40, @golden-40); border-radius: 3px; padding: 5px; - font-size: 16px; + font-size: var(--font-size-16); gap: 4px; width: 100%; @@ -38,7 +38,7 @@ display: flex; align-items: center; justify-content: center; - font-size: 12px; + font-size: var(--font-size-12); } } } @@ -96,7 +96,7 @@ width: 54px; border-radius: 50%; border: 2px solid; - font-size: 48px; + font-size: var(--font-size-48); display: flex; align-items: center; justify-content: center; @@ -133,7 +133,7 @@ .levelup-selections-title { margin-left: auto; margin-right: auto; - font-size: 22px; + font-size: 1.375rem; font-weight: bold; padding: 0 12px; } diff --git a/styles/less/dialog/level-up/summary-container.less b/styles/less/dialog/level-up/summary-container.less index f192d5ec..d67abff6 100644 --- a/styles/less/dialog/level-up/summary-container.less +++ b/styles/less/dialog/level-up/summary-container.less @@ -41,7 +41,7 @@ display: flex; align-items: center; gap: 4px; - font-size: 14px; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } @@ -49,7 +49,7 @@ display: flex; align-items: center; gap: 4px; - font-size: 16px; + font-size: var(--font-size-16); color: light-dark(@dark, @beige); margin-bottom: 5px; } @@ -62,7 +62,7 @@ border: 2px solid; border-radius: 3px; padding: 0 4px; - font-size: 14px; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } } diff --git a/styles/less/dialog/level-up/tiers-container.less b/styles/less/dialog/level-up/tiers-container.less index d4efa46b..270b9b80 100644 --- a/styles/less/dialog/level-up/tiers-container.less +++ b/styles/less/dialog/level-up/tiers-container.less @@ -21,7 +21,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 22px; + font-size: 1.375rem; font-weight: bold; padding: 0 12px; } @@ -60,7 +60,7 @@ } .checkbox-group-label { - font-size: 12px; + font-size: var(--font-size-12); font-style: italic; } } diff --git a/styles/less/dialog/reroll-dialog/sheet.less b/styles/less/dialog/reroll-dialog/sheet.less index f8687009..71c94d80 100644 --- a/styles/less/dialog/reroll-dialog/sheet.less +++ b/styles/less/dialog/reroll-dialog/sheet.less @@ -37,7 +37,7 @@ display: flex; align-items: center; justify-content: center; - font-size: 22px; + font-size: 1.375rem; opacity: 0.8; &.selected { @@ -99,12 +99,12 @@ &:before, &:after { line-height: 12px; - font-size: 12px; + font-size: var(--font-size-12); } } i { - font-size: 10px; + font-size: var(--font-size-10); } } } diff --git a/styles/less/global/chat.less b/styles/less/global/chat.less index bf29a05c..d2822b1b 100644 --- a/styles/less/global/chat.less +++ b/styles/less/global/chat.less @@ -71,7 +71,7 @@ color: @beige; h4 { - font-size: 16px; + font-size: var(--font-size-16); font-weight: bold; margin-bottom: 0; font-family: @font-subtitle; diff --git a/styles/less/global/dialog.less b/styles/less/global/dialog.less index 42fdb07e..f164b701 100644 --- a/styles/less/global/dialog.less +++ b/styles/less/global/dialog.less @@ -50,7 +50,7 @@ .formula-label { font-style: normal; font-weight: 500; - font-size: 14px; + font-size: var(--font-size-14); line-height: 17px; white-space: nowrap; color: light-dark(@dark, @beige); diff --git a/styles/less/global/elements.less b/styles/less/global/elements.less index 2f4912c5..397420b2 100755 --- a/styles/less/global/elements.less +++ b/styles/less/global/elements.less @@ -165,7 +165,7 @@ z-index: 1; .remove { - font-size: 10px; + font-size: var(--font-size-10); } } } @@ -400,7 +400,7 @@ display: flex; flex-direction: column; white-space: nowrap; - font-size: 14px; + font-size: var(--font-size-14); font-weight: 400; &.modifier-label { @@ -527,7 +527,7 @@ font-family: @font-body; margin-top: 4px; color: light-dark(#14142599, #efe6d850); - font-size: 12px; + font-size: var(--font-size-12); padding-left: 3px; } } @@ -541,7 +541,7 @@ text-align: center; } .title-hint { - font-size: 12px; + font-size: var(--font-size-12); font-variant: small-caps; text-align: center; } @@ -605,7 +605,7 @@ align-items: center; label { - font-size: 16px; + font-size: var(--font-size-16); } .form-fields { @@ -776,7 +776,7 @@ .preview-text-container { padding: 10px 0; text-align: center; - font-size: 16px; + font-size: var(--font-size-16); color: light-dark(@beige, @dark); background-image: url(../assets/parchments/dh-parchment-light.png); border-radius: 0 0 4px 4px; @@ -799,14 +799,14 @@ justify-content: center; .preview-add-icon { - font-size: 40px; + font-size: var(--font-size-40); color: light-dark(@dark-blue-50, @beige-50); } .preview-empty-subtext { position: absolute; bottom: 5%; - font-size: 10px; + font-size: var(--font-size-10); font-variant: small-caps; text-align: center; font-style: italic; @@ -821,7 +821,7 @@ width: 54px; border-radius: 50%; border: 2px solid; - font-size: 48px; + font-size: var(--font-size-48); display: flex; align-items: center; justify-content: center; diff --git a/styles/less/global/inventory-item.less b/styles/less/global/inventory-item.less index d63c658e..e221f4e7 100644 --- a/styles/less/global/inventory-item.less +++ b/styles/less/global/inventory-item.less @@ -105,7 +105,7 @@ align-self: center; .item-name { - font-size: 14px; + font-size: var(--font-size-14); .expanded-icon { display: none; @@ -121,9 +121,10 @@ .label { display: flex; flex-direction: row; - justify-content: center; align-items: center; - font-size: 12px; + font-size: var(--font-size-12); + flex-wrap: wrap; + justify-content: start; } .tag { @@ -179,18 +180,18 @@ overflow: hidden; h1 { - font-size: 32px; + font-size: var(--font-size-32); } h2 { - font-size: 28px; + font-size: var(--font-size-28); font-weight: 600; } h3 { - font-size: 20px; + font-size: var(--font-size-20); font-weight: 600; } h4 { - font-size: 16px; + font-size: var(--font-size-16); color: @beige; font-weight: 600; } @@ -231,7 +232,7 @@ label { color: light-dark(white, black); filter: drop-shadow(0 0 1px light-dark(@dark-blue, @golden)); - font-size: 18px; + font-size: var(--font-size-18); } img { @@ -243,7 +244,7 @@ text-shadow: 0 0 3px white; filter: drop-shadow(0 1px white); color: black; - font-size: 26px; + font-size: 1.625rem; } } } @@ -310,7 +311,7 @@ .card-name { font-style: normal; font-weight: 400; - font-size: 12px; + font-size: var(--font-size-12); line-height: 15px; color: @beige; @@ -351,7 +352,7 @@ gap: 4px; .resource-edit { - font-size: 14px; + font-size: var(--font-size-14); } } @@ -363,7 +364,7 @@ i { flex: none; - font-size: 14px; + font-size: var(--font-size-14); } input { @@ -383,7 +384,7 @@ color: light-dark(white, black); filter: drop-shadow(0 0 1px light-dark(@dark-blue, @golden)); z-index: 2; - font-size: 18px; + font-size: var(--font-size-18); cursor: pointer; } @@ -397,7 +398,7 @@ text-shadow: 0 0 3px white; filter: drop-shadow(0 1px white); color: black; - font-size: 26px; + font-size: 1.625rem; } } } diff --git a/styles/less/global/item-header.less b/styles/less/global/item-header.less index 7b2c907f..073762e0 100755 --- a/styles/less/global/item-header.less +++ b/styles/less/global/item-header.less @@ -35,7 +35,7 @@ width: 80%; .item-name input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: center; width: 90%; @@ -103,7 +103,7 @@ transition: all 0.3s ease; .recall-label { - font-size: 14px; + font-size: var(--font-size-14); opacity: 0; margin-right: 0.3rem; transition: all 0.3s ease; @@ -141,7 +141,7 @@ .item-name { input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: center; width: 90%; diff --git a/styles/less/global/prose-mirror.less b/styles/less/global/prose-mirror.less index cb7933a4..506fb8b7 100644 --- a/styles/less/global/prose-mirror.less +++ b/styles/less/global/prose-mirror.less @@ -12,18 +12,18 @@ scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; h1 { - font-size: 32px; + font-size: var(--font-size-32); } h2 { - font-size: 28px; + font-size: var(--font-size-28); font-weight: 600; } h3 { - font-size: 20px; + font-size: var(--font-size-20); font-weight: 600; } h4 { - font-size: 16px; + font-size: var(--font-size-16); color: @beige; font-weight: 600; } diff --git a/styles/less/sheets-settings/character-settings/sheet.less b/styles/less/sheets-settings/character-settings/sheet.less index 78bbf9c5..f0c7c94e 100644 --- a/styles/less/sheets-settings/character-settings/sheet.less +++ b/styles/less/sheets-settings/character-settings/sheet.less @@ -33,7 +33,7 @@ div { filter: drop-shadow(0 0 3px black); text-shadow: 0 0 3px black; - font-size: 12px; + font-size: var(--font-size-12); } input { diff --git a/styles/less/sheets-settings/header.less b/styles/less/sheets-settings/header.less index 6ac2663f..82f3c488 100644 --- a/styles/less/sheets-settings/header.less +++ b/styles/less/sheets-settings/header.less @@ -10,7 +10,7 @@ font-family: @font-subtitle; font-style: normal; font-weight: 700; - font-size: 24px; + font-size: var(--font-size-24); margin: 0; text-align: center; color: light-dark(@dark-blue, @golden); diff --git a/styles/less/sheets/actors/adversary/header.less b/styles/less/sheets/actors/adversary/header.less index 22a769ae..d4a7812e 100644 --- a/styles/less/sheets/actors/adversary/header.less +++ b/styles/less/sheets/actors/adversary/header.less @@ -18,7 +18,7 @@ flex: 1; input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: start; border: 1px solid transparent; @@ -42,7 +42,7 @@ justify-content: center; align-items: center; padding: 3px 5px; - font-size: 12px; + font-size: var(--font-size-12); font: @font-body; background: light-dark(@dark-15, @beige-15); @@ -55,7 +55,7 @@ flex-direction: row; justify-content: center; align-items: center; - font-size: 12px; + font-size: var(--font-size-12); } } diff --git a/styles/less/sheets/actors/adversary/sidebar.less b/styles/less/sheets/actors/adversary/sidebar.less index 70cd92ed..ab15fa46 100644 --- a/styles/less/sheets/actors/adversary/sidebar.less +++ b/styles/less/sheets/actors/adversary/sidebar.less @@ -74,7 +74,7 @@ height: 30px; h4 { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -255,7 +255,7 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } @@ -295,7 +295,7 @@ align-items: center; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } .items-list { @@ -315,7 +315,7 @@ align-items: center; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } @@ -337,7 +337,7 @@ .experience-name { width: 180px; text-align: start; - font-size: 14px; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } } @@ -345,7 +345,7 @@ .experience-value { height: 25px; width: 35px; - font-size: 14px; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); align-content: center; text-align: center; diff --git a/styles/less/sheets/actors/character/header.less b/styles/less/sheets/actors/character/header.less index 2d261a6a..80089cf7 100644 --- a/styles/less/sheets/actors/character/header.less +++ b/styles/less/sheets/actors/character/header.less @@ -41,7 +41,7 @@ flex: 1; input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: start; border: 1px solid transparent; @@ -72,7 +72,7 @@ .level-button { color: light-dark(@dark, @beige); - font-size: 18px; + font-size: var(--font-size-18); line-height: 1; min-height: unset; height: min-content; @@ -97,7 +97,7 @@ justify-content: space-between; padding: 5px 0; margin-bottom: 10px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@dark-blue, @golden); .missing-header-feature { @@ -158,7 +158,7 @@ height: 30px; h4 { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -170,7 +170,7 @@ gap: 5px; .label { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -205,7 +205,7 @@ align-items: center; padding-top: 5px; color: light-dark(@dark-blue, @golden); - font-size: 14px; + font-size: var(--font-size-14); font-weight: 600; align-items: center; justify-content: center; @@ -213,14 +213,14 @@ i { line-height: 17px; - font-size: 10px; + font-size: var(--font-size-10); } } .trait-value { font-style: normal; font-weight: 400; - font-size: 20px; + font-size: var(--font-size-20); text-align: center; } } diff --git a/styles/less/sheets/actors/character/inventory.less b/styles/less/sheets/actors/character/inventory.less index 0870c0c3..9fd48921 100644 --- a/styles/less/sheets/actors/character/inventory.less +++ b/styles/less/sheets/actors/character/inventory.less @@ -41,7 +41,7 @@ height: 32px; position: absolute; right: 20px; - font-size: 16px; + font-size: var(--font-size-16); z-index: 1; color: light-dark(@dark-blue-50, @beige-50); } diff --git a/styles/less/sheets/actors/character/loadout.less b/styles/less/sheets/actors/character/loadout.less index 35dffb79..08246efb 100644 --- a/styles/less/sheets/actors/character/loadout.less +++ b/styles/less/sheets/actors/character/loadout.less @@ -41,7 +41,7 @@ height: 32px; position: absolute; right: 20px; - font-size: 16px; + font-size: var(--font-size-16); z-index: 1; color: light-dark(@dark-blue-50, @beige-50); } diff --git a/styles/less/sheets/actors/character/sidebar.less b/styles/less/sheets/actors/character/sidebar.less index 3ff8576d..3d244cdd 100644 --- a/styles/less/sheets/actors/character/sidebar.less +++ b/styles/less/sheets/actors/character/sidebar.less @@ -89,7 +89,7 @@ transition: all 0.3s ease; .spellcast-label { - font-size: 14px; + font-size: var(--font-size-14); opacity: 0; margin-right: 0.3rem; transition: all 0.3s ease; @@ -258,7 +258,7 @@ text-align: center; line-height: 18px; color: light-dark(@beige, @dark-blue); - font-size: 12px; + font-size: var(--font-size-12); } } .status-value { @@ -402,7 +402,7 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } @@ -424,7 +424,7 @@ height: 30px; h4 { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -490,7 +490,7 @@ .experience-value { height: 25px; width: 35px; - font-size: 14px; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); align-content: center; text-align: center; diff --git a/styles/less/sheets/actors/companion/details.less b/styles/less/sheets/actors/companion/details.less index 9823825f..2df14b23 100644 --- a/styles/less/sheets/actors/companion/details.less +++ b/styles/less/sheets/actors/companion/details.less @@ -16,7 +16,7 @@ width: 100%; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } .items-list { @@ -58,7 +58,7 @@ .experience-name { width: 180px; text-align: start; - font-size: 14px; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } } @@ -66,7 +66,7 @@ .experience-value { height: 25px; width: 35px; - font-size: 14px; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); align-content: center; text-align: center; diff --git a/styles/less/sheets/actors/companion/header.less b/styles/less/sheets/actors/companion/header.less index 240f9df8..b85a1819 100644 --- a/styles/less/sheets/actors/companion/header.less +++ b/styles/less/sheets/actors/companion/header.less @@ -24,7 +24,7 @@ margin-bottom: -30px; input[type='text'] { - font-size: 24px; + font-size: var(--font-size-24); height: 32px; text-align: center; border: 1px solid transparent; @@ -78,7 +78,7 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } @@ -209,7 +209,7 @@ .level-button { color: light-dark(@dark, @beige); - font-size: 18px; + font-size: var(--font-size-18); line-height: 1; min-height: unset; height: min-content; diff --git a/styles/less/sheets/actors/environment/header.less b/styles/less/sheets/actors/environment/header.less index 0ac361a1..670f6c92 100644 --- a/styles/less/sheets/actors/environment/header.less +++ b/styles/less/sheets/actors/environment/header.less @@ -39,7 +39,7 @@ justify-content: center; align-items: center; padding: 3px 5px; - font-size: 12px; + font-size: var(--font-size-12); font: @font-body; background: light-dark(@dark-15, @beige-15); @@ -52,7 +52,7 @@ flex-direction: row; justify-content: center; align-items: center; - font-size: 12px; + font-size: var(--font-size-12); } } @@ -100,7 +100,7 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } @@ -108,7 +108,7 @@ .item-name { input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: start; transition: all 0.3s ease; diff --git a/styles/less/ui/chat/ability-use.less b/styles/less/ui/chat/ability-use.less index 58897697..d313638f 100644 --- a/styles/less/ui/chat/ability-use.less +++ b/styles/less/ui/chat/ability-use.less @@ -87,7 +87,7 @@ gap: 5px; .title { - font-size: 20px; + font-size: var(--font-size-20); color: @golden; font-weight: 700; } @@ -103,7 +103,7 @@ justify-content: center; align-items: center; padding: 3px 5px; - font-size: 12px; + font-size: var(--font-size-12); background: @beige-15; border: 1px solid @beige; diff --git a/styles/less/ui/chat/action.less b/styles/less/ui/chat/action.less index 82cc3210..a849315a 100644 --- a/styles/less/ui/chat/action.less +++ b/styles/less/ui/chat/action.less @@ -81,13 +81,13 @@ gap: 5px; .title { - font-size: 20px; + font-size: var(--font-size-20); color: @golden; font-weight: 700; } .label { - font-size: 12px; + font-size: var(--font-size-12); color: @beige; margin: 0; } diff --git a/styles/less/ui/chat/chat.less b/styles/less/ui/chat/chat.less index c6ed95ca..9eb35cd6 100644 --- a/styles/less/ui/chat/chat.less +++ b/styles/less/ui/chat/chat.less @@ -49,7 +49,7 @@ &.resource-roll { .reroll-message { text-align: center; - font-size: 18px; + font-size: var(--font-size-18); margin-bottom: 0; } } @@ -191,7 +191,7 @@ position: absolute; top: 0; right: 0; - font-size: 10px; + font-size: var(--font-size-10); z-index: 2; filter: drop-shadow(0 0 3px black); } diff --git a/styles/less/ui/chat/downtime.less b/styles/less/ui/chat/downtime.less index 8b898c43..ca29e85f 100644 --- a/styles/less/ui/chat/downtime.less +++ b/styles/less/ui/chat/downtime.less @@ -82,12 +82,12 @@ .header-label { padding: 8px; .title { - font-size: 16px; + font-size: var(--font-size-16); color: @golden; font-weight: 700; } .label { - font-size: 12px; + font-size: var(--font-size-12); color: @beige; margin: 0; } diff --git a/styles/less/ui/combat-sidebar/token-actions.less b/styles/less/ui/combat-sidebar/token-actions.less index 6fc84d29..41fb38ab 100644 --- a/styles/less/ui/combat-sidebar/token-actions.less +++ b/styles/less/ui/combat-sidebar/token-actions.less @@ -17,7 +17,7 @@ display: flex; align-items: center; justify-content: center; - font-size: 10px; + font-size: var(--font-size-10); padding: 8px; --button-size: 0; diff --git a/styles/less/ui/countdown/sheet.less b/styles/less/ui/countdown/sheet.less index 1692773e..0ce7c4af 100644 --- a/styles/less/ui/countdown/sheet.less +++ b/styles/less/ui/countdown/sheet.less @@ -47,7 +47,7 @@ position: absolute; top: 8px; right: 8px; - font-size: 18px; + font-size: var(--font-size-18); } .countdown-container { diff --git a/styles/less/ui/item-browser/item-browser.less b/styles/less/ui/item-browser/item-browser.less index 7be45b8c..d891e73d 100644 --- a/styles/less/ui/item-browser/item-browser.less +++ b/styles/less/ui/item-browser/item-browser.less @@ -161,7 +161,7 @@ height: 32px; position: absolute; right: 20px; - font-size: 16px; + font-size: var(--font-size-16); z-index: 1; color: light-dark(@dark-blue-50, @beige-50); } @@ -304,18 +304,18 @@ gap: 5px; h1 { - font-size: 32px; + font-size: var(--font-size-32); } h2 { - font-size: 28px; + font-size: var(--font-size-28); font-weight: 600; } h3 { - font-size: 20px; + font-size: var(--font-size-20); font-weight: 600; } h4 { - font-size: 16px; + font-size: var(--font-size-16); color: @beige; font-weight: 600; } diff --git a/styles/less/ui/settings/homebrew-settings/domains.less b/styles/less/ui/settings/homebrew-settings/domains.less index c2ba3ef7..84e013c2 100644 --- a/styles/less/ui/settings/homebrew-settings/domains.less +++ b/styles/less/ui/settings/homebrew-settings/domains.less @@ -44,7 +44,7 @@ border-radius: 50%; width: 24px; height: 24px; - font-size: 12px; + font-size: var(--font-size-12); } } } @@ -118,7 +118,7 @@ button { border-radius: 50%; - font-size: 12px; + font-size: var(--font-size-12); height: 24px; width: 24px; margin-right: 4px; diff --git a/styles/less/ui/settings/settings.less b/styles/less/ui/settings/settings.less index 8062ff73..cee5475f 100644 --- a/styles/less/ui/settings/settings.less +++ b/styles/less/ui/settings/settings.less @@ -53,7 +53,7 @@ } i { - font-size: 18px; + font-size: var(--font-size-18); } } } @@ -80,7 +80,7 @@ width: 80%; .item-name input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: center; width: 90%; @@ -117,7 +117,7 @@ label { position: absolute; top: -7px; - font-size: 12px; + font-size: var(--font-size-12); font-variant: petite-caps; z-index: 2; } diff --git a/styles/less/utils/mixin.less b/styles/less/utils/mixin.less index 2f1aa907..49e97a1f 100644 --- a/styles/less/utils/mixin.less +++ b/styles/less/utils/mixin.less @@ -30,7 +30,7 @@ align-items: center; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } @@ -70,7 +70,7 @@ h4 { font-family: @font-body; - font-size: 14px; + font-size: var(--font-size-14); border: none; font-weight: 700; margin: 0; @@ -80,7 +80,7 @@ h5 { font-family: @font-body; - font-size: 14px; + font-size: var(--font-size-14); margin: 0; font-weight: normal; } diff --git a/styles/less/ux/autocomplete/autocomplete.less b/styles/less/ux/autocomplete/autocomplete.less index 868b4f43..808a8972 100644 --- a/styles/less/ux/autocomplete/autocomplete.less +++ b/styles/less/ux/autocomplete/autocomplete.less @@ -22,12 +22,12 @@ .group { font-weight: bold; - font-size: 14px; + font-size: var(--font-size-14); padding-left: 8px; } li[role='option'] { - font-size: 14px; + font-size: var(--font-size-14); padding-left: 10px; cursor: pointer; diff --git a/styles/less/ux/tooltip/tooltip.less b/styles/less/ux/tooltip/tooltip.less index 43f47da5..1d7079ee 100644 --- a/styles/less/ux/tooltip/tooltip.less +++ b/styles/less/ux/tooltip/tooltip.less @@ -85,7 +85,7 @@ gap: 8px; .tooltip-chip { - font-size: 18px; + font-size: var(--font-size-18); padding: 2px 4px; border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; diff --git a/templates/sheets/items/weapon/header.hbs b/templates/sheets/items/weapon/header.hbs index ee0198ba..349a9516 100644 --- a/templates/sheets/items/weapon/header.hbs +++ b/templates/sheets/items/weapon/header.hbs @@ -14,7 +14,11 @@ - {{localize (concat 'DAGGERHEART.CONFIG.Range.' source.system.attack.range '.name')}} - - {{source.system.attack.damage.parts.0.value.dice}}{{#if source.system.attack.damage.parts.0.value.bonus}} + {{source.system.attack.damage.parts.0.value.bonus}}{{/if}} + {{#if source.system.attack.damage.parts.0.value.custom.enabled}} + {{localize "DAGGERHEART.GENERAL.custom"}} + {{else}} + {{source.system.attack.damage.parts.0.value.dice}}{{#if source.system.attack.damage.parts.0.value.bonus}} + {{source.system.attack.damage.parts.0.value.bonus}}{{/if}} + {{/if}} ( {{#each source.system.attack.damage.parts.0.type}} {{localize (concat 'DAGGERHEART.CONFIG.DamageType.' this '.abbreviation')}} diff --git a/templates/sheets/items/weapon/settings.hbs b/templates/sheets/items/weapon/settings.hbs index b2738c75..f9499221 100644 --- a/templates/sheets/items/weapon/settings.hbs +++ b/templates/sheets/items/weapon/settings.hbs @@ -21,10 +21,17 @@ {{#with systemFields.attack.fields.damage.fields.parts.element.fields as | fields | }} {{#with (lookup ../document.system.attack.damage.parts 0) as | source | }} {{localize "DAGGERHEART.GENERAL.damage"}} - {{localize "DAGGERHEART.GENERAL.Dice.single"}} - {{formInput fields.value.fields.dice value=source.value.dice name="system.attack.damage.parts.0.value.dice"}} - {{localize "DAGGERHEART.GENERAL.bonus"}} - {{formInput fields.value.fields.bonus value=source.value.bonus name="system.attack.damage.parts.0.value.bonus" localize=true}} + {{localize "DAGGERHEART.ACTIONS.Config.general.customFormula"}} + {{formInput fields.value.fields.custom.fields.enabled value=source.value.custom.enabled name="system.attack.damage.parts.0.value.custom.enabled"}} + {{#if source.value.custom.enabled}} + {{localize "DAGGERHEART.ACTIONS.Config.general.formula"}} + {{formInput fields.value.fields.custom.fields.formula value=source.value.custom.formula name="system.attack.damage.parts.0.value.custom.formula"}} + {{else}} + {{localize "DAGGERHEART.GENERAL.Dice.single"}} + {{formInput fields.value.fields.dice value=source.value.dice name="system.attack.damage.parts.0.value.dice"}} + {{localize "DAGGERHEART.GENERAL.bonus"}} + {{formInput fields.value.fields.bonus value=source.value.bonus name="system.attack.damage.parts.0.value.bonus" localize=true}} + {{/if}} {{localize "DAGGERHEART.GENERAL.type"}} {{formInput fields.type value=source.type name="system.attack.damage.parts.0.type" localize=true}} {{localize "DAGGERHEART.CONFIG.DamageType.direct.name"}}