From 23b8363dd21cb0e48d76022ca8cdff3862d57498 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Thu, 31 Jul 2025 03:24:26 +0200 Subject: [PATCH 01/13] [Fix] Fixed Resources (#485) * Fixed DiceValues placement in InventoryItemV2. Fixed parsing of ITEM.@ paths * Restored simple view --- daggerheart.mjs | 4 +-- module/helpers/utils.mjs | 4 +-- .../global/partials/inventory-item-V2.hbs | 28 +++++++++---------- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/daggerheart.mjs b/daggerheart.mjs index 0d9d5ae1..1366dc60 100644 --- a/daggerheart.mjs +++ b/daggerheart.mjs @@ -240,12 +240,12 @@ Hooks.on('moveToken', async (movedToken, data) => { const effectsAutomation = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation).effects; if (!effectsAutomation.rangeDependent) return; - const rangeDependantEffects = movedToken.actor.effects.filter(effect => effect.system.rangeDependence.enabled); + const rangeDependantEffects = movedToken.actor.effects.filter(effect => effect.system.rangeDependence?.enabled); const updateEffects = async (disposition, token, effects, effectUpdates) => { const rangeMeasurement = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.RangeMeasurement); - for (let effect of effects.filter(x => x.system.rangeDependence.enabled)) { + for (let effect of effects.filter(x => x.system.rangeDependence?.enabled)) { const { target, range, type } = effect.system.rangeDependence; if ((target === 'friendly' && disposition !== 1) || (target === 'hostile' && disposition !== -1)) return false; diff --git a/module/helpers/utils.mjs b/module/helpers/utils.mjs index 03dcb32c..66e743a3 100644 --- a/module/helpers/utils.mjs +++ b/module/helpers/utils.mjs @@ -307,8 +307,8 @@ export function updateLinkedItemApps(options, sheet) { export const itemAbleRollParse = (value, actor, item) => { if (!value) return value; - const isItemTarget = value.toLowerCase().replace('item.@', '@'); - const slicedValue = isItemTarget ? value.slice(5) : value; + const isItemTarget = value.toLowerCase().includes('item.@'); + const slicedValue = isItemTarget ? value.replaceAll(/item\.@/gi, '@') : value; try { return Roll.replaceFormulaData(slicedValue, isItemTarget ? item : actor); } catch (_) { diff --git a/templates/sheets/global/partials/inventory-item-V2.hbs b/templates/sheets/global/partials/inventory-item-V2.hbs index 46d63861..a9eb6e3b 100644 --- a/templates/sheets/global/partials/inventory-item-V2.hbs +++ b/templates/sheets/global/partials/inventory-item-V2.hbs @@ -241,19 +241,19 @@ Parameters: {{#unless hideDescription}}
{{/unless}} - {{!-- Dice Resource --}} - {{#if (and (not hideResources) (eq item.system.resource.type 'diceValue'))}} - {{> "systems/daggerheart/templates/sheets/global/partials/item-resource.hbs"}} - {{/if}} - {{!-- Actions Buttons --}} - {{#if (and showActions (eq item.type 'feature'))}} - - {{/if}} + {{!-- Dice Resource --}} + {{#if (and (not hideResources) (eq item.system.resource.type 'diceValue'))}} + {{> "systems/daggerheart/templates/sheets/global/partials/item-resource.hbs"}} + {{/if}} + {{!-- Actions Buttons --}} + {{#if (and showActions (eq item.type 'feature'))}} + + {{/if}} From bb9036ee7a6b218f0b3ac69d612aec2976328c0f Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Thu, 31 Jul 2025 03:25:09 +0200 Subject: [PATCH 02/13] BeastformAction now respects and handles costs (#484) --- lang/en.json | 3 ++- module/data/action/baseAction.mjs | 2 +- module/data/action/beastformAction.mjs | 12 +++++++++++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/lang/en.json b/lang/en.json index efe04425..8846f995 100755 --- a/lang/en.json +++ b/lang/en.json @@ -2225,7 +2225,8 @@ "beastformToManyAdvantages": "You cannot select any more advantages.", "beastformToManyFeatures": "You cannot select any more features.", "beastformEquipWeapon": "You cannot use weapons while in a Beastform.", - "loadoutMaxReached": "You already have {max} cards in your loadout. Move atleast one to your vault before adding a new one." + "loadoutMaxReached": "You already have {max} cards in your loadout. Move atleast one to your vault before adding a new one.", + "insufficientResources": "You have insufficient resources" }, "Tooltip": { "disableEffect": "Disable Effect", diff --git a/module/data/action/baseAction.mjs b/module/data/action/baseAction.mjs index 52b87dec..5114fa61 100644 --- a/module/data/action/baseAction.mjs +++ b/module/data/action/baseAction.mjs @@ -224,7 +224,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel keyIsID: resource.keyIsID }; }); - console.log(resources); + await this.actor.modifyResource(resources); if (config.uses?.enabled) this.update({ 'uses.value': this.uses.value + 1 }); } diff --git a/module/data/action/beastformAction.mjs b/module/data/action/beastformAction.mjs index ee5f3c6a..836024ff 100644 --- a/module/data/action/beastformAction.mjs +++ b/module/data/action/beastformAction.mjs @@ -4,15 +4,25 @@ import DHBaseAction from './baseAction.mjs'; export default class DhBeastformAction extends DHBaseAction { static extraSchemas = [...super.extraSchemas, 'beastform']; - async use(_event, ...args) { + async use(event, ...args) { const beastformConfig = this.prepareBeastformConfig(); const abort = await this.handleActiveTransformations(); if (abort) return; + const calcCosts = game.system.api.fields.ActionFields.CostField.calcCosts.call(this, this.cost); + const hasCost = game.system.api.fields.ActionFields.CostField.hasCost.call(this, calcCosts); + if (!hasCost) { + ui.notifications.warn(game.i18n.localize('DAGGERHEART.UI.Notifications.insufficientResources')); + return; + } + const { selected, evolved, hybrid } = await BeastformDialog.configure(beastformConfig, this.item); if (!selected) return; + const result = await super.use(event, args); + if (!result) return; + await this.transform(selected, evolved, hybrid); } From 243630878b8de59427cece4d82b92a897d1fc354 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Thu, 31 Jul 2025 03:26:42 +0200 Subject: [PATCH 03/13] Added confirmation before overwriting your LDB with the tool command (#482) --- package-lock.json | 6 ++++ package.json | 1 + tools/pullYMLtoLDB.mjs | 64 +++++++++++++++++++++++++++++------------- 3 files changed, 51 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index 864d027c..35dab92f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "autocompleter": "^9.3.2", "gulp": "^5.0.0", "gulp-less": "^5.0.0", + "readline": "^1.3.0", "rollup": "^4.40.0" }, "devDependencies": { @@ -4263,6 +4264,11 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + }, "node_modules/rechoir": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", diff --git a/package.json b/package.json index a7dd69b9..af5adfd6 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "build": "npm run rollup && npm run gulp", "rollup": "rollup -c", "gulp": "gulp less", + "readline": "^1.3.0", "pushLDBtoYML": "node ./tools/pushLDBtoYML.mjs", "pullYMLtoLDB": "node ./tools/pullYMLtoLDB.mjs", "createSymlink": "node ./tools/create-symlink.mjs" diff --git a/tools/pullYMLtoLDB.mjs b/tools/pullYMLtoLDB.mjs index 6c2b8c79..52b0f0da 100644 --- a/tools/pullYMLtoLDB.mjs +++ b/tools/pullYMLtoLDB.mjs @@ -1,31 +1,55 @@ import { compilePack } from '@foundryvtt/foundryvtt-cli'; +import readline from 'node:readline/promises'; import { promises as fs } from 'fs'; const MODULE_ID = process.cwd(); const yaml = false; -const packs = await deepGetDirectories('./packs'); -console.log(packs); -for (const pack of packs) { - if (pack === '.gitattributes') continue; - console.log('Packing ' + pack); - await compilePack(`${MODULE_ID}/src/${pack}`, `${MODULE_ID}/${pack}`, { yaml }); +const rl = readline.createInterface({ + input: process.stdin, + output: process.stdout +}); + +const answer = await rl.question( + 'You are about to overwrite your current database with the saved packs/json. Write "Overwrite" if you are sure. ', + function (answer) { + rl.close(); + return answer; + } +); + +if (answer.toLowerCase() === 'overwrite') { + await pullToLDB(); +} else { + console.log('Canceled'); } -async function deepGetDirectories(distPath) { - const dirr = await fs.readdir('src/' + distPath); - const dirrsWithSub = []; - for (let file of dirr) { - const stat = await fs.stat('src/' + distPath + '/' + file); - if (stat.isDirectory()) { - const deeper = await deepGetDirectories(distPath + '/' + file); - if (deeper.length > 0) { - dirrsWithSub.push(...deeper); - } else { - dirrsWithSub.push(distPath + '/' + file); - } - } +process.exit(); + +async function pullToLDB() { + const packs = await deepGetDirectories('./packs'); + console.log(packs); + for (const pack of packs) { + if (pack === '.gitattributes') continue; + console.log('Packing ' + pack); + await compilePack(`${MODULE_ID}/src/${pack}`, `${MODULE_ID}/${pack}`, { yaml }); } - return dirrsWithSub; + async function deepGetDirectories(distPath) { + const dirr = await fs.readdir('src/' + distPath); + const dirrsWithSub = []; + for (let file of dirr) { + const stat = await fs.stat('src/' + distPath + '/' + file); + if (stat.isDirectory()) { + const deeper = await deepGetDirectories(distPath + '/' + file); + if (deeper.length > 0) { + dirrsWithSub.push(...deeper); + } else { + dirrsWithSub.push(distPath + '/' + file); + } + } + } + + return dirrsWithSub; + } } From e168e3e7ec61887280e604d17531adacf46a133d Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Thu, 31 Jul 2025 03:27:48 +0200 Subject: [PATCH 04/13] [Feature] 460 - Reaction Rolls (#481) * Added a toggle in D20RollDialog for ReactionRolls * DualityRollEnrichment can now use reaction * Added flavor for DualityRollEnrichment --- daggerheart.mjs | 18 ++++++++-- lang/en.json | 3 +- module/applications/dialogs/d20RollDialog.mjs | 17 +++++++++ module/dice/dhRoll.mjs | 1 + module/enrichers/DualityRollEnricher.mjs | 35 ++++++++++--------- module/enrichers/_module.mjs | 8 ++--- module/helpers/utils.mjs | 7 ++-- .../less/dialog/dice-roll/roll-selection.less | 31 ++++++++++++++++ templates/dialogs/dice-roll/header.hbs | 13 ++++--- templates/dialogs/dice-roll/rollSelection.hbs | 1 + 10 files changed, 103 insertions(+), 31 deletions(-) diff --git a/daggerheart.mjs b/daggerheart.mjs index 1366dc60..f939743c 100644 --- a/daggerheart.mjs +++ b/daggerheart.mjs @@ -187,12 +187,15 @@ Hooks.on('renderHandlebarsApplication', (_, element) => { Hooks.on('chatMessage', (_, message) => { if (message.startsWith('/dr')) { - const rollCommand = rollCommandToJSON(message.replace(/\/dr\s?/, '')); - if (!rollCommand) { + const result = rollCommandToJSON(message.replace(/\/dr\s?/, '')); + if (!result) { ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.dualityParsing')); return false; } + const { result: rollCommand, flavor } = result; + + const reaction = rollCommand.reaction; const traitValue = rollCommand.trait?.toLowerCase(); const advantage = rollCommand.advantage ? CONFIG.DH.ACTIONS.advantageState.advantage.value @@ -208,7 +211,16 @@ Hooks.on('chatMessage', (_, message) => { }) : game.i18n.localize('DAGGERHEART.GENERAL.duality'); - enrichedDualityRoll({ traitValue, target, difficulty, title, label: 'test', actionType: null, advantage }); + enrichedDualityRoll({ + reaction, + traitValue, + target, + difficulty, + title, + label: 'test', + actionType: null, + advantage + }); return false; } }); diff --git a/lang/en.json b/lang/en.json index 8846f995..1ccfeac8 100755 --- a/lang/en.json +++ b/lang/en.json @@ -1821,7 +1821,6 @@ "basics": "Basics", "bonus": "Bonus", "burden": "Burden", - "check": "{check} Check", "continue": "Continue", "criticalSuccess": "Critical Success", "damage": "Damage", @@ -1866,6 +1865,7 @@ "proficiency": "Proficiency", "quantity": "Quantity", "range": "Range", + "reactionRoll": "Reaction Roll", "recovery": "Recovery", "reroll": "Reroll", "rerollThing": "Reroll {thing}", @@ -1873,6 +1873,7 @@ "roll": "Roll", "rollAll": "Roll All", "rollDamage": "Roll Damage", + "rollWith": "{roll} Roll", "save": "Save", "scalable": "Scalable", "situationalBonus": "Situational Bonus", diff --git a/module/applications/dialogs/d20RollDialog.mjs b/module/applications/dialogs/d20RollDialog.mjs index 76871b6a..9075c454 100644 --- a/module/applications/dialogs/d20RollDialog.mjs +++ b/module/applications/dialogs/d20RollDialog.mjs @@ -7,6 +7,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio this.roll = roll; this.config = config; this.config.experiences = []; + this.reactionOverride = config.roll.type === 'reaction'; if (config.source?.action) { this.item = config.data.parent.items.get(config.source.item) ?? config.data.parent; @@ -30,6 +31,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio actions: { updateIsAdvantage: this.updateIsAdvantage, selectExperience: this.selectExperience, + toggleReaction: this.toggleReaction, submitRoll: this.submitRoll }, form: { @@ -103,6 +105,9 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio context.isLite = this.config.roll?.lite; context.extraFormula = this.config.extraFormula; context.formula = this.roll.constructFormula(this.config); + + context.showReaction = !context.rollConfig.type && context.rollType === 'DualityRoll'; + context.reactionOverride = this.reactionOverride; } return context; } @@ -141,7 +146,19 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio this.render(); } + static toggleReaction() { + if (this.config.roll) { + this.reactionOverride = !this.reactionOverride; + this.render(); + } + } + static async submitRoll() { + this.config.roll.type = this.reactionOverride + ? CONFIG.DH.ITEM.actionTypes.reaction.id + : this.config.roll.type === CONFIG.DH.ITEM.actionTypes.reaction.id + ? null + : this.config.roll.type; await this.close({ submitted: true }); } diff --git a/module/dice/dhRoll.mjs b/module/dice/dhRoll.mjs index bacaf47b..fcf30be5 100644 --- a/module/dice/dhRoll.mjs +++ b/module/dice/dhRoll.mjs @@ -69,6 +69,7 @@ export default class DHRoll extends Roll { static postEvaluate(roll, config = {}) { return { + type: config.roll.type, total: roll.total, formula: roll.formula, dice: roll.dice.map(d => ({ diff --git a/module/enrichers/DualityRollEnricher.mjs b/module/enrichers/DualityRollEnricher.mjs index 24dd0602..4a6fac23 100644 --- a/module/enrichers/DualityRollEnricher.mjs +++ b/module/enrichers/DualityRollEnricher.mjs @@ -2,22 +2,23 @@ import { abilities } from '../config/actorConfig.mjs'; import { getCommandTarget, rollCommandToJSON } from '../helpers/utils.mjs'; export default function DhDualityRollEnricher(match, _options) { - const roll = rollCommandToJSON(match[1]); + const roll = rollCommandToJSON(match[1], match[0]); if (!roll) return match[0]; - return getDualityMessage(roll); + return getDualityMessage(roll.result, roll.flavor); } -function getDualityMessage(roll) { - const traitLabel = - roll.trait && abilities[roll.trait] - ? game.i18n.format('DAGGERHEART.GENERAL.check', { - check: game.i18n.localize(abilities[roll.trait].label) - }) - : null; +function getDualityMessage(roll, flavor) { + const trait = roll.trait && abilities[roll.trait] ? game.i18n.localize(abilities[roll.trait].label) : null; + const label = + flavor ?? + (roll.trait + ? game.i18n.format('DAGGERHEART.GENERAL.rollWith', { roll: trait }) + : roll.reaction + ? game.i18n.localize('DAGGERHEART.GENERAL.reactionRoll') + : game.i18n.localize('DAGGERHEART.GENERAL.duality')); - const label = traitLabel ?? game.i18n.localize('DAGGERHEART.GENERAL.duality'); - const dataLabel = traitLabel + const dataLabel = trait ? game.i18n.localize(abilities[roll.trait].label) : game.i18n.localize('DAGGERHEART.GENERAL.duality'); @@ -38,6 +39,7 @@ function getDualityMessage(roll) { `; @@ -57,6 +59,7 @@ function getDualityMessage(roll) { export const renderDualityButton = async event => { const button = event.currentTarget, + reaction = button.dataset.reaction === 'true', traitValue = button.dataset.trait?.toLowerCase(), target = getCommandTarget({ allowNull: true }), difficulty = button.dataset.difficulty, @@ -64,12 +67,12 @@ export const renderDualityButton = async event => { await enrichedDualityRoll( { + reaction, traitValue, target, difficulty, title: button.dataset.title, label: button.dataset.label, - actionType: button.dataset.actionType, advantage }, event @@ -77,7 +80,7 @@ export const renderDualityButton = async event => { }; export const enrichedDualityRoll = async ( - { traitValue, target, difficulty, title, label, actionType, advantage }, + { reaction, traitValue, target, difficulty, title, label, advantage }, event ) => { const config = { @@ -88,7 +91,7 @@ export const enrichedDualityRoll = async ( label: label, difficulty: difficulty, advantage, - type: actionType ?? null // Need check, + type: reaction ? 'reaction' : null }, chatMessage: { template: 'systems/daggerheart/templates/ui/chat/duality-roll.hbs' diff --git a/module/enrichers/_module.mjs b/module/enrichers/_module.mjs index abfd8158..3b597dd5 100644 --- a/module/enrichers/_module.mjs +++ b/module/enrichers/_module.mjs @@ -7,19 +7,19 @@ export { DhDamageEnricher, DhDualityRollEnricher, DhEffectEnricher, DhTemplateEn export const enricherConfig = [ { - pattern: /^@Damage\[(.*)\]$/g, + pattern: /^@Damage\[(.*)\]({.*})?$/g, enricher: DhDamageEnricher }, { - pattern: /\[\[\/dr\s?(.*?)\]\]/g, + pattern: /\[\[\/dr\s?(.*?)\]\]({.*})?/g, enricher: DhDualityRollEnricher }, { - pattern: /^@Effect\[(.*)\]$/g, + pattern: /^@Effect\[(.*)\]({.*})?$/g, enricher: DhEffectEnricher }, { - pattern: /^@Template\[(.*)\]$/g, + pattern: /^@Template\[(.*)\]({.*})?$/g, enricher: DhTemplateEnricher } ]; diff --git a/module/helpers/utils.mjs b/module/helpers/utils.mjs index 66e743a3..9d22906c 100644 --- a/module/helpers/utils.mjs +++ b/module/helpers/utils.mjs @@ -5,9 +5,12 @@ export const capitalize = string => { return string.charAt(0).toUpperCase() + string.slice(1); }; -export function rollCommandToJSON(text) { +export function rollCommandToJSON(text, raw) { if (!text) return {}; + const flavorMatch = raw?.match(/{(.*)}$/); + const flavor = flavorMatch ? flavorMatch[1] : null; + // Match key="quoted string" OR key=unquotedValue const PAIR_RE = /(\w+)=("(?:[^"\\]|\\.)*"|\S+)/g; const result = {}; @@ -28,7 +31,7 @@ export function rollCommandToJSON(text) { } result[key] = value; } - return Object.keys(result).length > 0 ? result : null; + return Object.keys(result).length > 0 ? { result, flavor } : null; } export const getCommandTarget = (options = {}) => { diff --git a/styles/less/dialog/dice-roll/roll-selection.less b/styles/less/dialog/dice-roll/roll-selection.less index 4ee2ee1f..d536ee04 100644 --- a/styles/less/dialog/dice-roll/roll-selection.less +++ b/styles/less/dialog/dice-roll/roll-selection.less @@ -9,6 +9,36 @@ } .application.daggerheart.dialog.dh-style.views.roll-selection { + .dialog-header { + display: flex; + justify-content: center; + + h1 { + width: auto; + display: flex; + align-items: center; + gap: 8px; + + .reaction-roll-controller { + width: auto; + opacity: 0.3; + border-radius: 50%; + font-size: 18px; + font-weight: bold; + + &:hover { + opacity: 0.5; + background: light-dark(transparent, @golden); + color: light-dark(@dark-blue, @dark-blue); + } + + &.active { + opacity: 1; + } + } + } + } + .roll-dialog-container { display: flex; flex-direction: column; @@ -16,6 +46,7 @@ max-width: 550px; .dices-section { + position: relative; display: flex; gap: 60px; justify-content: center; diff --git a/templates/dialogs/dice-roll/header.hbs b/templates/dialogs/dice-roll/header.hbs index 462408f6..cea07209 100644 --- a/templates/dialogs/dice-roll/header.hbs +++ b/templates/dialogs/dice-roll/header.hbs @@ -1,7 +1,10 @@A horse-sized insect with digging claws and acidic blood.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784217, + "modifiedTime": 1753922784217, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "aKVLLjMb35om4QbJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Acid Burrower", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!aKVLLjMb35om4QbJ" +} diff --git a/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json b/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json new file mode 100644 index 00000000..5c01258b --- /dev/null +++ b/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json @@ -0,0 +1,186 @@ +{ + "name": "Adult Flickerfly", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 20, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 12, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Collect shiny things, hunt, nest, swoop", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A winged insect the size of a large house with iridescent scales and wings that move too fast to track.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784219, + "modifiedTime": 1753922784219, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "G7jiltRjgvVhZewm", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Adult Flickerfly", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!G7jiltRjgvVhZewm" +} diff --git a/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json b/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json new file mode 100644 index 00000000..9d81e832 --- /dev/null +++ b/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json @@ -0,0 +1,170 @@ +{ + "name": "Apprentice Assassin", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "motivesAndTactics": "Act reckless, kill, prove their worth, show off", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 13, + "tier": 2, + "description": "A young trainee eager to prove themselves.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784220, + "modifiedTime": 1753922784220, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "vNIbYQ4YSzNf0WPE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Apprentice Assassin", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!vNIbYQ4YSzNf0WPE" +} diff --git a/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json b/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json new file mode 100644 index 00000000..255e4052 --- /dev/null +++ b/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json @@ -0,0 +1,186 @@ +{ + "name": "Arch-Necromancer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 21, + "damageThresholds": { + "major": 33, + "severe": 66 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 8, + "isReversed": true + } + }, + "motivesAndTactics": "Corrupt, decay, flee to fight another day, resurrect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A decaying mage adorned in dark, tattered robes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784221, + "modifiedTime": 1753922784221, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "WPEOIGfclNJxWb87", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Arch-Necromancer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!WPEOIGfclNJxWb87" +} diff --git a/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json b/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json new file mode 100644 index 00000000..e23f3832 --- /dev/null +++ b/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json @@ -0,0 +1,185 @@ +{ + "name": "Archer Guard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A tall guard bearing a longbow and quiver with arrows fletched in the settlement’s colors.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784222, + "modifiedTime": 1753922784222, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "JRhrrEg5UroURiAD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Archer Guard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!JRhrrEg5UroURiAD" +} diff --git a/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json b/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json new file mode 100644 index 00000000..ca6de062 --- /dev/null +++ b/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json @@ -0,0 +1,186 @@ +{ + "name": "Archer Squadron", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 16 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Stick together, survive, volley fire", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A group of trained archers bearing massive bows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784223, + "modifiedTime": 1753922784223, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "0ts6CGd93lLqGZI5", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Archer Squadron", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!0ts6CGd93lLqGZI5" +} diff --git a/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json b/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json new file mode 100644 index 00000000..6359da4b --- /dev/null +++ b/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json @@ -0,0 +1,186 @@ +{ + "name": "Assassin Poisoner", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 16 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Anticipate, get paid, kill, taint food and water", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A cunning scoundrel skilled in both poisons and ambushing.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784224, + "modifiedTime": 1753922784224, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "h5RuhzGL17dW5FBT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Assassin Poisoner", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!h5RuhzGL17dW5FBT" +} diff --git a/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json b/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json new file mode 100644 index 00000000..e79a3b03 --- /dev/null +++ b/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json @@ -0,0 +1,185 @@ +{ + "name": "Battle Box", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 10, + "severe": 20 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A cube-shaped construct with a different rune on each of their six sides.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784224, + "modifiedTime": 1753922784224, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dgH3fW9FTYLaIDvS", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Battle Box", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dgH3fW9FTYLaIDvS" +} diff --git a/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json b/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json new file mode 100644 index 00000000..471df7bd --- /dev/null +++ b/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json @@ -0,0 +1,186 @@ +{ + "name": "Bear", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 9, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Climb, defend territory, pummel, track", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large bear with thick fur and powerful claws.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784226, + "modifiedTime": 1753922784226, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "71qKDLKO3CsrNkdy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Bear", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!71qKDLKO3CsrNkdy" +} diff --git a/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json b/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json new file mode 100644 index 00000000..80de6400 --- /dev/null +++ b/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json @@ -0,0 +1,186 @@ +{ + "name": "Bladed Guard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Arrest, close gates, make it through the day, pin down", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An armored guard bearing a sword and shield painted in the settlement’s colors.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784226, + "modifiedTime": 1753922784226, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "B4LZcGuBAHzyVdzy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Bladed Guard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!B4LZcGuBAHzyVdzy" +} diff --git a/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json b/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json new file mode 100644 index 00000000..3ad8ff69 --- /dev/null +++ b/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json @@ -0,0 +1,186 @@ +{ + "name": "Brawny Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Crush, destroy, hail debris, slam", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large corpse, decay-bloated and angry.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784231, + "modifiedTime": 1753922784231, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2UeZ0tEe7AzgSJNd", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Brawny Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2UeZ0tEe7AzgSJNd" +} diff --git a/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json b/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json new file mode 100644 index 00000000..21574d5f --- /dev/null +++ b/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json @@ -0,0 +1,185 @@ +{ + "name": "Cave Ogre", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A massive humanoid who sees all sapient life as food.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784233, + "modifiedTime": 1753922784233, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8Zkqk1jU09nKL2fy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cave Ogre", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8Zkqk1jU09nKL2fy" +} diff --git a/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json b/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json new file mode 100644 index 00000000..b63e637a --- /dev/null +++ b/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json @@ -0,0 +1,186 @@ +{ + "name": "Chaos Skull", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 8, + "severe": 16 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Cackle, consume magic, serve creator", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A floating humanoid skull animated by scintillating magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784233, + "modifiedTime": 1753922784233, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "jDmHqGvzg5wjgmxE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Chaos Skull", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!jDmHqGvzg5wjgmxE" +} diff --git a/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json b/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json new file mode 100644 index 00000000..b35e88fc --- /dev/null +++ b/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json @@ -0,0 +1,169 @@ +{ + "name": "Conscript", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 12, + "tier": 2, + "description": "A poorly trained civilian pressed into war.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784234, + "modifiedTime": 1753922784234, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "99TqczuQipBmaB8i", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Conscript", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!99TqczuQipBmaB8i" +} diff --git a/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json b/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json new file mode 100644 index 00000000..ea4409f1 --- /dev/null +++ b/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json @@ -0,0 +1,186 @@ +{ + "name": "Construct", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Destroy environment, serve creator, smash target, trample groups", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A roughly humanoid being of stone and steel, assembled and animated by magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784236, + "modifiedTime": 1753922784236, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uOP5oT9QzXPlnf3p", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Construct", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uOP5oT9QzXPlnf3p" +} diff --git a/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json b/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json new file mode 100644 index 00000000..af2c3e22 --- /dev/null +++ b/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json @@ -0,0 +1,185 @@ +{ + "name": "Courtesan", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An accomplished manipulator and master of the social arts.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784237, + "modifiedTime": 1753922784237, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ZxWaWPdzFIUPNC62", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Courtesan", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ZxWaWPdzFIUPNC62" +} diff --git a/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json b/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json new file mode 100644 index 00000000..f16cbfec --- /dev/null +++ b/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json @@ -0,0 +1,186 @@ +{ + "name": "Courtier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Discredit, gain favor, maneuver, scheme", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An ambitious and ostentatiously dressed socialite.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784237, + "modifiedTime": 1753922784237, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CBBuEXAlLKFMJdjg", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Courtier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!CBBuEXAlLKFMJdjg" +} diff --git a/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json b/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json new file mode 100644 index 00000000..90c6edc3 --- /dev/null +++ b/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json @@ -0,0 +1,186 @@ +{ + "name": "Cult Adept", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 9, + "severe": 18 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Curry favor, hinder foes, uncover knowledge", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An experienced mage wielding shadow and fear.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784239, + "modifiedTime": 1753922784239, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "0NxCSugvKQ4W8OYZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Adept", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!0NxCSugvKQ4W8OYZ" +} diff --git a/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json b/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json new file mode 100644 index 00000000..af010009 --- /dev/null +++ b/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json @@ -0,0 +1,186 @@ +{ + "name": "Cult Fang", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 9, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Capture sacrifices, isolate prey, rise in the ranks", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A professional killer-turned-cultist.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784239, + "modifiedTime": 1753922784239, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "tyBOpLfigAhI9bU3", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Fang", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!tyBOpLfigAhI9bU3" +} diff --git a/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json b/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json new file mode 100644 index 00000000..a8375235 --- /dev/null +++ b/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json @@ -0,0 +1,170 @@ +{ + "name": "Cult Initiate", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "motivesAndTactics": "Follow orders, gain power, seek forbidden knowledge", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 13, + "tier": 2, + "description": "A low-ranking cultist in simple robes, eager to gain power.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784240, + "modifiedTime": 1753922784240, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "zx99sOGTXicP4SSD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Initiate", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!zx99sOGTXicP4SSD" +} diff --git a/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json b/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json new file mode 100644 index 00000000..9f3b146d --- /dev/null +++ b/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json @@ -0,0 +1,186 @@ +{ + "name": "Deeproot Defender", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 8, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, grab, protect, pummel", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A burly vegetable-person with grasping vines.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784246, + "modifiedTime": 1753922784246, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "9x2xY9zwc3xzbXo5", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Deeproot Defender", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!9x2xY9zwc3xzbXo5" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json b/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json new file mode 100644 index 00000000..24e359bd --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Avarice", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 15, + "severe": 29 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, fuel greed, sow dissent", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A regal cloaked monstrosity with circular horns adorned with treasure.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784247, + "modifiedTime": 1753922784247, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "pnyjIGxxvurcWmTv", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Avarice", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!pnyjIGxxvurcWmTv" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json b/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json new file mode 100644 index 00000000..2a09f010 --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Despair", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 18, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Make fear contagious, stick to the shadows, undermine resolve", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A cloaked demon-creature with long limbs, seeping shadows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784248, + "modifiedTime": 1753922784248, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "kE4dfhqmIQpNd44e", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Despair", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!kE4dfhqmIQpNd44e" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json b/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json new file mode 100644 index 00000000..6bf515d8 --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Hubris", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 18, + "damageThresholds": { + "major": 18, + "severe": 36 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Condescend, declare premature victory, prove superiority", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A perfectly beautiful and infinitely cruel demon with a gleaming spear and elegant robes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784249, + "modifiedTime": 1753922784249, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2VN3BftageoTTIzu", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Hubris", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2VN3BftageoTTIzu" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json b/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json new file mode 100644 index 00000000..61c5621a --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Jealousy", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 17, + "severe": 30 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Join in on others’ success, take what belongs to others, hold grudges", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "fickle creature of spindly limbs and insatiable desires.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784249, + "modifiedTime": 1753922784249, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "SxSOkM4bcVOFyjbo", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Jealousy", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!SxSOkM4bcVOFyjbo" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json b/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json new file mode 100644 index 00000000..e5cd0cf0 --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Wrath", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Fuel anger, impress rivals, wreak havoc", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A hulking demon with boulder-sized fists, driven by endless rage.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784252, + "modifiedTime": 1753922784252, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5lphJAgzoqZI3VoG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Wrath", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5lphJAgzoqZI3VoG" +} diff --git a/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json b/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json new file mode 100644 index 00000000..db0de9d2 --- /dev/null +++ b/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json @@ -0,0 +1,185 @@ +{ + "name": "Demonic Hound Pack", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 11, + "severe": 23 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "Unnatural hounds lit from within by hellfire.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784253, + "modifiedTime": 1753922784253, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "NoRZ1PqB8N5wcIw0", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demonic Hound Pack", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!NoRZ1PqB8N5wcIw0" +} diff --git a/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json b/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json new file mode 100644 index 00000000..a7fc4c03 --- /dev/null +++ b/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json @@ -0,0 +1,186 @@ +{ + "name": "Dire Bat", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 16, + "severe": 30 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Dive-bomb, hide, protect leader", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A wide-winged pet endlessly loyal to their vampire owner.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784253, + "modifiedTime": 1753922784253, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "tBWHW00epmMnkawe", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Dire Bat", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!tBWHW00epmMnkawe" +} diff --git a/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json b/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json new file mode 100644 index 00000000..32b29f30 --- /dev/null +++ b/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json @@ -0,0 +1,186 @@ +{ + "name": "Dire Wolf", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Defend territory, harry, protect pack, surround, trail", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large wolf with menacing teeth, seldom encountered alone.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784257, + "modifiedTime": 1753922784257, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wNzeuQLfLUMvgHlQ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Dire Wolf", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!wNzeuQLfLUMvgHlQ" +} diff --git a/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json b/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json new file mode 100644 index 00000000..1ad08162 --- /dev/null +++ b/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json @@ -0,0 +1,186 @@ +{ + "name": "Dryad", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 24, + "severe": 38 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Command, cultivate, drive out, preserve the forest", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A nature spirit in the form of a humanoid tree.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784258, + "modifiedTime": 1753922784258, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wR7cFKrHvRzbzhBT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Dryad", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!wR7cFKrHvRzbzhBT" +} diff --git a/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json b/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json new file mode 100644 index 00000000..aacdeacd --- /dev/null +++ b/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json @@ -0,0 +1,185 @@ +{ + "name": "Electric Eels", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 10, + "severe": 20 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A swarm of eels that encircle and electrocute.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784258, + "modifiedTime": 1753922784258, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "TLzY1nDw0Bu9Ud40", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Electric Eels", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!TLzY1nDw0Bu9Ud40" +} diff --git a/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json b/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json new file mode 100644 index 00000000..2d30137f --- /dev/null +++ b/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json @@ -0,0 +1,170 @@ +{ + "name": "Elemental Spark", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "motivesAndTactics": "Blast, consume, gain mass", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 15, + "tier": 3, + "description": "A blazing mote of elemental fire.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784259, + "modifiedTime": 1753922784259, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "P7h54ZePFPHpYwvB", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Elemental Spark", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!P7h54ZePFPHpYwvB" +} diff --git a/src/packs/adversaries/adversary_Elite_Soldier_9F1JdXtcmxfWyoKa.json b/src/packs/adversaries/adversary_Elite_Soldier_9F1JdXtcmxfWyoKa.json new file mode 100644 index 00000000..a0761e1a --- /dev/null +++ b/src/packs/adversaries/adversary_Elite_Soldier_9F1JdXtcmxfWyoKa.json @@ -0,0 +1,186 @@ +{ + "name": "Elite Soldier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 9, + "severe": 18 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Gain glory, keep order, make alliances", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An armored squire or experienced commoner looking to advance.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784260, + "modifiedTime": 1753922784260, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "9F1JdXtcmxfWyoKa", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Elite Soldier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!9F1JdXtcmxfWyoKa" +} diff --git a/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json b/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json new file mode 100644 index 00000000..a99887d3 --- /dev/null +++ b/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json @@ -0,0 +1,185 @@ +{ + "name": "Failed Experiment", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 12, + "severe": 23 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A magical necromantic experiment gone wrong, leaving them warped and ungainly.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784262, + "modifiedTime": 1753922784262, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ChwwVqowFw8hJQwT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Failed Experiment", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ChwwVqowFw8hJQwT" +} diff --git a/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json b/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json new file mode 100644 index 00000000..6ad113c2 --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json @@ -0,0 +1,170 @@ +{ + "name": "Fallen Shock Troop", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "motivesAndTactics": "Crush, dominate, earn relief, punish", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 18, + "tier": 4, + "description": "A cursed soul bound to the Fallen’s will.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784264, + "modifiedTime": 1753922784264, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "OsLG2BjaEdTZUJU9", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Fallen Shock Troop", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!OsLG2BjaEdTZUJU9" +} diff --git a/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json b/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json new file mode 100644 index 00000000..361f48df --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json @@ -0,0 +1,186 @@ +{ + "name": "Fallen Sorcerer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 26, + "severe": 42 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Acquire, dishearten, dominate, torment", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A powerful mage bound by the bargains they made in life.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784265, + "modifiedTime": 1753922784265, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "PELRry1vqjBzSAlr", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Fallen Sorcerer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!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 new file mode 100644 index 00000000..5ad077d3 --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json @@ -0,0 +1,271 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Fallen Warlord: Realm Breaker", + "type": "adversary", + "_id": "hxZ0sgoFJubh5aj6", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "A Fallen God, wreathed in rage and resentment, bearing millennia of experience in breaking heroes’ spirits.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 20, + "hordeHp": 1, + "damageThresholds": { + "major": 36, + "severe": 66 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Barbed Whip", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 7, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d8", + "bonus": 7, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "xmyO4KEYcwlFc0Xk": { + "name": "Conquest", + "value": 3 + }, + "DKyCdPkOjtgaCsjU": { + "name": "History", + "value": 2 + }, + "v1rgbqkBK4goqrl3": { + "name": "Intimidation", + "value": 3 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Corrupt, dominate, punish, break the weak" + }, + "prototypeToken": { + "name": "Fallen Warlord: Realm Breaker", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929378070, + "modifiedTime": 1753929456120, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_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 new file mode 100644 index 00000000..c90ca881 --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json @@ -0,0 +1,271 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Fallen Warlord: Undefeated Champion", + "type": "adversary", + "_id": "RXkZTwBRi4dJ3JE5", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "That which only the most feared have a chance to fear.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 18, + "hordeHp": 1, + "damageThresholds": { + "major": 35, + "severe": 58 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 11, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Heart-Shattering Sword", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 8, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d12", + "bonus": 13, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "94xNhHTol94phqUY": { + "name": "Conquest", + "value": 3 + }, + "FNgjrxzFVeMzwMtZ": { + "name": "History", + "value": 2 + }, + "hxCjuOCUqJpKRER8": { + "name": "Intimidation", + "value": 3 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Dispatch merciless death, punish the defi ant, secure victory at any cost" + }, + "prototypeToken": { + "name": "Fallen Warlord: Undefeated Champion", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929476879, + "modifiedTime": 1753929583772, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_key": "!actors!RXkZTwBRi4dJ3JE5" +} diff --git a/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json b/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json new file mode 100644 index 00000000..2d4ead16 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json @@ -0,0 +1,185 @@ +{ + "name": "Giant Beastmaster", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 12, + "severe": 24 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A leather-clad warrior bearing a whip and massive bow.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784268, + "modifiedTime": 1753922784268, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8VZIgU12cB3cvlyH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Beastmaster", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8VZIgU12cB3cvlyH" +} diff --git a/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json b/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json new file mode 100644 index 00000000..097e0162 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json @@ -0,0 +1,186 @@ +{ + "name": "Giant Brawler", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 14, + "severe": 28 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Make a living, overwhelm, slam, topple", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An especially muscular giant wielding a warhammer larger than a human.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784268, + "modifiedTime": 1753922784268, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YnObCleGjPT7yqEc", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Brawler", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YnObCleGjPT7yqEc" +} diff --git a/src/packs/adversaries/adversary_Giant_Eagle_DnJ5ViDkhhCsr0cC.json b/src/packs/adversaries/adversary_Giant_Eagle_DnJ5ViDkhhCsr0cC.json new file mode 100644 index 00000000..7cd5fd1e --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Eagle_DnJ5ViDkhhCsr0cC.json @@ -0,0 +1,186 @@ +{ + "name": "Giant Eagle", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 19 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Hunt prey, stay mobile, strike decisively", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A giant bird of prey with blood-stained talons.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784269, + "modifiedTime": 1753922784269, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DnJ5ViDkhhCsr0cC", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Eagle", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!DnJ5ViDkhhCsr0cC" +} diff --git a/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json b/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json new file mode 100644 index 00000000..4e94be24 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json @@ -0,0 +1,185 @@ +{ + "name": "Giant Mosquitoes", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "Dozens of fist-sized mosquitoes, flying together for protection.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784269, + "modifiedTime": 1753922784269, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "IIWV4ysJPFPnTP7W", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Mosquitoes", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!IIWV4ysJPFPnTP7W" +} diff --git a/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json b/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json new file mode 100644 index 00000000..db6985ce --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json @@ -0,0 +1,170 @@ +{ + "name": "Giant Rat", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Burrow, hunger, scavenge, wear down", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 10, + "tier": 1, + "description": "A cat-sized rodent skilled at scavenging and survival.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784270, + "modifiedTime": 1753922784270, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "4PfLnaCrOcMdb4dK", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Rat", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!4PfLnaCrOcMdb4dK" +} diff --git a/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json b/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json new file mode 100644 index 00000000..9be5ff60 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json @@ -0,0 +1,169 @@ +{ + "name": "Giant Recruit", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 13, + "tier": 2, + "description": "A giant fighter wearing borrowed armor.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784271, + "modifiedTime": 1753922784271, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5s8wSvpyC5rxY5aD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Recruit", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5s8wSvpyC5rxY5aD" +} diff --git a/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json b/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json new file mode 100644 index 00000000..20590d90 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json @@ -0,0 +1,186 @@ +{ + "name": "Giant Scorpion", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, feed, grapple, poison", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A human-sized insect with tearing claws and a stinging tail.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784272, + "modifiedTime": 1753922784272, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "fmfntuJ8mHRCAktP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Scorpion", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!fmfntuJ8mHRCAktP" +} diff --git a/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json b/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json new file mode 100644 index 00000000..da8dea2e --- /dev/null +++ b/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json @@ -0,0 +1,186 @@ +{ + "name": "Glass Snake", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 6, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Climb, feed, keep distance, scare", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A clear serpent with a massive head that leaves behind a glass shard trail wherever they go.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784273, + "modifiedTime": 1753922784273, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8KWVLWXFhlY2kYx0", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Glass Snake", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8KWVLWXFhlY2kYx0" +} diff --git a/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json b/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json new file mode 100644 index 00000000..12867fb9 --- /dev/null +++ b/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json @@ -0,0 +1,186 @@ +{ + "name": "Gorgon", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 13, + "severe": 25 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Corner, hit-and-run, petrify, seek vengeance", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A snake-headed, scaled humanoid with a gilded bow, enraged that their peace has been disturbed.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784274, + "modifiedTime": 1753922784274, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8mJYMpbLTb8qIOrr", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Gorgon", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8mJYMpbLTb8qIOrr" +} diff --git a/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json b/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json new file mode 100644 index 00000000..ff37b2f6 --- /dev/null +++ b/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json @@ -0,0 +1,186 @@ +{ + "name": "Greater Earth Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Avalanche, knock over, pummel", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A living landslide of boulders and dust, as large as a house.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784275, + "modifiedTime": 1753922784275, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dsfB3YhoL5SudvS2", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Greater Earth Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dsfB3YhoL5SudvS2" +} diff --git a/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json b/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json new file mode 100644 index 00000000..6d71aedd --- /dev/null +++ b/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json @@ -0,0 +1,186 @@ +{ + "name": "Greater Water Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 17, + "severe": 34 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Deluge, disperse, drown", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A huge living wave that crashes down upon enemies.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784278, + "modifiedTime": 1753922784278, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "xIICT6tEdnA7dKDV", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Greater Water Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!xIICT6tEdnA7dKDV" +} diff --git a/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json b/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json new file mode 100644 index 00000000..8296e7d2 --- /dev/null +++ b/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json @@ -0,0 +1,186 @@ +{ + "name": "Green Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 8, + "damageThresholds": { + "major": 5, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Camouflage, consume and multiply, creep up, envelop", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A moving mound of translucent green slime.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784278, + "modifiedTime": 1753922784278, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "SHXedd9zZPVfUgUa", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Green Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!SHXedd9zZPVfUgUa" +} diff --git a/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json b/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json new file mode 100644 index 00000000..d9f94872 --- /dev/null +++ b/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json @@ -0,0 +1,186 @@ +{ + "name": "Hallowed Archer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 25, + "severe": 45 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Focus fire, obey, reposition, volley", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "Spirit soldiers with sanctified bows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784279, + "modifiedTime": 1753922784279, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "kabueAo6BALApWqp", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hallowed Archer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!kabueAo6BALApWqp" +} diff --git a/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json b/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json new file mode 100644 index 00000000..5f49bfe2 --- /dev/null +++ b/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json @@ -0,0 +1,170 @@ +{ + "name": "Hallowed Soldier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "motivesAndTactics": "Obey, outmaneuver, punish, swarm", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 18, + "tier": 4, + "description": "Souls of the faithful, lifted up with divine weaponry.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784279, + "modifiedTime": 1753922784279, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "VENwg7xEFcYObjmT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hallowed Soldier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!VENwg7xEFcYObjmT" +} diff --git a/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json b/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json new file mode 100644 index 00000000..967815cd --- /dev/null +++ b/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json @@ -0,0 +1,186 @@ +{ + "name": "Harrier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Flank, harry, kite, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A nimble fighter armed with javelins.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784281, + "modifiedTime": 1753922784281, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uRtghKE9mHlII4rs", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Harrier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uRtghKE9mHlII4rs" +} diff --git a/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json b/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json new file mode 100644 index 00000000..2d8c658e --- /dev/null +++ b/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json @@ -0,0 +1,186 @@ +{ + "name": "Head Guard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Arrest, close gates, pin down, seek glory", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A seasoned guard with a mace, a whistle, and a bellowing voice.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784282, + "modifiedTime": 1753922784282, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "mK3A5FTx6k8iPU3F", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Head Guard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!mK3A5FTx6k8iPU3F" +} diff --git a/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json b/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json new file mode 100644 index 00000000..aca5cf42 --- /dev/null +++ b/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json @@ -0,0 +1,186 @@ +{ + "name": "Head Vampire", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 42 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Create thralls, charm, command, fly, intimidate", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A captivating undead dressed in aristocratic finery.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784283, + "modifiedTime": 1753922784283, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "i2UNbRvgyoSs07M6", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Head Vampire", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!i2UNbRvgyoSs07M6" +} diff --git a/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json b/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json new file mode 100644 index 00000000..02f3015c --- /dev/null +++ b/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json @@ -0,0 +1,185 @@ +{ + "name": "High Seraph", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 37, + "severe": 70 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A divine champion, head of a hallowed host of warriors who enforce their god’s will.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784283, + "modifiedTime": 1753922784283, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "r1mbfSSwKWdcFdAU", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "High Seraph", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!r1mbfSSwKWdcFdAU" +} diff --git a/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json b/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json new file mode 100644 index 00000000..d920023b --- /dev/null +++ b/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json @@ -0,0 +1,186 @@ +{ + "name": "Huge Green Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 15, + "severe": 30 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Camouflage, creep up, envelop, multiply", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A translucent green mound of acid taller than most humans.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784284, + "modifiedTime": 1753922784284, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "6hbqmxDXFOzZJDk4", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Huge Green Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!6hbqmxDXFOzZJDk4" +} diff --git a/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json b/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json new file mode 100644 index 00000000..70221058 --- /dev/null +++ b/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json @@ -0,0 +1,186 @@ +{ + "name": "Hydra", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 18, + "damageThresholds": { + "major": 19, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Devour, regenerate, terrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A quadrupedal scaled beast with multiple long-necked heads, each filled with menacing fangs.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784285, + "modifiedTime": 1753922784285, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "MI126iMOOobQ1Obn", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hydra", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!MI126iMOOobQ1Obn" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json b/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json new file mode 100644 index 00000000..39a4d45c --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json @@ -0,0 +1,185 @@ +{ + "name": "Jagged Knife Bandit", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 8, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A cunning criminal in a cloak bearing one of the gang’s iconic knives.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784290, + "modifiedTime": 1753922784290, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5Lh1T0zaT8Pkr2U2", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Bandit", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5Lh1T0zaT8Pkr2U2" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json b/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json new file mode 100644 index 00000000..2e68c2c2 --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Hexer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Command, hex, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A staff-wielding bandit in a cloak adorned with magical paraphernalia, using curses to vex their foes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784291, + "modifiedTime": 1753922784291, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "MbBPIOxaxXYNApXz", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Hexer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!MbBPIOxaxXYNApXz" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json b/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json new file mode 100644 index 00000000..ebd5d2fc --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Kneebreaker", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Grapple, intimidate, profit, steal", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An imposing brawler carrying a large club.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784292, + "modifiedTime": 1753922784292, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CBKixLH3yhivZZuL", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Kneebreaker", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!CBKixLH3yhivZZuL" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json b/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json new file mode 100644 index 00000000..13e61cf3 --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json @@ -0,0 +1,170 @@ +{ + "name": "Jagged Knife Lackey", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Escape, profit, throw smoke", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 9, + "tier": 1, + "description": "A thief with simple clothes and small daggers, eager to prove themselves.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784293, + "modifiedTime": 1753922784293, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "C0OMQqV7pN6t7ouR", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Lackey", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!C0OMQqV7pN6t7ouR" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json b/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json new file mode 100644 index 00000000..b2650eef --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Lieutenant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Bully, command, profit, reinforce", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A seasoned bandit in quality leathers with a strong voice and cunning eyes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784294, + "modifiedTime": 1753922784294, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "aTljstqteGoLpCBq", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Lieutenant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!aTljstqteGoLpCBq" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json b/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json new file mode 100644 index 00000000..a44490db --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Shadow", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, conceal, divide, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A nimble scoundrel bearing a wicked knife and utilizing shadow magic to isolate targets.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784295, + "modifiedTime": 1753922784295, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "XF4tYTq9nPJAy2ox", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Shadow", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!XF4tYTq9nPJAy2ox" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json b/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json new file mode 100644 index 00000000..03145e51 --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json @@ -0,0 +1,185 @@ +{ + "name": "Jagged Knife Sniper", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 4, + "severe": 7 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A lanky bandit striking from cover with a shortbow.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784296, + "modifiedTime": 1753922784296, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "1zuyof1XuIfi3aMG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Sniper", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!1zuyof1XuIfi3aMG" +} diff --git a/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json b/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json new file mode 100644 index 00000000..872262ba --- /dev/null +++ b/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json @@ -0,0 +1,186 @@ +{ + "name": "Juvenile Flickerfly", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Collect shiny things, hunt, swoop", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A horse-sized insect with iridescent scales and crystalline wings moving faster than the eye can see.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784297, + "modifiedTime": 1753922784297, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "MYXmTx2FHcIjdfYZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Juvenile Flickerfly", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!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 new file mode 100644 index 00000000..790d5846 --- /dev/null +++ b/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json @@ -0,0 +1,186 @@ +{ + "name": "Knight of the Realm", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Run down, seek glory, show dominance", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A decorated soldier with heavy armor and a powerful steed.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784302, + "modifiedTime": 1753922784302, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "7ai2opemrclQe3VF", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Knight of the Realm", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!7ai2opemrclQe3VF" +} diff --git a/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json b/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json new file mode 100644 index 00000000..e4700b3d --- /dev/null +++ b/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json @@ -0,0 +1,186 @@ +{ + "name": "Kraken", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 35, + "severe": 70 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 11, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 8, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, crush, drown, grapple", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A legendary beast of the sea, bigger than the largest galleon, with sucker-laden tentacles and a terrifying maw.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784303, + "modifiedTime": 1753922784303, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "4nqv3ZwJGjnmic8j", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Kraken", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!4nqv3ZwJGjnmic8j" +} diff --git a/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json b/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json new file mode 100644 index 00000000..b9b66c5e --- /dev/null +++ b/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json @@ -0,0 +1,186 @@ +{ + "name": "Masked Thief", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Evade, hide, pilfer, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A cunning thief with acrobatic skill and a flair for the dramatic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784304, + "modifiedTime": 1753922784304, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "niBpVU7yeo5ccskE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Masked Thief", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!niBpVU7yeo5ccskE" +} diff --git a/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json b/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json new file mode 100644 index 00000000..cd27deca --- /dev/null +++ b/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json @@ -0,0 +1,186 @@ +{ + "name": "Master Assassin", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 12, + "severe": 25 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, get out alive, kill, prepare for all scenarios", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A seasoned killer with a threatening voice and a deadly blade.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784305, + "modifiedTime": 1753922784305, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dNta0cUzr96xcFhf", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Master Assassin", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dNta0cUzr96xcFhf" +} diff --git a/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json b/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json new file mode 100644 index 00000000..8772432f --- /dev/null +++ b/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json @@ -0,0 +1,186 @@ +{ + "name": "Merchant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Buy low and sell high, create demand, inflate prices, seek profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A finely dressed trader with a keen eye for financial gain.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784305, + "modifiedTime": 1753922784305, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Al3w2CgjfdT3p9ma", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Merchant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Al3w2CgjfdT3p9ma" +} diff --git a/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json b/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json new file mode 100644 index 00000000..59723760 --- /dev/null +++ b/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json @@ -0,0 +1,186 @@ +{ + "name": "Merchant Baron", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 9, + "severe": 19 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Abuse power, gather resources, mobilize minions", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An accomplished merchant with a large operation under their command.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784306, + "modifiedTime": 1753922784306, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Vy02IhGhkJLuezu4", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Merchant Baron", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Vy02IhGhkJLuezu4" +} diff --git a/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json b/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json new file mode 100644 index 00000000..d38eef50 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json @@ -0,0 +1,186 @@ +{ + "name": "Minor Chaos Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Confound, destabilize, transmogrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A coruscating mass of uncontrollable magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784307, + "modifiedTime": 1753922784307, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "sRn4bqerfARvhgSV", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Chaos Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!sRn4bqerfARvhgSV" +} diff --git a/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json b/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json new file mode 100644 index 00000000..81919108 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json @@ -0,0 +1,186 @@ +{ + "name": "Minor Demon", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Act erratically, corral targets, relish pain, torment", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A crimson-hued creature from the Circles Below, consumed by rage against all mortals.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784308, + "modifiedTime": 1753922784308, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "3tqCjDwJAQ7JKqMb", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Demon", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!3tqCjDwJAQ7JKqMb" +} diff --git a/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json b/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json new file mode 100644 index 00000000..6fe5fb25 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json @@ -0,0 +1,186 @@ +{ + "name": "Minor Fire Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Encircle enemies, grow in size, intimidate, start fires", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A living flame the size of a large bonfire.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784308, + "modifiedTime": 1753922784308, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DscWkNVoHak6P4hh", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Fire Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!DscWkNVoHak6P4hh" +} diff --git a/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json b/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json new file mode 100644 index 00000000..4c141dc4 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json @@ -0,0 +1,170 @@ +{ + "name": "Minor Treant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Crush, overwhelm, protect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 10, + "tier": 1, + "description": "An ambulatory sapling rising up to defend their forest.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784309, + "modifiedTime": 1753922784309, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "G62k4oSkhkoXEs2D", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Treant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!G62k4oSkhkoXEs2D" +} diff --git a/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json b/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json new file mode 100644 index 00000000..0b0f7f93 --- /dev/null +++ b/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json @@ -0,0 +1,185 @@ +{ + "name": "Minotaur Wrecker", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 14, + "severe": 27 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A massive bull-headed firbolg with a quick temper.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784310, + "modifiedTime": 1753922784310, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rM9qCIYeWg9I0B4l", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minotaur Wrecker", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!rM9qCIYeWg9I0B4l" +} diff --git a/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json b/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json new file mode 100644 index 00000000..5f8b32b3 --- /dev/null +++ b/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json @@ -0,0 +1,185 @@ +{ + "name": "Monarch", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 16, + "severe": 32 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "The sovereign ruler of a nation, wreathed in the privilege of tradition and wielding unmatched power in their domain.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784312, + "modifiedTime": 1753922784312, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "yx0vK2yfNVZKWUUi", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Monarch", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!yx0vK2yfNVZKWUUi" +} diff --git a/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json b/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json new file mode 100644 index 00000000..20370765 --- /dev/null +++ b/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json @@ -0,0 +1,186 @@ +{ + "name": "Mortal Hunter", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 15, + "severe": 27 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Devour, hunt, track", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An undead figure wearing a heavy leather coat, with searching eyes and a casually cruel demeanor.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784313, + "modifiedTime": 1753922784313, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "mVV7a7KQAORoPMgZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Mortal Hunter", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!mVV7a7KQAORoPMgZ" +} diff --git a/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json b/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json new file mode 100644 index 00000000..3bfaa715 --- /dev/null +++ b/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json @@ -0,0 +1,185 @@ +{ + "name": "Oak Treant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A sturdy animate old-growth tree.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784314, + "modifiedTime": 1753922784314, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "XK78QUfY8c8Go8Uv", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Oak Treant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!XK78QUfY8c8Go8Uv" +} diff --git a/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json b/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json new file mode 100644 index 00000000..e4a43711 --- /dev/null +++ b/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json @@ -0,0 +1,186 @@ +{ + "name": "Oracle of Doom", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 38, + "severe": 68 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 11, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 10, + "isReversed": true + } + }, + "motivesAndTactics": "Change environment, condemn, dishearten, toss aside", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A towering immortal and incarnation of fate, cursed to only see bad outcomes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784315, + "modifiedTime": 1753922784315, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "befIqd5IYKg6eUz2", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Oracle of Doom", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!befIqd5IYKg6eUz2" +} diff --git a/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json b/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json new file mode 100644 index 00000000..a774e8b5 --- /dev/null +++ b/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json @@ -0,0 +1,185 @@ +{ + "name": "Outer Realms Abomination", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 35, + "severe": 71 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A chaotic mockery of life, constantly in flux.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784319, + "modifiedTime": 1753922784319, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "A0SeeDzwjvqOsyof", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outer Realms Abomination", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!A0SeeDzwjvqOsyof" +} diff --git a/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json b/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json new file mode 100644 index 00000000..b3398b8d --- /dev/null +++ b/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json @@ -0,0 +1,185 @@ +{ + "name": "Outer Realms Corrupter", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 27, + "severe": 47 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A shifting, formless mass seemingly made of chromatic light.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784320, + "modifiedTime": 1753922784320, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ms6nuOl3NFkhPj1k", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outer Realms Corrupter", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ms6nuOl3NFkhPj1k" +} diff --git a/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json b/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json new file mode 100644 index 00000000..37739eeb --- /dev/null +++ b/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json @@ -0,0 +1,169 @@ +{ + "name": "Outer Realms Thrall", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 17, + "tier": 4, + "description": "A vaguely humanoid form stripped of memory and identity.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784321, + "modifiedTime": 1753922784321, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "moJhHgKqTKPS2WYS", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outer Realms Thrall", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!moJhHgKqTKPS2WYS" +} diff --git a/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json b/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json new file mode 100644 index 00000000..d26bec1b --- /dev/null +++ b/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json @@ -0,0 +1,186 @@ +{ + "name": "Patchwork Zombie Hulk", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Absorb corpses, flail, hunger, terrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A towering gestalt of corpses moving as one, with torso-sized limbs and fists as large as a grown halfling.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784322, + "modifiedTime": 1753922784322, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "EQTOAOUrkIvS2z88", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Patchwork Zombie Hulk", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!EQTOAOUrkIvS2z88" +} diff --git a/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json b/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json new file mode 100644 index 00000000..3b7d59e0 --- /dev/null +++ b/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json @@ -0,0 +1,186 @@ +{ + "name": "Perfected Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 40, + "severe": 70 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, hound, maim, terrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A towering, muscular zombie with magically infused strength and skill.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784323, + "modifiedTime": 1753922784323, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CP6iRfHdyFWniTHY", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Perfected Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!CP6iRfHdyFWniTHY" +} diff --git a/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json b/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json new file mode 100644 index 00000000..03002595 --- /dev/null +++ b/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json @@ -0,0 +1,185 @@ +{ + "name": "Petty Noble", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 6, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A richly dressed and adorned aristocrat brimming with hubris.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784324, + "modifiedTime": 1753922784324, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wycLpvebWdUqRhpP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Petty Noble", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!wycLpvebWdUqRhpP" +} diff --git a/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json b/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json new file mode 100644 index 00000000..469ad468 --- /dev/null +++ b/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json @@ -0,0 +1,186 @@ +{ + "name": "Pirate Captain", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Command, make ’em walk the plank, plunder, raid", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A charismatic sea dog with an impressive hat, eager to raid and plunder.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784325, + "modifiedTime": 1753922784325, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "OROJbjsqagVh7ECV", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pirate Captain", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!OROJbjsqagVh7ECV" +} diff --git a/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json b/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json new file mode 100644 index 00000000..a9156c71 --- /dev/null +++ b/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json @@ -0,0 +1,186 @@ +{ + "name": "Pirate Raiders", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Gang up, plunder, raid", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "Seafaring scoundrels moving in a ravaging pack.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784326, + "modifiedTime": 1753922784326, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5YgEajn0wa4i85kC", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pirate Raiders", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5YgEajn0wa4i85kC" +} diff --git a/src/packs/adversaries/adversary_Pirate_Tough_GB8zP9LYt061DlqY.json b/src/packs/adversaries/adversary_Pirate_Tough_GB8zP9LYt061DlqY.json new file mode 100644 index 00000000..f6ebdd5b --- /dev/null +++ b/src/packs/adversaries/adversary_Pirate_Tough_GB8zP9LYt061DlqY.json @@ -0,0 +1,186 @@ +{ + "name": "Pirate Tough", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Plunder, raid, smash, terrorize", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A thickly muscled and tattooed pirate with melon-sized fists.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784331, + "modifiedTime": 1753922784331, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "GB8zP9LYt061DlqY", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pirate Tough", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!GB8zP9LYt061DlqY" +} diff --git a/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json b/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json new file mode 100644 index 00000000..1cdbe382 --- /dev/null +++ b/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json @@ -0,0 +1,186 @@ +{ + "name": "Red Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Camouflage, consume and multiply, ignite, start fires", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A moving mound of translucent flaming red slime.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784338, + "modifiedTime": 1753922784338, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "9rVlbJVrDNn1x7PS", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Red Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!9rVlbJVrDNn1x7PS" +} diff --git a/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json b/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json new file mode 100644 index 00000000..98b52185 --- /dev/null +++ b/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json @@ -0,0 +1,170 @@ +{ + "name": "Rotted Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Eat flesh, hunger, maul, surround", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 8, + "tier": 1, + "description": "A decaying corpse ambling toward their prey.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784339, + "modifiedTime": 1753922784339, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "gP3fWTLzSFnpA8EJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Rotted Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!gP3fWTLzSFnpA8EJ" +} diff --git a/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json b/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json new file mode 100644 index 00000000..f34685db --- /dev/null +++ b/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json @@ -0,0 +1,185 @@ +{ + "name": "Royal Advisor", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A high-ranking courtier with the ear of the local nobility.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784339, + "modifiedTime": 1753922784339, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "EtLJiTsilPPZvLUX", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Royal Advisor", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!EtLJiTsilPPZvLUX" +} diff --git a/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json b/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json new file mode 100644 index 00000000..69aabadc --- /dev/null +++ b/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json @@ -0,0 +1,186 @@ +{ + "name": "Secret-Keeper", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Amass great power, plot, take command", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A clandestine leader with a direct channel to the Fallen Gods.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784341, + "modifiedTime": 1753922784341, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "sLAccjvCWfeedbpI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Secret-Keeper", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!sLAccjvCWfeedbpI" +} diff --git a/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json b/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json new file mode 100644 index 00000000..1a2138e0 --- /dev/null +++ b/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json @@ -0,0 +1,170 @@ +{ + "name": "Sellsword", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Charge, lacerate, overwhelm, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 10, + "tier": 1, + "description": "An armed mercenary testing their luck.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784341, + "modifiedTime": 1753922784341, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "bgreCaQ6ap2DVpCr", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Sellsword", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!bgreCaQ6ap2DVpCr" +} diff --git a/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json b/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json new file mode 100644 index 00000000..0069ef06 --- /dev/null +++ b/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json @@ -0,0 +1,186 @@ +{ + "name": "Shambling Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 4, + "severe": 6 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 1, + "isReversed": true + } + }, + "motivesAndTactics": "Devour, hungry, mob enemy, shred flesh", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An animated corpse that moves shakily, driven only by hunger.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784342, + "modifiedTime": 1753922784342, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2nXz4ilAY4xuhKLm", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Shambling Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2nXz4ilAY4xuhKLm" +} diff --git a/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json b/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json new file mode 100644 index 00000000..554c597f --- /dev/null +++ b/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json @@ -0,0 +1,185 @@ +{ + "name": "Shark", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 14, + "severe": 28 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A large aquatic predator, always on the move.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784342, + "modifiedTime": 1753922784342, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YmVAkdNsyuXWTtYp", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Shark", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YmVAkdNsyuXWTtYp" +} diff --git a/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json b/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json new file mode 100644 index 00000000..db5d8933 --- /dev/null +++ b/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json @@ -0,0 +1,185 @@ +{ + "name": "Siren", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 9, + "severe": 18 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A half-fish person with shimmering scales and an irresistible voice.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784344, + "modifiedTime": 1753922784344, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "BK4jwyXSRx7IOQiO", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Siren", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!BK4jwyXSRx7IOQiO" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json b/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json new file mode 100644 index 00000000..76f8e91e --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json @@ -0,0 +1,186 @@ +{ + "name": "Skeleton Archer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 9, + "damageThresholds": { + "major": 4, + "severe": 7 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Perforate distracted targets, play dead, steal skin", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A fragile skeleton with a shortbow and arrows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784345, + "modifiedTime": 1753922784345, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "7X5q7a6ueeHs5oA9", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Archer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!7X5q7a6ueeHs5oA9" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json b/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json new file mode 100644 index 00000000..73b3156e --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json @@ -0,0 +1,170 @@ +{ + "name": "Skeleton Dredge", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Fall apart, overwhelm, play dead, steal skin", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 8, + "tier": 1, + "description": "A clattering pile of bones.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784347, + "modifiedTime": 1753922784347, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "6l1a3Fazq8BoKIcc", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Dredge", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!6l1a3Fazq8BoKIcc" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json b/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json new file mode 100644 index 00000000..9f9d8e18 --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json @@ -0,0 +1,186 @@ +{ + "name": "Skeleton Knight", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Cut down the living, steal skin, wreak havoc", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large armored skeleton with a huge blade.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784348, + "modifiedTime": 1753922784348, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Q9LaVTyXF9NF12C7", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Knight", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Q9LaVTyXF9NF12C7" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json b/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json new file mode 100644 index 00000000..0808c843 --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json @@ -0,0 +1,186 @@ +{ + "name": "Skeleton Warrior", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Feign death, gang up, steal skin", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A dirt-covered skeleton armed with a rusted blade.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784350, + "modifiedTime": 1753922784350, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "10YIQl0lvCJXZLfX", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Warrior", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!10YIQl0lvCJXZLfX" +} diff --git a/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json b/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json new file mode 100644 index 00000000..59a42118 --- /dev/null +++ b/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json @@ -0,0 +1,186 @@ +{ + "name": "Spectral Archer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 6, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Move through solid objects, stay out of the fray, rehash old battles", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A ghostly fighter with an ethereal bow, unable to move on while their charge is vulnerable.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784351, + "modifiedTime": 1753922784351, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5tCkhnBByUIN5UdG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spectral Archer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5tCkhnBByUIN5UdG" +} diff --git a/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json b/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json new file mode 100644 index 00000000..75aac0a9 --- /dev/null +++ b/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json @@ -0,0 +1,185 @@ +{ + "name": "Spectral Captain", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A ghostly commander leading their troops beyond death.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784352, + "modifiedTime": 1753922784352, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "65cSO3EQEh6ZH6Xk", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spectral Captain", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!65cSO3EQEh6ZH6Xk" +} diff --git a/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json b/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json new file mode 100644 index 00000000..3877f352 --- /dev/null +++ b/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json @@ -0,0 +1,186 @@ +{ + "name": "Spectral Guardian", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 7, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Move through solid objects, protect treasure, rehash old battles", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A ghostly fighter with spears and swords, anchored by duty.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784353, + "modifiedTime": 1753922784353, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "UFVGl1osOsJTneLf", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spectral Guardian", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!UFVGl1osOsJTneLf" +} diff --git a/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json b/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json new file mode 100644 index 00000000..d6ad7693 --- /dev/null +++ b/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json @@ -0,0 +1,185 @@ +{ + "name": "Spellblade", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A mercenary combining swordplay and magic to deadly effect.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784353, + "modifiedTime": 1753922784353, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ldbWEL7uZs84vyrR", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spellblade", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ldbWEL7uZs84vyrR" +} diff --git a/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json b/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json new file mode 100644 index 00000000..17740733 --- /dev/null +++ b/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json @@ -0,0 +1,185 @@ +{ + "name": "Spy", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 8, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A skilled espionage agent with a knack for being in the right place to overhear secrets.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784354, + "modifiedTime": 1753922784354, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8zlynOhnVA59KpKT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spy", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8zlynOhnVA59KpKT" +} diff --git a/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json b/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json new file mode 100644 index 00000000..53d35ea6 --- /dev/null +++ b/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json @@ -0,0 +1,186 @@ +{ + "name": "Stag Knight", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 19, + "severe": 36 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Isolate, maneuver, protect the forest, weed the unwelcome", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A knight with huge, majestic antlers wearing armor made of dangerous thorns.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784355, + "modifiedTime": 1753922784355, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "KGVwnLq85ywP9xvB", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Stag Knight", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!KGVwnLq85ywP9xvB" +} diff --git a/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json b/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json new file mode 100644 index 00000000..989beac8 --- /dev/null +++ b/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json @@ -0,0 +1,186 @@ +{ + "name": "Stonewraith", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 11, + "severe": 22 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Defend territory, isolate prey, stalk", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A prowling hunter, like a slinking mountain lion, with a slate-gray stone body.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784355, + "modifiedTime": 1753922784355, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "3aAS2Qm3R6cgaYfE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Stonewraith", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!3aAS2Qm3R6cgaYfE" +} diff --git a/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json b/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json new file mode 100644 index 00000000..5dbf3cfb --- /dev/null +++ b/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json @@ -0,0 +1,186 @@ +{ + "name": "Swarm of Rats", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 6, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, obscure, swarm", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A skittering mass of ordinary rodents moving as one like a ravenous wave.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784356, + "modifiedTime": 1753922784356, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "qNgs3AbLyJrY19nt", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Swarm of Rats", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!qNgs3AbLyJrY19nt" +} diff --git a/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json b/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json new file mode 100644 index 00000000..60f98202 --- /dev/null +++ b/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json @@ -0,0 +1,186 @@ +{ + "name": "Sylvan Soldier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 11, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, hide, overwhelm, protect, trail", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A faerie warrior adorned in armor made of leaves and bark.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784356, + "modifiedTime": 1753922784356, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "VtFBt9XBE0WrGGxP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Sylvan Soldier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!VtFBt9XBE0WrGGxP" +} diff --git a/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_RLvFm4xfDYB6MZ7j.json b/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_RLvFm4xfDYB6MZ7j.json new file mode 100644 index 00000000..64b5f58d --- /dev/null +++ b/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_RLvFm4xfDYB6MZ7j.json @@ -0,0 +1,186 @@ +{ + "name": "Tangle Bramble Swarm", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Digest, entangle, immobilize", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A cluster of animate, blood-drinking tumbleweeds, each the size of a large gourd.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784358, + "modifiedTime": 1753922784358, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "RLvFm4xfDYB6MZ7j", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tangle Bramble Swarm", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!RLvFm4xfDYB6MZ7j" +} diff --git a/src/packs/adversaries/adversary_Tangle_Bramble_jd4MVRwy9zTfmRRE.json b/src/packs/adversaries/adversary_Tangle_Bramble_jd4MVRwy9zTfmRRE.json new file mode 100644 index 00000000..3c13aad1 --- /dev/null +++ b/src/packs/adversaries/adversary_Tangle_Bramble_jd4MVRwy9zTfmRRE.json @@ -0,0 +1,170 @@ +{ + "name": "Tangle Bramble", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Combine, drain, entangle", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 11, + "tier": 1, + "description": "An animate, blood-drinking tumbleweed.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784357, + "modifiedTime": 1753922784357, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "jd4MVRwy9zTfmRRE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tangle Bramble", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!jd4MVRwy9zTfmRRE" +} diff --git a/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json b/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json new file mode 100644 index 00000000..276658c7 --- /dev/null +++ b/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json @@ -0,0 +1,169 @@ +{ + "name": "Tiny Green Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 14, + "tier": 1, + "description": "A small moving mound of translucent green slime.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784359, + "modifiedTime": 1753922784359, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "aLkLFuVoKz2NLoBK", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tiny Green Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!aLkLFuVoKz2NLoBK" +} diff --git a/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json b/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json new file mode 100644 index 00000000..62801c37 --- /dev/null +++ b/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json @@ -0,0 +1,170 @@ +{ + "name": "Tiny Red Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Blaze, camouflage", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 11, + "tier": 1, + "description": "A small moving mound of translucent flaming red slime
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784359, + "modifiedTime": 1753922784359, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "1fkLQXVtmILqfJ44", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tiny Red Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!1fkLQXVtmILqfJ44" +} diff --git a/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json b/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json new file mode 100644 index 00000000..eef60f21 --- /dev/null +++ b/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json @@ -0,0 +1,170 @@ +{ + "name": "Treant Sapling", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "motivesAndTactics": "Blend in, preserve the forest, pummel, surround", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 14, + "tier": 3, + "description": "A small, sentient tree sapling.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784360, + "modifiedTime": 1753922784360, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "o63nS0k3wHu6EgKP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Treant Sapling", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!o63nS0k3wHu6EgKP" +} diff --git a/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json b/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json new file mode 100644 index 00000000..7e7465aa --- /dev/null +++ b/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json @@ -0,0 +1,186 @@ +{ + "name": "Vampire", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 18, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Bite, charm, deceive, feed, intimidate", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "An intelligent undead with blood-stained lips and a predator’s smile.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784364, + "modifiedTime": 1753922784364, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "WWyUp6Mxl1S3KYUG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vampire", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!WWyUp6Mxl1S3KYUG" +} diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json b/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json new file mode 100644 index 00000000..65553592 --- /dev/null +++ b/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json @@ -0,0 +1,186 @@ +{ + "name": "Vault Guardian Gaoler", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 19, + "severe": 33 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Carry away, entrap, protect, pummel", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A boxy, dust-covered construct with thick metallic swinging doors on their torso.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784367, + "modifiedTime": 1753922784367, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "JqYraOqNmmhHk4Yy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vault Guardian Gaoler", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!JqYraOqNmmhHk4Yy" +} diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json b/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json new file mode 100644 index 00000000..c59a6527 --- /dev/null +++ b/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json @@ -0,0 +1,186 @@ +{ + "name": "Vault Guardian Sentinel", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 21, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Destroy at any cost, expunge, protect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A dust-covered golden construct with boxy limbs and a huge mace for a hand.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784368, + "modifiedTime": 1753922784368, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "FVgYb28fhxlVcGwA", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vault Guardian Sentinel", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!FVgYb28fhxlVcGwA" +} diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json b/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json new file mode 100644 index 00000000..80118335 --- /dev/null +++ b/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json @@ -0,0 +1,186 @@ +{ + "name": "Vault Guardian Turret", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 20, + "severe": 32 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Concentrate fire, lock down, mark, protect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A massive living turret with reinforced armor and twelve piston-driven mechanical legs.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784368, + "modifiedTime": 1753922784368, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "c5hGdvY5UnSjlHws", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vault Guardian Turret", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!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 new file mode 100644 index 00000000..01fdcd39 --- /dev/null +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json @@ -0,0 +1,263 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Volcanic Dragon: Ashen Tyrant", + "type": "adversary", + "_id": "pMuXGCSOQaxpi5tb", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "No enemy has ever had the insolence to wound the dragon so. As the lava settles, it’s ground to ash like the dragon’s past foes.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 18, + "hordeHp": 1, + "damageThresholds": { + "major": 29, + "severe": 55 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Claws and Teeth", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 10, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d12", + "bonus": 15, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "wOdWWjFaanbmRXYg": { + "name": "Hunt from Above", + "value": 5 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Choke, fly, intimidate, kill or be killed" + }, + "prototypeToken": { + "name": "Volcanic Dragon: Ashen Tyrant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929252617, + "modifiedTime": 1753929642161, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_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 new file mode 100644 index 00000000..2b718598 --- /dev/null +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json @@ -0,0 +1,263 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Volcanic Dragon: Molten Scourge", + "type": "adversary", + "_id": "eArAPuB38CNR0ZIM", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "Enraged by their wounds, the dragon bursts into molten lava.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 20, + "hordeHp": 1, + "damageThresholds": { + "major": 30, + "severe": 58 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Lava-Coated Claws", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 9, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d12", + "bonus": 4, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "vHEB38ko8sY3S0ox": { + "name": "Hunt from Above", + "value": 5 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Douse with lava, incinerate, repel Invaders, reposition" + }, + "prototypeToken": { + "name": "Volcanic Dragon: Molten Scourge", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929160832, + "modifiedTime": 1753929626056, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_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 new file mode 100644 index 00000000..99be2158 --- /dev/null +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json @@ -0,0 +1,263 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Volcanic Dragon: Obsidian Predator", + "type": "adversary", + "_id": "ladm7wykhZczYzrQ", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "A massive winged creature with obsidian scales and impossibly sharp claws.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 19, + "hordeHp": 1, + "damageThresholds": { + "major": 33, + "severe": 65 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Obsidian Claws", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 8, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d10", + "bonus": 4, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "f1s2ZDASAlkUVnYT": { + "name": "Hunt from Above", + "value": 5 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Defend lair, dive-bomb, fly, hunt, intimidate" + }, + "prototypeToken": { + "name": "Volcanic Dragon: Obsidian Predator", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929001531, + "modifiedTime": 1753929613162, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_key": "!actors!ladm7wykhZczYzrQ" +} diff --git a/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json b/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json new file mode 100644 index 00000000..a3fd8259 --- /dev/null +++ b/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json @@ -0,0 +1,186 @@ +{ + "name": "War Wizard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 11, + "severe": 23 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Develop new spells, seek power, shatter formations", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A battle-hardened mage trained in destructive magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784373, + "modifiedTime": 1753922784373, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "noDdT0tsN6FXSmC8", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "War Wizard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!noDdT0tsN6FXSmC8" +} diff --git a/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json b/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json new file mode 100644 index 00000000..8b76d7b1 --- /dev/null +++ b/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json @@ -0,0 +1,185 @@ +{ + "name": "Weaponmaster", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A master-at-arms wielding a sword twice their size.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784373, + "modifiedTime": 1753922784373, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ZNbQ2jg35LG4t9eH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Weaponmaster", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ZNbQ2jg35LG4t9eH" +} diff --git a/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json b/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json new file mode 100644 index 00000000..5edd7306 --- /dev/null +++ b/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json @@ -0,0 +1,185 @@ +{ + "name": "Young Dryad", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 11, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An imperious tree-person leading their forest’s defenses.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784374, + "modifiedTime": 1753922784374, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8yUj2Mzvnifhxegm", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Young Dryad", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8yUj2Mzvnifhxegm" +} diff --git a/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json b/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json new file mode 100644 index 00000000..96751244 --- /dev/null +++ b/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json @@ -0,0 +1,186 @@ +{ + "name": "Young Ice Dragon", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 18, + "damageThresholds": { + "major": 21, + "severe": 41 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Avalanche, defend lair, fly, freeze, defend what is mine, maul", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A glacier-blue dragon with four powerful limbs and frost-tinged wings.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784374, + "modifiedTime": 1753922784374, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "UGPiPLJsPvMTSKEF", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Young Ice Dragon", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!UGPiPLJsPvMTSKEF" +} diff --git a/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json b/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json new file mode 100644 index 00000000..073d3a92 --- /dev/null +++ b/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json @@ -0,0 +1,185 @@ +{ + "name": "Zombie Legion", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 25, + "severe": 45 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A large pack of undead, still powerful despite their rotting flesh.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784375, + "modifiedTime": 1753922784375, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YhJrP7rTBiRdX5Fp", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Zombie Legion", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YhJrP7rTBiRdX5Fp" +} diff --git a/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json b/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json new file mode 100644 index 00000000..c6eb37d6 --- /dev/null +++ b/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json @@ -0,0 +1,186 @@ +{ + "name": "Zombie Pack", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 8, + "damageThresholds": { + "major": 6, + "severe": 12 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Consume flesh, hunger, maul", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A group of shambling corpses instinctively moving together.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784375, + "modifiedTime": 1753922784375, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Nf0v43rtflV56V2T", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Zombie Pack", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Nf0v43rtflV56V2T" +} diff --git a/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json new file mode 100644 index 00000000..3383d262 --- /dev/null +++ b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json @@ -0,0 +1,25 @@ +{ + "name": "Clank", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Clanks are sentient mechanical beings built from a variety of materials, including metal, wood, and stone.
They can resemble humanoids, animals, or even inanimate objects. Like organic beings, their bodies come in a wide array of sizes. Because of their bespoke construction, many clanks have highly specialized physical configurations. Examples include clawed hands for grasping, wheels for movement, or built-in weaponry.
\nMany clanks embrace body modifications for style as well as function, and members of other ancestries often turn to clank artisans to construct customized mobility aids and physical adornments. Other ancestries can create clanks, even using their own physical characteristics as inspiration, but it’s also common for clanks to build one another. A clank’s lifespan extends as long as they’re able to acquire or craft new parts, making their physical form effectively immortal. That said, their minds are subject to the effects of time, and deteriorate as the magic that powers them loses potency.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784381, + "modifiedTime": 1753922784381, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ed8BoLR4SHOpeV00", + "sort": 3400000, + "effects": [], + "_key": "!items!ed8BoLR4SHOpeV00" +} diff --git a/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json new file mode 100644 index 00000000..5a5e6515 --- /dev/null +++ b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json @@ -0,0 +1,25 @@ +{ + "name": "Drakona", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Drakona resemble wingless dragons in humanoid form and possess a powerful elemental breath.
All drakona have thick scales that provide excellent natural armor against both attacks and the forces of nature. They are large in size, ranging from 5 feet to 7 feet on average, with long sharp teeth. New teeth grow throughout a Drakona’s approximately 350-year lifespan, so they are never in danger of permanently losing an incisor. Unlike their dragon ancestors, drakona don’t have wings and can’t fly without magical aid. Members of this ancestry pass down the element of their breath through generations, though in rare cases, a drakona’s elemental power will differ from the rest of their family’s.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784382, + "modifiedTime": 1753922784382, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "VLeOEqkLS0RbF0tB", + "sort": 3400000, + "effects": [], + "_key": "!items!VLeOEqkLS0RbF0tB" +} diff --git a/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json new file mode 100644 index 00000000..11c5c9bd --- /dev/null +++ b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json @@ -0,0 +1,25 @@ +{ + "name": "Dwarf", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Dwarves are most easily recognized as short humanoids with square frames, dense musculature, and thick hair.
Their average height ranges from 4 to 5 ½ feet, and they are often broad in proportion to their stature. Their skin and nails contain a high amount of keratin, making them naturally resilient. This allows dwarves to embed gemstones into their bodies and decorate themselves with tattoos or piercings. Their hair grows thickly—usually on their heads, but some dwarves have thick hair across their bodies as well. Dwarves of all genders can grow facial hair, which they often style in elaborate arrangements. Typically, dwarves live up to 250 years of age, maintaining their muscle mass well into later life.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784382, + "modifiedTime": 1753922784382, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "pDt6fI6otv2E2odf", + "sort": 3400000, + "effects": [], + "_key": "!items!pDt6fI6otv2E2odf" +} diff --git a/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json new file mode 100644 index 00000000..182d0ed8 --- /dev/null +++ b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json @@ -0,0 +1,25 @@ +{ + "name": "Elf", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Elves are typically tall humanoids with pointed ears and acutely attuned senses.
Their ears vary in size and pointed shape, and as they age, the tips begin to droop. While elves come in a wide range of body types, they are all fairly tall, with heights ranging from about 6 to 6 ½ feet. All elves have the ability to drop into a celestial trance, rather than sleep. This allows them to rest effectively in a short amount of time.
\nSome elves possess what is known as a “mystic form,” which occurs when an elf has dedicated themself to the study or protection of the natural world so deeply that their physical form changes. These characteristics can include celestial freckles, the presence of leaves, vines, or flowers in their hair, eyes that flicker like fire, and more. Sometimes these traits are inherited from parents, but if an elf changes their environment or magical focus, their appearance changes over time. Because elves live for about 350 years, these traits can shift more than once throughout their lifespan.
<" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784382, + "modifiedTime": 1753922784382, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "q2l6g3Ssa04K84GO", + "sort": 3400000, + "effects": [], + "_key": "!items!q2l6g3Ssa04K84GO" +} diff --git a/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json new file mode 100644 index 00000000..04be55c1 --- /dev/null +++ b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json @@ -0,0 +1,25 @@ +{ + "name": "Faerie", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Faeries are winged humanoid creatures with insectile features.
These characteristics cover a broad spectrum from humanoid to insectoid—some possess additional arms, compound eyes, lantern organs, chitinous exoskeletons, or stingers. Because of their close ties to the natural world, they also frequently possess attributes that allow them to blend in with various plants. The average height of a faerie ranges from about 2 feet to 5 feet, but some faeries grow up to 7 feet tall. All faeries possess membranous wings and they each go through a process of metamorphosis. The process and changes differ from faerie to faerie, but during this transformation each individual manifests the unique appearance they will carry throughout the rest of their approximately 50-year lifespan.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784383, + "modifiedTime": 1753922784383, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "XzJVbb5NT9k79ykR", + "sort": 3400000, + "effects": [], + "_key": "!items!XzJVbb5NT9k79ykR" +} diff --git a/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json new file mode 100644 index 00000000..7a5c3f51 --- /dev/null +++ b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json @@ -0,0 +1,25 @@ +{ + "name": "Faun", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Fauns resemble humanoid goats with curving horns, square pupils, and cloven hooves.
Though their appearances may vary, most fauns have a humanoid torso and a goatlike lower body covered in dense fur. Faun faces can be more caprine or more humanlike, and they have a wide variety of ear and horn shapes. Faun horns range from short with minimal curvature to much larger with a distinct curl. The average faun ranges from 4 feet to 6 ½ feet tall, but their height can change dramatically from one moment to the next based on their stance. The majority of fauns have proportionately long limbs, no matter their size or shape, and are known for their ability to deliver powerful blows with their split hooves. Fauns live for roughly 225 years, and as they age, their appearance can become increasingly goatlike.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784383, + "modifiedTime": 1753922784383, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HaYhe6WqoXW5EbRl", + "sort": 3400000, + "effects": [], + "_key": "!items!HaYhe6WqoXW5EbRl" +} diff --git a/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json new file mode 100644 index 00000000..422d424a --- /dev/null +++ b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json @@ -0,0 +1,25 @@ +{ + "name": "Firbolg", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Firbolgs are bovine humanoids typically recognized by their broad noses and long, drooping ears.
Some have faces that are a blend of humanoid and bison, ox, cow, or other bovine creatures. Others, often referred to as minotaurs, have heads that entirely resemble cattle. They are tall and muscular creatures, with heights ranging from around 5 feet to 7 feet, and possess remarkable strength no matter their age. Some firbolgs are known to use this strength to charge their adversaries, an action that is particuarly effective for those who have one of the many varieties of horn styles commonly found in this ancestry. Though their unique characteristics can vary, all firbolgs are covered in fur, which can be muted and earth-toned in color, or come in a variety of pastels, such as soft pinks and blues. On average, firbolgs live for about 150 years.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784384, + "modifiedTime": 1753922784384, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "hzKmydI8sR3uk4CO", + "sort": 3400000, + "effects": [], + "_key": "!items!hzKmydI8sR3uk4CO" +} diff --git a/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json new file mode 100644 index 00000000..c73c15e3 --- /dev/null +++ b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json @@ -0,0 +1,25 @@ +{ + "name": "Fungril", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Fungril resemble humanoid mushrooms.
They can be either more humanoid or more fungal in appearance, and they come in an assortment of colors, from earth tones to bright reds, yellows, purples, and blues. Fungril display an incredible variety of bodies, faces, and limbs, as there’s no single common shape among them. Even their heights range from a tiny 2 feet tall to a staggering 7 feet tall. While the common lifespan of a fungril is about 300 years, some have been reported to live much longer. They can communicate nonverbally, and many members of this ancestry use a mycelial array to chemically exchange information with other fungril across long distances.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784385, + "modifiedTime": 1753922784385, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "J1hX7nBBc5jQiHli", + "sort": 3400000, + "effects": [], + "_key": "!items!J1hX7nBBc5jQiHli" +} diff --git a/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json new file mode 100644 index 00000000..b59b8b05 --- /dev/null +++ b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json @@ -0,0 +1,25 @@ +{ + "name": "Galapa", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Galapa resemble anthropomorphic turtles with large, domed shells into which they can retract.
On average, they range from 4 feet to 6 feet in height, and their head and body shapes can resemble any type of turtle. Galapa come in a variety of earth tones—most often shades of green and brown— and possess unique patterns on their shells. Members of this ancestry can draw their head, arms, and legs into their shell for protection to use it as a natural shield when defensive measures are needed. Some supplement their shell's strength or appearance by attaching armor or carving unique designs, but the process is exceedingly painful. Most galapa move slowly no matter their age, and they can live approximately 150 years.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784385, + "modifiedTime": 1753922784385, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "eZNG5Iv0yfbHs5CO", + "sort": 3400000, + "effects": [], + "_key": "!items!eZNG5Iv0yfbHs5CO" +} diff --git a/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json new file mode 100644 index 00000000..1569b225 --- /dev/null +++ b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json @@ -0,0 +1,25 @@ +{ + "name": "Giant", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Giants are towering humanoids with broad shoulders, long arms, and one to three eyes.
Adult giants range from 6 ½ to 8 ½ feet tall and are naturally muscular, regardless of body type. They are easily recognized by their wide frames and elongated arms and necks. Though they can have up to three eyes, all giants are born with none and remain sightless for their first year of life. Until a giant reaches the age of 10 and their features fully develop, the formation of their eyes may fluctuate. Those with a single eye are commonly known as cyclops. The average giant lifespan is about 75 years.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784386, + "modifiedTime": 1753922784386, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "3U8CncG92a7ERIJ0", + "sort": 3400000, + "effects": [], + "_key": "!items!3U8CncG92a7ERIJ0" +} diff --git a/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json new file mode 100644 index 00000000..62bb2a25 --- /dev/null +++ b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json @@ -0,0 +1,25 @@ +{ + "name": "Goblin", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Goblins are small humanoids easily recognizable by their large eyes and massive membranous ears.
With keen hearing and sharp eyesight, they perceive details both at great distances and in darkness, allowing them to move through less-optimal environments with ease. Their skin and eye colors are incredibly varied, with no one hue, either vibrant or subdued, more dominant than another. A typical goblin stands between 3 feet and 4 feet tall, and each of their ears is about the size of their head. Goblins are known to use ear positions to very specific effect when communicating nonverbally. A goblin’s lifespan is roughly 100 years, and many maintain their keen hearing and sight well into advanced age.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784386, + "modifiedTime": 1753922784386, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "EKPEdIz9lA9grPqH", + "sort": 3400000, + "effects": [], + "_key": "!items!EKPEdIz9lA9grPqH" +} diff --git a/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json new file mode 100644 index 00000000..aa8b2875 --- /dev/null +++ b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json @@ -0,0 +1,25 @@ +{ + "name": "Halfling", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Halflings are small humanoids with large hairy feet and prominent rounded ears.
On average, halflings are 3 to 4 feet in height, and their ears, nose, and feet are larger in proportion to the rest of their body. Members of this ancestry live for around 150 years, and a halfling’s appearance is likely to remain youthful even as they progress from adulthood into old age. Halflings are naturally attuned to the magnetic fields of the Mortal Realm, granting them a strong internal compass. They also possess acute senses of hearing and smell, and can often detect those who are familiar to them by the sound of their movements.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784387, + "modifiedTime": 1753922784387, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CtL2jDjvPOJxNJKm", + "sort": 3400000, + "effects": [], + "_key": "!items!CtL2jDjvPOJxNJKm" +} diff --git a/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json new file mode 100644 index 00000000..31706450 --- /dev/null +++ b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json @@ -0,0 +1,25 @@ +{ + "name": "Human", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Humans are most easily recognized by their dexterous hands, rounded ears, and bodies built for endurance.
Their average height ranges from just under 5 feet to about 6 ½ feet. They have a wide variety of builds, with some being quite broad, others lithe, and many inhabiting the spectrum in between. Humans are physically adaptable and adjust to harsh climates with relative ease. In general, humans live to an age of about 100, with their bodies changing dramatically between their youngest and oldest years.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784388, + "modifiedTime": 1753922784388, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wtJ5V5qRppLQn61n", + "sort": 3400000, + "effects": [], + "_key": "!items!wtJ5V5qRppLQn61n" +} diff --git a/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json new file mode 100644 index 00000000..0fbf4171 --- /dev/null +++ b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json @@ -0,0 +1,25 @@ +{ + "name": "Infernis", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Infernis are humanoids who possess sharp canine teeth, pointed ears, and horns. They are the descendants of demons from the Circles Below.
On average, infernis range in height from 5 feet to 7 feet and are known to have long fingers and pointed nails. Some have long, thin, and smooth tails that end in points, forks, or arrowheads. It’s common for infernis to have two or four horns—though some have crowns of many horns, or only one. These horns can also grow asymmetrically, forming unique, often curving, shapes that infernis enhance with carving and ornamentation. Their skin, hair, and horns come in an assortment of colors that can include soft pastels, stark tones, or vibrant hues, such as rosy scarlet, deep purple, and pitch black.
\nInfernis possess a “dread visage” that manifests both involuntarily, such as when they experience fear or other strong emotions, or purposefully, such as when they wish to intimidate an adversary. This visage can briefly modify their appearance in a variety of ways, including lengthening their teeth and nails, changing the colors of their eyes, twisting their horns, or enhancing their height. On average, infernis live up to 350 years, with some attributing this lifespan to their demonic lineage.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784388, + "modifiedTime": 1753922784388, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "hyxcuF2I0xcZSGkm", + "sort": 3400000, + "effects": [], + "_key": "!items!hyxcuF2I0xcZSGkm" +} diff --git a/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json new file mode 100644 index 00000000..7e8a524d --- /dev/null +++ b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json @@ -0,0 +1,25 @@ +{ + "name": "Katari", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Katari are feline humanoids with retractable claws, vertically slit pupils, and high, triangular ears.
They can also have small, pointed canine teeth, soft fur, and long whiskers that assist their perception and navigation. Their ears can swivel nearly 180 degrees to detect sound, adding to their heightened senses. Katari may look more or less feline or humanoid, with catlike attributes in the form of hair, whiskers, and a muzzle. About half of the katari population have tails. Their skin and fur come in a wide range of hues and patterns, including solid colors, calico tones, tabby stripes, and an array of spots, patches, marbling, or bands. Their height ranges from about 3 feet to 6 ½ feet, and they live to around 150 years.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784388, + "modifiedTime": 1753922784388, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "yyW0UM8srD9WuwW7", + "sort": 3400000, + "effects": [], + "_key": "!items!yyW0UM8srD9WuwW7" +} diff --git a/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json new file mode 100644 index 00000000..5f233648 --- /dev/null +++ b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json @@ -0,0 +1,25 @@ +{ + "name": "Orc", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Orcs are humanoids most easily recognized by their square features and boar-like tusks that protrude from their lower jaw.
Tusks come in various sizes, and though they extend from the mouth, they aren’t used for consuming food. Instead, many orcs choose to decorate their tusks with significant ornamentation. Orcs typically live for 125 years, and unless altered, their tusks continue to grow throughout the course of their lives. Their ears are pointed, and their hair and skin typically have green, blue, pink, or gray tones. Orcs tend toward a muscular build, and their average height ranges from 5 feet to 6 ½ feet.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784389, + "modifiedTime": 1753922784389, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "D1RbUsRV9HpTrPuF", + "sort": 3400000, + "effects": [], + "_key": "!items!D1RbUsRV9HpTrPuF" +} diff --git a/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json new file mode 100644 index 00000000..0b74e0b2 --- /dev/null +++ b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json @@ -0,0 +1,25 @@ +{ + "name": "Ribbet", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Ribbets resemble anthropomorphic frogs with protruding eyes and webbed hands and feet.
They have smooth (though sometimes warty) moist skin and eyes positioned on either side of their head. Some ribbets have hind legs more than twice the length of their torso, while others have short limbs. No matter their size (which ranges from about 3 feet to 4 ½ feet), ribbets primarily move by hopping. All ribbets have webbed appendages, allowing them to swim with ease. Some ribbets possess a natural green-and-brown camouflage, while others are vibrantly colored with bold patterns. No matter their appearance, all ribbets are born from eggs laid in the water, hatch into tadpoles, and after about 6 to 7 years, grow into amphibians that can move around on land. Ribbets live for approximately 100 years.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784389, + "modifiedTime": 1753922784389, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HwOoBKXOL9Tf5j85", + "sort": 3400000, + "effects": [], + "_key": "!items!HwOoBKXOL9Tf5j85" +} diff --git a/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json new file mode 100644 index 00000000..3798b8d9 --- /dev/null +++ b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json @@ -0,0 +1,25 @@ +{ + "name": "Simiah", + "img": "icons/svg/item-bag.svg", + "type": "ancestry", + "folder": null, + "system": { + "description": "Simiah resemble anthropomorphic monkeys and apes with long limbs and prehensile feet.
While their appearance reflects all simian creatures, from the largest gorilla to the smallest marmoset, their size does not align with their animal counterparts, and they can be anywhere from 2 to 6 feet tall. All simiah can use their dexterous feet for nonverbal communication, work, and combat. Additionally, some also have prehensile tails that can grasp objects or help with balance during difficult maneuvers. These traits grant members of this ancestry unique agility that aids them in a variety of physical tasks. In particular, simiah are skilled climbers and can easily transition from bipedal movement to knuckle-walking and climbing, and back again. On average, simiah live for about 100 years.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784390, + "modifiedTime": 1753922784390, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2yMLxxn7CHEvmShj", + "sort": 3400000, + "effects": [], + "_key": "!items!2yMLxxn7CHEvmShj" +} diff --git a/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json b/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json new file mode 100644 index 00000000..00c921b8 --- /dev/null +++ b/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json @@ -0,0 +1,25 @@ +{ + "name": "Highborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a highborne community means you’re accustomed to a life of elegance, opulence, and prestige within the upper echelons of society.
Traditionally, members of a highborne community possess incredible material wealth. While this can take a variety of forms depending on the community—including gold and other minerals, land, or controlling the means of production—this status always comes with power and influence. Highborne place great value on titles and possessions, and there is little social mobility within their ranks. Members of a highborne community often control the political and economic status of the areas in which they live due to their ability to influence people and the economy with their substantial wealth. The health and safety of the less affluent people who live in these locations often hinges on the ability of this highborne ruling class to prioritize the well-being of their subjects over profit.
\nHighborne are often amiable, candid, conniving, enterprising, ostentatious, and unflappable.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784392, + "modifiedTime": 1753922784392, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DVw2mOCHB8i0XeBz", + "sort": 3400000, + "effects": [], + "_key": "!items!DVw2mOCHB8i0XeBz" +} diff --git a/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json b/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json new file mode 100644 index 00000000..d7e7be4d --- /dev/null +++ b/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json @@ -0,0 +1,25 @@ +{ + "name": "Loreborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a loreborne community means you’re from a society that favors strong academic or political prowess.
Loreborne communities highly value knowledge, frequently in the form of historical preservation, political advancement, scientific study, skill development, or lore and mythology compilation. Most members of these communities research in institutions built in bastions of civilization, while some eclectic few thrive in gathering information from the natural world. Some may be isolationists, operating in smaller enclaves, schools, or guilds and following their own unique ethos. Others still wield their knowledge on a larger scale, making deft political maneuvers across governmental landscapes.
\nLoreborne are often direct, eloquent, inquisitive, patient, rhapsodic, and witty.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784392, + "modifiedTime": 1753922784392, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YsvlyqYoi8QQ8kwm", + "sort": 3400000, + "effects": [], + "_key": "!items!YsvlyqYoi8QQ8kwm" +} diff --git a/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json new file mode 100644 index 00000000..70fc6e94 --- /dev/null +++ b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json @@ -0,0 +1,25 @@ +{ + "name": "Orderborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of an orderborne community means you’re from a collective that focuses on discipline or faith, and you uphold a set of principles that reflect your experience there.
Orderborne are frequently some of the most powerful among the surrounding communities. By aligning the members of their society around a common value or goal, such as a god, doctrine, ethos, or even a shared business or trade, the ruling bodies of these enclaves are able to mobilize larger populations with less effort. While orderborne communities take a variety of forms—some even profoundly pacifistic—perhaps the most feared are those that structure themselves around military prowess. In such a case, it’s not uncommon for orderborne to provide soldiers for hire to other cities or countries.
\nOrderborne are often ambitious, benevolent, pensive, prudent, sardonic, and stoic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784393, + "modifiedTime": 1753922784393, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "TY2TejenASXtS484", + "sort": 3400000, + "effects": [], + "_key": "!items!TY2TejenASXtS484" +} diff --git a/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json new file mode 100644 index 00000000..fd52c55e --- /dev/null +++ b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json @@ -0,0 +1,25 @@ +{ + "name": "Ridgeborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a ridgeborne community means you’ve called the rocky peaks and sharp cliffs of the mountainside home.
Those who’ve lived in the mountains often consider themselves hardier than most because they’ve thrived among the most dangerous terrain many continents have to offer. These groups are adept at adaptation, developing unique technologies and equipment to move both people and products across difficult terrain. As such, ridgeborne grow up scrambling and climbing, making them sturdy and strong-willed. Ridgeborne localities appear in a variety of forms—some cities carve out entire cliff faces, others construct castles of stone, and still more live in small homes on windblown peaks. Outside forces often struggle to attack ridgeborne groups, as the small militias and large military forces of the mountains are adept at utilizing their high-ground advantage.
\nRidgeborne are often bold, hardy, indomitable, loyal, reserved, and stubborn.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784394, + "modifiedTime": 1753922784394, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "WHLA4qrdszXQHOuo", + "sort": 3400000, + "effects": [], + "_key": "!items!WHLA4qrdszXQHOuo" +} diff --git a/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json new file mode 100644 index 00000000..ac1e13ea --- /dev/null +++ b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json @@ -0,0 +1,25 @@ +{ + "name": "Seaborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a seaborne community means you lived on or near a large body of water.
Seaborne communities are built, both physically and culturally, around the specific waters they call home. Some of these groups live along the shore, constructing ports for locals and travelers alike. These harbors function as centers of commerce, tourist attractions, or even just a safe place to lay down one’s head after weeks of travel. Other seaborne live on the water in small boats or large ships, with the idea of “home” comprising a ship and its crew, rather than any one landmass. No matter their exact location, seaborne communities are closely tied to the ocean tides and the creatures who inhabit them. Seaborne learn to fish at a young age, and train from birth to hold their breath and swim in even the most tumultuous waters. Individuals from these groups are highly sought after for their sailing skills, and many become captains of vessels, whether within their own community, working for another, or even at the helm of a powerful naval operation.
\nSeaborne are often candid, cooperative, exuberant, fierce, resolute, and weathered.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784395, + "modifiedTime": 1753922784395, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "o5AA5J05N7EvH1rN", + "sort": 3400000, + "effects": [], + "_key": "!items!o5AA5J05N7EvH1rN" +} diff --git a/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json new file mode 100644 index 00000000..53d8f2e9 --- /dev/null +++ b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json @@ -0,0 +1,25 @@ +{ + "name": "Slyborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a slyborne community means you come from a group that operates outside the law, including all manner of criminals, grifters, and con artists.
Being part of a slyborne community means you come from a group that operates outside the law, including all manner of criminals, grifters, and con artists. Members of slyborne communities are brought together by their disreputable goals and their clever means of achieving them. Many people in these communities have an array of unscrupulous skills: forging, thievery, smuggling, and violence. People of any social class can be slyborne, from those who have garnered vast wealth and influence to those without a coin to their name. To the outside eye, slyborne might appear to be ruffians with no loyalty, but these communities possess some of the strictest codes of honor which, when broken, can result in a terrifying end for the transgressor.
\nSlyborne are often calculating, clever, formidable, perceptive, shrewd, and tenacious.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784396, + "modifiedTime": 1753922784396, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rGwCPMqZtky7SE6d", + "sort": 3400000, + "effects": [], + "_key": "!items!rGwCPMqZtky7SE6d" +} diff --git a/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json new file mode 100644 index 00000000..bb562103 --- /dev/null +++ b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json @@ -0,0 +1,25 @@ +{ + "name": "Underborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of an underborne community means you’re from a subterranean society.
Many underborne live right beneath the cities and villages of other collectives, while some live much deeper. These communities range from small family groups in burrows to massive metropolises in caverns of stone. In many locales, underborne are recognized for their incredible boldness and skill that enable great feats of architecture and engineering. Underborne are regularly hired for their bravery, as even the least daring among them has likely encountered formidable belowground beasts, and learning to dispatch such creatures is common practice amongst these societies. Because of the dangers of their environment, many underborne communities develop unique nonverbal languages that prove equally useful on the surface.
\nUnderborne are often composed, elusive, indomitable, innovative, resourceful, and unpretentious.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784398, + "modifiedTime": 1753922784398, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "eX0I1ZNMyD3nfaL1", + "sort": 3400000, + "effects": [], + "_key": "!items!eX0I1ZNMyD3nfaL1" +} diff --git a/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json new file mode 100644 index 00000000..f84b711c --- /dev/null +++ b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json @@ -0,0 +1,25 @@ +{ + "name": "Wanderborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a wanderborne community means you’ve lived as a nomad, forgoing a permanent home and experiencing a wide variety of cultures.
Unlike many communities that are defined by their locale, wanderborne are defined by their traveling lifestyle. Because of their frequent migration, wanderborne put less value on the accumulation of material possessions in favor of acquiring information, skills, and connections. While some wanderborne are allied by a common ethos, such as a religion or a set of political or economic values, others come together after shared tragedy, such as the loss of their home or land. No matter the reason, the dangers posed by life on the road and the choice to continue down that road together mean that wanderborne are known for their unwavering loyalty.
\nWanderborne are often inscrutable, magnanimous, mirthful, reliable, savvy, and unorthodox.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784398, + "modifiedTime": 1753922784398, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "82mDY2EIBfLkNwQj", + "sort": 3400000, + "effects": [], + "_key": "!items!82mDY2EIBfLkNwQj" +} diff --git a/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json new file mode 100644 index 00000000..49936d47 --- /dev/null +++ b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json @@ -0,0 +1,25 @@ +{ + "name": "Wildborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a wildborne community means you lived deep within the forest.
Wildborne communities are defined by their dedication to the conservation of their homelands, and many have strong religious or cultural ties to the fauna they live among. This results in unique architectural and technological advancements that favor sustainability over short-term, high-yield results. It is a hallmark of wildborne societies to integrate their villages and cities with the natural environment and avoid disturbing the lives of the plants and animals. While some construct their lodgings high in the branches of trees, others establish their homes on the ground beneath the forest canopy. It’s not uncommon for wildborne to remain reclusive and hidden within their woodland homes.
\nWildborne are often hardy, loyal, nurturing, reclusive, sagacious, and vibrant.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784398, + "modifiedTime": 1753922784398, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CRJ5pzJj4FjCtIlx", + "sort": 3400000, + "effects": [], + "_key": "!items!CRJ5pzJj4FjCtIlx" +} diff --git a/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json new file mode 100644 index 00000000..ec2c84ab --- /dev/null +++ b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json @@ -0,0 +1,29 @@ +{ + "name": "A Soldier’s Bond", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "o7t2fsAmRxKLoHrO", + "system": { + "description": "Once per
After you or a willing ally make any roll, you can spend 5
When 4 or more of the domain cards in your
When you would take magic damage, you can spend any number of
While you’re wearing armor, gain a +1 bonus to your
During a rest, when you choose to repair your armor as a
Once per long rest, mark a
You can see and hear through the projection as though it were you and affect the world as though you were there. A creature investigating the projection can tell it’s of magical origin. This effect lasts until your next rest or your projection takes any damage.
", + "domain": "grace", + "recallCost": 0, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784409, + "modifiedTime": 1753922784409, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YNOCNmZ96sCp9NEr", + "sort": 3400000, + "effects": [], + "_key": "!items!YNOCNmZ96sCp9NEr" +} diff --git a/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json new file mode 100644 index 00000000..1837018a --- /dev/null +++ b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json @@ -0,0 +1,29 @@ +{ + "name": "Banish", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "FcMclsLDy86EicA6", + "system": { + "description": "Make a
When the PCs roll with
When you choose not to equip
Once per
Once per
When you make a successful attack against an adversary, you can mark 4
When 4 or more of the domain cards in your
Make a
You use the full force of your body in a fight. On a successful attack using a weapon with a
When you make a
Additionally, once per rest when you would gain a
Make a
When 4 or more of the domain cards in your
Power Push: Make a
Tava’s Armor: Spend a
Ice Spike: Make a Spellcast Roll (12) to summon a large ice spike within Far range. If you use it as a weapon, make the Spellcast Roll against the target’s
Repudiate: You can interrupt a magical effect taking place. Make a
Create Construct: Spend a
Arcane Deflection: Once per
Time Lock: Target an object within
Wall of Flame: Make a Spellcast Roll (15). On a success, create a wall of magical flame between two points within Far range. All creatures in its path must choose a side to be on, and anything that subsequently passes through the wall takes 4d10+3 magic damage.
", + "domain": "codex", + "recallCost": 2, + "level": 4, + "type": "grimoire" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784420, + "modifiedTime": 1753922784420, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "R0LNheiZycZlZzV3", + "sort": 3400000, + "effects": [], + "_key": "!items!R0LNheiZycZlZzV3" +} diff --git a/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json new file mode 100644 index 00000000..73622106 --- /dev/null +++ b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json @@ -0,0 +1,29 @@ +{ + "name": "Book of Homet", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "hh2vkggcAQ0QUE6C", + "system": { + "description": "Pass Through: Make a
Plane Gate: Make a Spellcast Roll (14). Once per
Slumber: Make a
Arcane Barrage: Once per rest, spend any number of
Telepathy: Spend a Hope to open a line of mental communication with one target you can see. This connection lasts until your next rest or you cast Telepathy again.
", + "domain": "codex", + "recallCost": 2, + "level": 1, + "type": "grimoire" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784421, + "modifiedTime": 1753922784421, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "df4iRqQzRntrF6Qw", + "sort": 3400000, + "effects": [], + "_key": "!items!df4iRqQzRntrF6Qw" +} diff --git a/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json new file mode 100644 index 00000000..3902fad8 --- /dev/null +++ b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json @@ -0,0 +1,29 @@ +{ + "name": "Book of Korvax", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "7XeaYZPMB0SopAfo", + "system": { + "description": "Levitation: Make a
Recant: Spend a
Rune Circle: Mark a
Mystic Tether: Make a
Fireball: Make a Spellcast Roll against a target within
Transform: Make a
Eternal Enervation: Once per
Adjust Appearance: You magically shift your appearance and clothing to avoid recognition.
Parallela: Spend 2
Illusion: Make a
Wild Flame: Make a
Magic Hand: You conjure a magical hand with the same size and strength as your own within
Mysterious Mist: Make a Spellcast Roll (13) to cast a temporary thick fog that gathers in a stationary area within
Runic Lock: Make a
Arcane Door: When you have no adversaries within
Reveal: Make a Spellcast Roll. If there is anything magically hidden within
Memory Delve: Make a
Shared Clarity: Once per
Timejammer: Make a
Magic Immunity: Spend 5
Mark a
When you mark an
When you make a successful attack, you can mark a
Mark 2
When you
You can’t choose the same option more than once.
", + "domain": "blade", + "recallCost": 1, + "level": 5, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784433, + "modifiedTime": 1753922784433, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rnejRbUQsNGX1GMC", + "sort": 3400000, + "effects": [], + "_key": "!items!rnejRbUQsNGX1GMC" +} diff --git a/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json new file mode 100644 index 00000000..6bf0cfbb --- /dev/null +++ b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json @@ -0,0 +1,29 @@ +{ + "name": "Chokehold", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "hoDIPBzwYPxiSXGU", + "system": { + "description": "When you position yourself behind a creature who’s about your size, you can mark a
When a creature attacks a target who is Vulnerable in this way, they deal an extra 2d6 damage.
", + "domain": "midnight", + "recallCost": 1, + "level": 3, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784434, + "modifiedTime": 1753922784434, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "R5GYUalYXLLFRlNl", + "sort": 3400000, + "effects": [], + "_key": "!items!R5GYUalYXLLFRlNl" +} diff --git a/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json new file mode 100644 index 00000000..b0a974b5 --- /dev/null +++ b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json @@ -0,0 +1,29 @@ +{ + "name": "Cinder Grasp", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "u8Yz2hUTaF3N2fFT", + "system": { + "description": "Make a
When a creature acts while On Fire, they must take an extra 2d6 magic damage if they are still On Fire at the end of their action.
", + "domain": "arcana", + "recallCost": 1, + "level": 2, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784434, + "modifiedTime": 1753922784434, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5EP2Lgf7ojfrc0Is", + "sort": 3400000, + "effects": [], + "_key": "!items!5EP2Lgf7ojfrc0Is" +} diff --git a/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json new file mode 100644 index 00000000..ddaa8794 --- /dev/null +++ b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json @@ -0,0 +1,29 @@ +{ + "name": "Cloaking Blast", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "bCjkysrofWPiZqNh", + "system": { + "description": "When you make a successful
When 4 or more of the domain cards in your
Make a
Tekaira Armored Beetles: Mark a
Fire Flies: Make a
Spend any number of
Once per
Make a
You can interrupt a magical effect taking place by making a
Once per rest, when you
When you make a successful attack with a weapon, gain a bonus to your damage roll equal to either your
You can speak into the mind of any person with whom you’ve made physical contact. Once you’ve opened a channel with them, they can speak back into your mind. Additionally, you can mark a
Once per rest, you can apply all your focus toward a target of your choice. Until you attack another creature, you defeat the target, or the battle ends, gain a +1 bonus to your
Make a
On a success, vines reach out from your hands, causing the chosen effect and temporarily
Spend 3
You can’t target the same adversary more than once per attack.
", + "domain": "bone", + "recallCost": 1, + "level": 10, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784445, + "modifiedTime": 1753922784445, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "xFOSn8IVVNizgHFq", + "sort": 3400000, + "effects": [], + "_key": "!items!xFOSn8IVVNizgHFq" +} diff --git a/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json new file mode 100644 index 00000000..36b6e344 --- /dev/null +++ b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json @@ -0,0 +1,29 @@ +{ + "name": "Deft Deceiver", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nVCKcZkcoEivYJaF", + "system": { + "description": "Spend a
Once per rest, mark a
If you end this movement within
Make a
Once per long rest, spend 3
Make a
Additionally, when you succeed on the Spellcast Roll, all terrain within Very Far range becomes difficult to move through and structures within this range might sustain damage or crumble.
", + "domain": "arcana", + "recallCost": 2, + "level": 9, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784449, + "modifiedTime": 1753922784449, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "C0qLOwSSvZ6PG3Ws", + "sort": 3400000, + "effects": [], + "_key": "!items!C0qLOwSSvZ6PG3Ws" +} diff --git a/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json new file mode 100644 index 00000000..10b4383f --- /dev/null +++ b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json @@ -0,0 +1,29 @@ +{ + "name": "Eclipse", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "8qr1Y2tW3vLwNZOg", + "system": { + "description": "Make a
Additionally, when you or an ally succeeds with
This spell lasts until the GM spends a
When an ally within
After you make an
Make a
Make a
After a
When you would make a
When you
When you take a long rest, clear all unspent tokens.
", + "domain": "sage", + "recallCost": 2, + "level": 9, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784452, + "modifiedTime": 1753922784452, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "F2m9wvZ3v5c3yCtv", + "sort": 3400000, + "effects": [], + "_key": "!items!F2m9wvZ3v5c3yCtv" +} diff --git a/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json new file mode 100644 index 00000000..d4f61daa --- /dev/null +++ b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json @@ -0,0 +1,29 @@ +{ + "name": "Ferocity", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "Q9rmrfeKqcqBNnWc", + "system": { + "description": "When you cause an adversary to mark 1 or more
You can infuse a corpse with a moment of life to speak with it. Make a
Make a
Spend a
As an additional
Mark a
Before you make an
Make an attack with your primary weapon against a target within
Additionally, you can spend a Hope to make them temporarily
Make a
A sprite vanishes after granting a benefit or taking any damage.
", + "domain": "sage", + "recallCost": 2, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784457, + "modifiedTime": 1753922784457, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "JrkUMTzaFmQNBHVm", + "sort": 3400000, + "effects": [], + "_key": "!items!JrkUMTzaFmQNBHVm" +} diff --git a/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json new file mode 100644 index 00000000..ef6ce73e --- /dev/null +++ b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json @@ -0,0 +1,29 @@ +{ + "name": "Fortified Armor", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "yalAnCU3SndrYImF", + "system": { + "description": "While you are wearing
Once per
While Frenzied, you can’t use
Once per
When you take
When you’re tracking a specific creature or group of creatures based on signs of their passage, you can spend any number of
When you encounter creatures you’ve tracked in this way, gain a +1 bonus to your
When you fail an attack, you can mark a
Make a
Describe how you taunt a target within
When you
Additionally, when you deal enough damage to defeat an enemy, gain a Hope or clear a Stress.
", + "domain": "blade", + "recallCost": 2, + "level": 9, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784464, + "modifiedTime": 1753922784464, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "3zvjgZ5Od343wHzx", + "sort": 3400000, + "effects": [], + "_key": "!items!3zvjgZ5Od343wHzx" +} diff --git a/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json new file mode 100644 index 00000000..0220fe56 --- /dev/null +++ b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json @@ -0,0 +1,29 @@ +{ + "name": "Grace-Touched", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "W81LnTWzwmoaycTl", + "system": { + "description": "When 4 or more of the domain cards in your
Spend 2
Once per
Spend 2
Make a
When you deal damage to an adversary, you can spend 2
Describe the defensive stance you take and spend a
This
Make a
The target and anything within the area is Silenced until the GM spends a
Make a
When an ally within
When you’re targeted by an attack made from beyond
When you fail an action roll, your next
Your speech is imbued with power. After a
When you take a long rest, clear all unspent tokens.
", + "domain": "grace", + "recallCost": 1, + "level": 1, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784473, + "modifiedTime": 1753922784473, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "cWu1o82ZF7GvnbXc", + "sort": 3400000, + "effects": [], + "_key": "!items!cWu1o82ZF7GvnbXc" +} diff --git a/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json b/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json new file mode 100644 index 00000000..f09bb223 --- /dev/null +++ b/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json @@ -0,0 +1,29 @@ +{ + "name": "Invigoration", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nZr2hsu6Q6TlFXQn", + "system": { + "description": "When you or an ally within
Make a
You can only hold Invisibility on one creature at a time.
", + "domain": "grace", + "recallCost": 1, + "level": 3, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784475, + "modifiedTime": 1753922784475, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "KHkzA4Zrw8EWN1CH", + "sort": 3400000, + "effects": [], + "_key": "!items!KHkzA4Zrw8EWN1CH" +} diff --git a/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json new file mode 100644 index 00000000..0b370d70 --- /dev/null +++ b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json @@ -0,0 +1,29 @@ +{ + "name": "Know Thy Enemy", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "BQ1L4EiwOs84Xysp", + "system": { + "description": "When observing a creature, you can make an
Additionally on a success, you can mark a
When you deal damage to an adversary, you can mark a
Once per
Spend 3
This effect ends when it saves the target from a death move, you cast Life Ward on another target, or you take a
Make a
When you have a few minutes of silence to focus, you can mark a
Activate a
Make a
Gain a permanent +2 bonus to two of your
You lay your hands upon a creature and channel healing magic to close their wounds. When you can take a few minutes to focus on the target you’re helping, you can spend 2
Once per
Spend a
You can also send it to attack an adversary. When you do, make a
When 4 or more of the domain cards in your
Spend a
When you deal damage to an adversary within
You can speak the language of the natural world. When you want to speak to the plants and animals around you, make an
Additionally, before you make a
When you mark 1 or more
Once per
When you roll your damage dice, you can reroll any 1s or 2s.
", + "domain": "blade", + "recallCost": 1, + "level": 1, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784487, + "modifiedTime": 1753922784487, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "xheQZOIYp0ERQhT9", + "sort": 3400000, + "effects": [], + "_key": "!items!xheQZOIYp0ERQhT9" +} diff --git a/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json new file mode 100644 index 00000000..a9533ef0 --- /dev/null +++ b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json @@ -0,0 +1,29 @@ +{ + "name": "Notorious", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "wdhWWqWlPiBxtsvr", + "system": { + "description": "People know who you are and what you’ve done, and they treat you differently because of it. When you leverage your notoriety to get what you want, you can mark a
This card doesn’t count against your
When you have 2 or fewer
When you successfully make an attack with your weapon, you never deal damage beneath a target’s
Additionally, when a creature within your weapon’s range deals damage to an ally with an attack that doesn’t include you, you can mark a
Make a
While this spell is active, an adversary must mark a
Spend a
You have
Make a
You can channel arcane energy to have visions of the future. Once per
Make a
Before you make an attack, you can mark a
You can Rage Up twice per attack.
", + "domain": "blade", + "recallCost": 1, + "level": 6, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784496, + "modifiedTime": 1753922784496, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "GRL0cvs96vrTDckZ", + "sort": 3400000, + "effects": [], + "_key": "!items!GRL0cvs96vrTDckZ" +} diff --git a/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json new file mode 100644 index 00000000..955e143d --- /dev/null +++ b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json @@ -0,0 +1,29 @@ +{ + "name": "Rain of Blades", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "sCiN7DoysdKceIMd", + "system": { + "description": "Spend a
If a target you hit is
When an attack made against you from within
Once per
Once per rest, after an ally attempts an
Mark a
During a
When an attack made against you from beyond
Make a
When you move, the barrier follows you.
", + "domain": "sage", + "recallCost": 1, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784502, + "modifiedTime": 1753922784502, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HtWx5IIemCoorMj2", + "sort": 3400000, + "effects": [], + "_key": "!items!HtWx5IIemCoorMj2" +} diff --git a/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json new file mode 100644 index 00000000..d1ae8fa0 --- /dev/null +++ b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json @@ -0,0 +1,29 @@ +{ + "name": "Restoration", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "OwsbTSWzKq2WJmQN", + "system": { + "description": "After a
You can also spend a token from this card when touching a creature to clear the
When you take a long rest, clear all unspent tokens.
", + "domain": "splendor", + "recallCost": 2, + "level": 6, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784502, + "modifiedTime": 1753922784502, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wUQFsRtww18naYaq", + "sort": 3400000, + "effects": [], + "_key": "!items!wUQFsRtww18naYaq" +} diff --git a/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json new file mode 100644 index 00000000..27df7703 --- /dev/null +++ b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json @@ -0,0 +1,29 @@ +{ + "name": "Resurrection", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nZr2hsu6Q6TlFXQn", + "system": { + "description": "Make a
On a failure, you can’t cast Resurrection again for a week.
", + "domain": "splendor", + "recallCost": 2, + "level": 10, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784503, + "modifiedTime": 1753922784503, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "z30ciOwQI7g3tHla", + "sort": 3400000, + "effects": [], + "_key": "!items!z30ciOwQI7g3tHla" +} diff --git a/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json new file mode 100644 index 00000000..2bac97a1 --- /dev/null +++ b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json @@ -0,0 +1,29 @@ +{ + "name": "Rift Walker", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "gqnmAgerh7HhNo7t", + "system": { + "description": "Make a
You can drop the spell at any time to cast Rift Walker again and place the marking somewhere new.
", + "domain": "arcana", + "recallCost": 2, + "level": 6, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784503, + "modifiedTime": 1753922784503, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "vd5STqX29RpYbGxa", + "sort": 3400000, + "effects": [], + "_key": "!items!vd5STqX29RpYbGxa" +} diff --git a/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json new file mode 100644 index 00000000..0738c989 --- /dev/null +++ b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json @@ -0,0 +1,29 @@ +{ + "name": "Rise Up", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nKCmeAn7ESsb4byE", + "system": { + "description": "Gain a bonus to your
When you mark 1 or more
Once per rest, when you
You have a deeply personal trinket that can be infused with protective magic and held as a ward by you or an ally. Describe what it is and why it’s important to you. The ward’s holder can spend a
If the Ward Die result is 8, the ward’s power ends after it reduces damage this turn. It can be recharged for free on your next rest.
", + "domain": "arcana", + "recallCost": 0, + "level": 1, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784506, + "modifiedTime": 1753922784506, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "GEhBUmv9Bj7oJfHk", + "sort": 3400000, + "effects": [], + "_key": "!items!GEhBUmv9Bj7oJfHk" +} diff --git a/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json new file mode 100644 index 00000000..25e3ccfd --- /dev/null +++ b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json @@ -0,0 +1,29 @@ +{ + "name": "Safe Haven", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "8bWpGblWODdf8mDR", + "system": { + "description": "When you have a few minutes of calm to focus, you can spend 2
When you take a rest within your own Safe Haven, you can choose an additional
When 4 or more of the domain cards in your
Make a
Once per rest, when a creature within
Once per rest, when you succeed on an attack against an adversary, you can clear 3
Once per rest, make a
Make a
Your prowess is enhanced under the cover of shadow. While you’re shrouded in low light or darkness, you gain a +1 bonus to your
Spend a
You can only affect the material within
Once per rest, take on the
Mark a
You can only hold Shield Aura on one creature at a time.
", + "domain": "splendor", + "recallCost": 2, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784516, + "modifiedTime": 1753922784516, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rfIv6lln40Fh6EIl", + "sort": 3400000, + "effects": [], + "_key": "!items!rfIv6lln40Fh6EIl" +} diff --git a/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json new file mode 100644 index 00000000..6b28707a --- /dev/null +++ b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json @@ -0,0 +1,29 @@ +{ + "name": "Shrug It Off", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "kj3gwg5bmCqwFYze", + "system": { + "description": "When you would take damage, you can mark a
Mark an adversary within
Name and describe your signature combat move. Once per rest, when you perform this signature move as part of an action you’re taking, you can roll a d20 as your
Once per rest, spend 3
During a
Mark a
When you take magic damage, place tokens equal to the number of
When you make a successful attack against a target, you can spend any number of tokens to add a d6 for each token spent to your
When 4 or more of the domain cards in your
Spend a
When you roll with
If an ally within
After a long rest, place a number of tokens equal to your
When you take a
Make a
Targets who succeed take 3d20+3 magic damage. Targets who fail take 4d20+5 magic damage and are temporarily Stunned. While Stunned, they can’t use reactions and can’t take any other actions until they clear this
When an ally within
When an attack made against you fails, clear a
When you
When making a
Make a
Once per
On a success, you appear where you were intending to go. On a failure, you appear off course, with the range of failure determining how far off course.
", + "domain": "codex", + "recallCost": 2, + "level": 5, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784528, + "modifiedTime": 1753922784528, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HnPwVrWblYa9hwSt", + "sort": 3400000, + "effects": [], + "_key": "!items!HnPwVrWblYa9hwSt" +} diff --git a/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json new file mode 100644 index 00000000..6d1d7f3e --- /dev/null +++ b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json @@ -0,0 +1,29 @@ +{ + "name": "Tell No Lies", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "pu3xD4rEkdfdAvGc", + "system": { + "description": "Make a
Choose one of the following tempests and make a
Once per rest, spend a
When you take a rest, clear all unspent tokens.
", + "domain": "sage", + "recallCost": 1, + "level": 5, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784531, + "modifiedTime": 1753922784531, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "oUipGK84E2KjoKqh", + "sort": 3400000, + "effects": [], + "_key": "!items!oUipGK84E2KjoKqh" +} diff --git a/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json new file mode 100644 index 00000000..606c52fb --- /dev/null +++ b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json @@ -0,0 +1,29 @@ +{ + "name": "Thought Delver", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "6gA7SmNIblkMaYgr", + "system": { + "description": "You can peek into the minds of others. Spend a
On a roll with
Choose a target within
Once per rest, you can conjure a thick, twisting stalk within
Mark a
Once per
When you taunt or provoke a target within
Choose a target within
When you choose a new target or take a rest, clear all unspent tokens.
", + "domain": "midnight", + "recallCost": 1, + "level": 9, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784535, + "modifiedTime": 1753922784535, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "SDjjV61TC1NceV1m", + "sort": 3400000, + "effects": [], + "_key": "!items!SDjjV61TC1NceV1m" +} diff --git a/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json new file mode 100644 index 00000000..fccf16de --- /dev/null +++ b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json @@ -0,0 +1,29 @@ +{ + "name": "Unbreakable", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "D1MFCYakdFIKDmcD", + "system": { + "description": "When you mark your last
When you have a few minutes to prepare, you can mark a
Place a number of tokens equal to your Spellcast trait on this card. When you take an action while disguised, spend a token from this card. After the action that spends the last token is resolved, the disguise drops.
", + "domain": "midnight", + "recallCost": 0, + "level": 1, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784537, + "modifiedTime": 1753922784537, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "TV56wSysbU5xAlOa", + "sort": 3400000, + "effects": [], + "_key": "!items!TV56wSysbU5xAlOa" +} diff --git a/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json new file mode 100644 index 00000000..1c442f39 --- /dev/null +++ b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json @@ -0,0 +1,29 @@ +{ + "name": "Unleash Chaos", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "o7kvw9NRGvDZSce2", + "system": { + "description": "At the beginning of a session, place a number of tokens equal to your Spellcast trait on this card.
Make a
At the end of each session, clear all unspent tokens.
", + "domain": "arcana", + "recallCost": 1, + "level": 1, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784537, + "modifiedTime": 1753922784537, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "o62i0QdbUDIiAhSq", + "sort": 3400000, + "effects": [], + "_key": "!items!o62i0QdbUDIiAhSq" +} diff --git a/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json new file mode 100644 index 00000000..ac6392f5 --- /dev/null +++ b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json @@ -0,0 +1,29 @@ +{ + "name": "Untouchable", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "PeeIjbkBv41613yZ", + "system": { + "description": "Gain a bonus to your
When you would mark an
When 4 or more of the domain cards in your
When an attack made against you that would deal
Make a
You can use a different
When you deal damage, you can mark a
Make a
Additionally on a success, you can spend a
When you choose this card, permanently gain two of the following benefits:
Then place this card in your
You speak with an unmatched power and authority. You have
Additionally, you’re emboldened in moments of duress. When all of your
Spend a
When you make a successful attack against a target within
Make a
Once per long rest, mark a
While the Wild Surge Die is active, you add its value to every action roll you make. After you add its value to a roll, increase the Wild Surge Die’s value by one. When the die’s value would exceed 6 or you take a rest, this form drops and you must mark an additional Stress.
", + "domain": "sage", + "recallCost": 2, + "level": 7, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784547, + "modifiedTime": 1753922784547, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DjnKlZQYaWdQGKcK", + "sort": 3400000, + "effects": [], + "_key": "!items!DjnKlZQYaWdQGKcK" +} diff --git a/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json new file mode 100644 index 00000000..9d545ebe --- /dev/null +++ b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json @@ -0,0 +1,29 @@ +{ + "name": "Words of Discord", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "6gA7SmNIblkMaYgr", + "system": { + "description": "Whisper words of discord to an adversary within
Once this attack is over, the target realizes what happened. The next time you cast Words of Discord on them, gain a −5 penalty to the Spellcast Roll.
", + "domain": "grace", + "recallCost": 1, + "level": 5, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784548, + "modifiedTime": 1753922784548, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ZjAdi1FSNCDDHI3X", + "sort": 3400000, + "effects": [], + "_key": "!items!ZjAdi1FSNCDDHI3X" +} diff --git a/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json new file mode 100644 index 00000000..40d20f9d --- /dev/null +++ b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json @@ -0,0 +1,29 @@ +{ + "name": "Wrangle", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "n7pgTBYSItMzCX0s", + "system": { + "description": "Make an
Make a
A former druidic grove lying fallow and fully reclaimed by nature.
", + "type": "Exploration
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784553, + "modifiedTime": 1753922784553, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "pGEdzdLkqYtBhxnG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Abandoned Grove", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!pGEdzdLkqYtBhxnG" +} diff --git a/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json new file mode 100644 index 00000000..e3a89592 --- /dev/null +++ b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json @@ -0,0 +1,130 @@ +{ + "name": "Ambushed", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 0, + "tier": 1, + "description": "An ambush is set to catch an unsuspecting party off-guard.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784553, + "modifiedTime": 1753922784553, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uGEdNYERCTJBEjc5", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Ambushed", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uGEdNYERCTJBEjc5" +} diff --git a/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json new file mode 100644 index 00000000..5d088ad9 --- /dev/null +++ b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json @@ -0,0 +1,130 @@ +{ + "name": "Ambushers", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 0, + "tier": 1, + "description": "An ambush is set by the PCs to catch unsuspecting adversaries off-guard.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784554, + "modifiedTime": 1753922784554, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uXZpebPR77YQ1oXI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Ambushers", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uXZpebPR77YQ1oXI" +} 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 new file mode 100644 index 00000000..44c86d30 --- /dev/null +++ b/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json @@ -0,0 +1,130 @@ +{ + "name": "Burning Heart of the Woods", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "MfrIkJK12PAEfbPL", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 16, + "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
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784554, + "modifiedTime": 1753922784554, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "oY69NN4rYxoRE4hl", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Burning Heart of the Woods", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!oY69NN4rYxoRE4hl" +} diff --git a/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json new file mode 100644 index 00000000..463473c3 --- /dev/null +++ b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json @@ -0,0 +1,130 @@ +{ + "name": "Bustling Marketplace", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 10, + "tier": 1, + "description": "The economic heart of the settlement, with local artisans, traveling merchants, and patrons across social classes.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784554, + "modifiedTime": 1753922784554, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HZKA7hkej7JJY503", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Bustling Marketplace", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!HZKA7hkej7JJY503" +} diff --git a/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json new file mode 100644 index 00000000..2aeb3834 --- /dev/null +++ b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json @@ -0,0 +1,130 @@ +{ + "name": "Castle Siege", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "MfrIkJK12PAEfbPL", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 17, + "tier": 3, + "description": "An active siege with an attacking force fighting to gain entry to a fortified castle.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784555, + "modifiedTime": 1753922784555, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "1eZ32Esq7rfZOjlu", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Castle Siege", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!1eZ32Esq7rfZOjlu" +} diff --git a/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json new file mode 100644 index 00000000..ae432226 --- /dev/null +++ b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json @@ -0,0 +1,130 @@ +{ + "name": "Chaos Realm", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 20, + "tier": 4, + "description": "An otherworldly space where the laws of reality are unstable and dangerous.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784556, + "modifiedTime": 1753922784556, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2Z1mKc65LxNk2PqR", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Chaos Realm", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2Z1mKc65LxNk2PqR" +} diff --git a/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json new file mode 100644 index 00000000..a1e04625 --- /dev/null +++ b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json @@ -0,0 +1,130 @@ +{ + "name": "Cliffside Ascent", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 12, + "tier": 1, + "description": "A steep, rocky cliffside tall enough to make traversal dangerous.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784557, + "modifiedTime": 1753922784557, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "LPpfdlNKqiZIl04w", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cliffside Ascent", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!LPpfdlNKqiZIl04w" +} diff --git a/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json new file mode 100644 index 00000000..104b72be --- /dev/null +++ b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json @@ -0,0 +1,130 @@ +{ + "name": "Cult Ritual", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 14, + "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
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784557, + "modifiedTime": 1753922784557, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "QAXXiOKBDmCTauHD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Ritual", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!QAXXiOKBDmCTauHD" +} diff --git a/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json new file mode 100644 index 00000000..40924a5b --- /dev/null +++ b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json @@ -0,0 +1,130 @@ +{ + "name": "Divine Usurpation", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 20, + "tier": 4, + "description": "A massive ritual designed to breach the gates of the Hallows Above and unseat the New Gods themselves.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784558, + "modifiedTime": 1753922784558, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "4DLYez7VbMCFDAuZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Divine Usurpation", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!4DLYez7VbMCFDAuZ" +} diff --git a/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json new file mode 100644 index 00000000..2310ebdb --- /dev/null +++ b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json @@ -0,0 +1,130 @@ +{ + "name": "Hallowed Temple", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 13, + "tier": 2, + "description": "A bustling but well-kept temple that provides healing and hosts regular services, overseen by a priest or seraph.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784558, + "modifiedTime": 1753922784558, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dsA6j69AnaJhUyqH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hallowed Temple", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dsA6j69AnaJhUyqH" +} diff --git a/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json new file mode 100644 index 00000000..600dc8ae --- /dev/null +++ b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json @@ -0,0 +1,130 @@ +{ + "name": "Haunted City", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 14, + "tier": 2, + "description": "An abandoned city populated by the restless spirits of eras past.
", + "type": "Exploration
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784559, + "modifiedTime": 1753922784559, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "OzYbizKraK92FDiI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Haunted City", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!OzYbizKraK92FDiI" +} diff --git a/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json new file mode 100644 index 00000000..8ca46849 --- /dev/null +++ b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json @@ -0,0 +1,130 @@ +{ + "name": "Imperial Court", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 20, + "tier": 4, + "description": "The majestic domain of a powerful empire, lavishly appointed with stolen treasures.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784559, + "modifiedTime": 1753922784559, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "jr1xAoXzVwVblzxI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Imperial Court", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!jr1xAoXzVwVblzxI" +} diff --git a/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json new file mode 100644 index 00000000..09f4fc4d --- /dev/null +++ b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json @@ -0,0 +1,130 @@ +{ + "name": "Local Tavern", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 10, + "tier": 1, + "description": "A lively tavern that serves as the social hub for its town.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784561, + "modifiedTime": 1753922784561, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "cM4X81DOyvxNIi52", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Local Tavern", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!cM4X81DOyvxNIi52" +} diff --git a/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json new file mode 100644 index 00000000..ba9859aa --- /dev/null +++ b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json @@ -0,0 +1,130 @@ +{ + "name": "Mountain Pass", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 15, + "tier": 2, + "description": "Stony peaks that pierce the clouds, with a twisting path winding its way up and over through many switchbacks.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784562, + "modifiedTime": 1753922784562, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "acMu9wJrMZZzLSTJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Mountain Pass", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!acMu9wJrMZZzLSTJ" +} diff --git a/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json b/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json new file mode 100644 index 00000000..60c542f1 --- /dev/null +++ b/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json @@ -0,0 +1,130 @@ +{ + "name": "Necromancer’s Ossuary", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 19, + "tier": 4, + "description": "A dusty crypt with a library, twisting corridors, and abundant sarcophagi, spattered with the blood of ill-fated invaders.
", + "type": "Exploration
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784563, + "modifiedTime": 1753922784563, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "h3KyRL7AshhLAmcH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Necromancer’s Ossuary", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!h3KyRL7AshhLAmcH" +} diff --git a/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json new file mode 100644 index 00000000..c61dae98 --- /dev/null +++ b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json @@ -0,0 +1,130 @@ +{ + "name": "Outpost Town", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 12, + "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
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784564, + "modifiedTime": 1753922784564, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YezryR32uo39xRxW", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outpost Town", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YezryR32uo39xRxW" +} diff --git a/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json new file mode 100644 index 00000000..2ac3d2b7 --- /dev/null +++ b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json @@ -0,0 +1,130 @@ +{ + "name": "Pitched Battle", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "MfrIkJK12PAEfbPL", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 17, + "tier": 3, + "description": "A massive combat between two large groups of armed combatants.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784565, + "modifiedTime": 1753922784565, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "EWD3ZsLoK6VMVOf7", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pitched Battle", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!EWD3ZsLoK6VMVOf7" +} diff --git a/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json new file mode 100644 index 00000000..c2a7c10b --- /dev/null +++ b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json @@ -0,0 +1,130 @@ +{ + "name": "Raging River", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 10, + "tier": 1, + "description": "A swift-moving river without a bridge crossing, deep enough to sweep away most people.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784565, + "modifiedTime": 1753922784565, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "t4cdqTfzcqP3H1vJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Raging River", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!t4cdqTfzcqP3H1vJ" +} From a119683c311197ee564fc1f5e52e029ee54d3b76 Mon Sep 17 00:00:00 2001 From: Murilo Brito <91566541+moliloo@users.noreply.github.com> Date: Wed, 30 Jul 2025 23:50:46 -0300 Subject: [PATCH 06/13] [Bugfix] Fix style rules to enrich editor (#488) * fix style rules to enrich editor * fix li font style --- styles/less/global/index.less | 1 + styles/less/global/prose-mirror.less | 69 ++++++++++++++++++++++--- styles/less/global/tab-description.less | 13 +++++ 3 files changed, 77 insertions(+), 6 deletions(-) create mode 100644 styles/less/global/tab-description.less diff --git a/styles/less/global/index.less b/styles/less/global/index.less index c37de0c7..031a9cfc 100644 --- a/styles/less/global/index.less +++ b/styles/less/global/index.less @@ -4,6 +4,7 @@ @import './tab-navigation.less'; @import './tab-form-footer.less'; @import './tab-actions.less'; +@import './tab-description.less'; @import './tab-features.less'; @import './tab-effects.less'; @import './tab-settings.less'; diff --git a/styles/less/global/prose-mirror.less b/styles/less/global/prose-mirror.less index 33e942e8..f7b78af3 100644 --- a/styles/less/global/prose-mirror.less +++ b/styles/less/global/prose-mirror.less @@ -1,6 +1,7 @@ @import '../utils/colors.less'; +@import '../utils/fonts.less'; -.application { +.application.daggerheart { prose-mirror { height: 100% !important; @@ -11,14 +12,70 @@ scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; h1 { - font-size: 36px; - } - h2 { font-size: 32px; } + h2 { + font-size: 28px; + font-weight: 600; + } h3 { - font-size: 24px; + font-size: 20px; + font-weight: 600; + } + h4 { + font-size: 16px; + color: @beige; + font-weight: 600; + } + + table { + font-family: @font-body; + border-radius: 3px; + + thead { + background-color: light-dark(@dark-blue, @golden); + color: light-dark(@beige, @dark-blue); + } + + tr:nth-child(odd) { + background-color: light-dark(@dark-blue-40, @golden-40); + border-color: light-dark(@golden, @dark-blue); + } + tr:nth-child(even) { + background-color: light-dark(@dark-blue-10, @golden-10); + border-color: light-dark(@golden, @dark-blue); + } + } + + ul, + ol { + margin: 1rem 0; + padding: 0 0 0 1.25rem; + + li { + font-family: @font-body; + margin-bottom: 0.25rem; + } + } + + ul { + list-style: disc; + } + + pre { + code { + border-radius: 6px; + background-color: @dark; + color: @beige; + border-color: @dark-blue; + } + } + + blockquote { + border-radius: 3px; + border-left: 3px solid light-dark(@dark-blue-40, @golden-40); + background-color: light-dark(@dark-blue-10, @golden-10); } } } -} \ No newline at end of file +} diff --git a/styles/less/global/tab-description.less b/styles/less/global/tab-description.less new file mode 100644 index 00000000..4d81f2f2 --- /dev/null +++ b/styles/less/global/tab-description.less @@ -0,0 +1,13 @@ +@import '../utils/colors.less'; +@import '../utils/fonts.less'; + +.daggerheart.dh-style { + .tab.active.description { + overflow-y: hidden !important; + height: -webkit-fill-available !important; + + fieldset { + height: -webkit-fill-available; + } + } +} From 3e333d3533860bef9e52cafd811a16c1797cb71d Mon Sep 17 00:00:00 2001 From: Murilo Brito <91566541+moliloo@users.noreply.github.com> Date: Wed, 30 Jul 2025 23:58:37 -0300 Subject: [PATCH 07/13] add domain icon into domain cards (#489) --- styles/less/global/item-header.less | 23 ++++++++++++++++++-- styles/less/utils/colors.less | 3 +++ templates/sheets/items/domainCard/header.hbs | 4 ++++ 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/styles/less/global/item-header.less b/styles/less/global/item-header.less index 3b3e7ee9..1fb27325 100755 --- a/styles/less/global/item-header.less +++ b/styles/less/global/item-header.less @@ -1,4 +1,15 @@ @import '../utils/colors.less'; +@import '../utils/mixin.less'; + +.appTheme({ + .item-card-header .item-icons-list .item-icon img { + filter: invert(88%) sepia(98%) saturate(1784%) hue-rotate(311deg) brightness(104%) contrast(91%); + } +}, { + .item-card-header .item-icons-list .item-icon img { + filter: invert(87%) sepia(15%) saturate(343%) hue-rotate(333deg) brightness(110%) contrast(87%); + } +}); .application.sheet.daggerheart.dh-style { .item-sheet-header { @@ -68,7 +79,9 @@ .item-icons-list { position: absolute; display: flex; - align-items: center; + flex-direction: column; + gap: 5px; + align-items: end; justify-content: center; top: 50px; right: 10px; @@ -82,7 +95,8 @@ max-width: 50px; height: 50px; font-size: 1.2rem; - background: light-dark(@light-black, @semi-transparent-dark-blue); + background: light-dark(@dark-blue-60, @dark-golden-80); + backdrop-filter: blur(8px); border: 4px double light-dark(@beige, @golden); color: light-dark(@beige, @golden); border-radius: 999px; @@ -99,6 +113,11 @@ font-size: 0.8rem; } + img { + height: 24px; + width: 24px; + } + &:hover { max-width: 300px; padding: 0 10px; diff --git a/styles/less/utils/colors.less b/styles/less/utils/colors.less index 033a42cb..ea4cdcb7 100755 --- a/styles/less/utils/colors.less +++ b/styles/less/utils/colors.less @@ -5,6 +5,9 @@ @golden-10: #f3c26710; @golden-40: #f3c26740; +@dark-golden: #2b1d03; +@dark-golden-80: #2b1d0380; + @red: #e54e4e; @red-10: #e54e4e10; @red-40: #e54e4e40; diff --git a/templates/sheets/items/domainCard/header.hbs b/templates/sheets/items/domainCard/header.hbs index 566de11c..dd048236 100644 --- a/templates/sheets/items/domainCard/header.hbs +++ b/templates/sheets/items/domainCard/header.hbs @@ -6,6 +6,10 @@ {{source.system.recallCost}} +You can use this stitcher to spend any number of Hope and clear that many Armor Slots.
", "quantity": 1, - "actions": {}, + "actions": { + "htoGx8qrv8trds81": { + "type": "effect", + "_id": "htoGx8qrv8trds81", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": true, + "key": "hope", + "value": 1, + "step": 1, + "keyIsID": false + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Stitch", + "img": "icons/skills/trades/textiles-stitching-leather-brown.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588973384, - "modifiedTime": 1753623129674, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990471152, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 6ec2165a..fc76dbc1 100644 --- a/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json +++ b/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587072840, - "modifiedTime": 1753587081602, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991772642, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!JGD3M9hBHtVAA8XP.I5vgALTNDVApxy9d" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587033468, - "modifiedTime": 1753587890614, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993286360, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ec74d7a2..bb4e36bf 100644 --- a/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json +++ b/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json @@ -57,7 +57,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You are Vulnerable until you mark a Hit Point.
", "tint": "#ffffff", "statuses": [ "vulnerable" @@ -68,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592689854, - "modifiedTime": 1753592707034, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991240756, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!eAXHdzA5qNPldOpn.nryJhrF26hyFQUxH" } diff --git a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json index 2609a130..e30a3678 100644 --- a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json +++ b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753586918808, - "modifiedTime": 1753586928363, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991761053, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!FOPQNqXbiVO0ilYL.HVCJp9Tkhr1i4Oc1" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753586850134, - "modifiedTime": 1753587920117, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993272604, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!FOPQNqXbiVO0ilYL" } diff --git a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json index 94cfbcb9..80b63739 100644 --- a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json +++ b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587164842, - "modifiedTime": 1753587173489, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991748543, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!CVBbFfOY75YwyQsp.COrKb7gBin4Ro6r6" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587097370, - "modifiedTime": 1753587932738, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993259552, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!CVBbFfOY75YwyQsp" } diff --git a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json index 274efd2b..3f5815a8 100644 --- a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json +++ b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587008395, - "modifiedTime": 1753587017580, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993225233, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!eeBhZSGLjuNZuJuI.1VAQYZ1YYc9ew9UR" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753586944889, - "modifiedTime": 1753587943049, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993217076, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 eafe74d0..6518176c 100644 --- a/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json +++ b/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json @@ -20,7 +20,12 @@ "max": null, "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "IqlpqsgurXsUEQhs", + "onSave": false + } + ], "target": { "type": null, "amount": null @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Death Tea", + "img": "icons/consumables/drinks/wine-amphora-clay-gray.webp", + "origin": "Compendium.daggerheart.consumables.Item.xDnJeF1grkmKck8Q", + "transfer": false, + "_id": "IqlpqsgurXsUEQhs", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "After you drink this tea, you instantly kill your target when you critically succeed on an attack. If you don’t critically succeed on an attack before your next long rest, you die.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993240647, + "modifiedTime": 1753993244347, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!xDnJeF1grkmKck8Q.IqlpqsgurXsUEQhs" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592717630, - "modifiedTime": 1753592777582, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993240672, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!xDnJeF1grkmKck8Q" } diff --git a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json index d11569cc..98a7b646 100644 --- a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json +++ b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "damage": { @@ -52,7 +52,7 @@ "includeBase": false }, "target": { - "type": null, + "type": "self", "amount": null }, "effects": [], @@ -75,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590938047, - "modifiedTime": 1753591027903, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993201934, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 9b4c1c0f..2e3eaebe 100644 --- a/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json +++ b/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587185754, - "modifiedTime": 1753588649868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993190563, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 abea2847..b2467459 100644 --- a/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json +++ b/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json @@ -6,7 +6,124 @@ "system": { "description": "You can eat this meal to clear all HP and Stress and gain 1d4 Hope.
", "quantity": 1, - "actions": {}, + "actions": { + "TL1fJitAJmDzrnHT": { + "type": "healing", + "_id": "TL1fJitAJmDzrnHT", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "@system.resources.hitPoints.max" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + }, + { + "value": { + "custom": { + "enabled": true, + "formula": "@system.resources.stress.max" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + }, + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": null + }, + "applyTo": "hope", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Eat", + "img": "icons/consumables/food/bowl-stew-tofu-potato-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +138,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591925502, - "modifiedTime": 1753623203098, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993182306, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!aX6NyxkNzu0LcJpt" } diff --git a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json index 86e4dd75..8a32c524 100644 --- a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json +++ b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json @@ -7,9 +7,9 @@ "description": "You can apply this venom to a weapon that deals physical damage to add a d6 to your next damage roll with that weapon.
", "quantity": 1, "actions": { - "PxLGZBoJCS0L4QZl": { - "type": "damage", - "_id": "PxLGZBoJCS0L4QZl", + "BuzdaD4vLsbBS2gy": { + "type": "effect", + "_id": "BuzdaD4vLsbBS2gy", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,53 +17,79 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "physical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "yx4ZkXeuXgw2KvV4", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], - "name": "Apply Venom", + "name": "Apply", "img": "icons/consumables/potions/bottle-conical-corked-labeled-skull-poison-green.webp", "range": "" } }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Grindletooth Venom", + "img": "icons/consumables/potions/bottle-conical-corked-labeled-skull-poison-green.webp", + "origin": "Compendium.daggerheart.consumables.Item.8WkhvSzeOmLdnoLJ", + "transfer": false, + "_id": "yx4ZkXeuXgw2KvV4", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d6", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You deal 1d6 additional physical damage on your next damage roll with the weapon the venom was applied to.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753991894209, + "modifiedTime": 1753992577548, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!8WkhvSzeOmLdnoLJ.yx4ZkXeuXgw2KvV4" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587386639, - "modifiedTime": 1753587966903, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993171395, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 faea5ef7..7638aaaa 100644 --- a/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json +++ b/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -100,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592174440, - "modifiedTime": 1753592211868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993162834, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 2599f827..14cf057b 100644 --- a/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json +++ b/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+1 HP.
", "quantity": 1, - "actions": {}, + "actions": { + "O5MYyHpkiEz9uf6A": { + "type": "healing", + "_id": "O5MYyHpkiEz9uf6A", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "dice": "d4", + "bonus": 1, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-corked-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588839527, - "modifiedTime": 1753623230976, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993155821, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 276d8595..1981a439 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 @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "QyzXAnvho7lVQQtP", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Homet’s Secret Potion", + "img": "icons/consumables/potions/conical-ornate-purple.webp", + "origin": "Compendium.daggerheart.consumables.Item.VSwa1LpQ9PjZKsWF", + "transfer": false, + "_id": "QyzXAnvho7lVQQtP", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "The next successful attack you make critically succeeds.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992037102, + "modifiedTime": 1753992049261, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!VSwa1LpQ9PjZKsWF.QyzXAnvho7lVQQtP" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589998065, - "modifiedTime": 1753590051364, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993147954, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!VSwa1LpQ9PjZKsWF" } 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 102359d3..0f9fe097 100644 --- a/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json +++ b/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json @@ -7,9 +7,9 @@ "description": "You can apply this venom to a weapon that deals physical damage to add a d8 to your next damage roll with that weapon.
", "quantity": 1, "actions": { - "qCr94sRkuODpywiZ": { - "type": "damage", - "_id": "qCr94sRkuODpywiZ", + "KhZ4WVT9cLA1a1y8": { + "type": "effect", + "_id": "KhZ4WVT9cLA1a1y8", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,53 +17,79 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d8", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "physical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "P7tbNjq58bQ9R1Cc", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], - "name": "Apply Venom", + "name": "Apply", "img": "icons/consumables/potions/potion-jar-corked-labeled-poison-skull-green.webp", "range": "" } }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Improved Grindletooth Venom", + "img": "icons/consumables/potions/potion-jar-corked-labeled-poison-skull-green.webp", + "origin": "Compendium.daggerheart.consumables.Item.BqBWXXe9T07AMV4u", + "transfer": false, + "_id": "P7tbNjq58bQ9R1Cc", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d8", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You deal 1d8 additional physical damage on your next damage roll with the weapon the venom was applied to.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992123122, + "modifiedTime": 1753992593459, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!BqBWXXe9T07AMV4u.P7tbNjq58bQ9R1Cc" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588170670, - "modifiedTime": 1753588234520, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992123149, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!BqBWXXe9T07AMV4u" } 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 4442e555..c5f17fea 100644 --- a/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json +++ b/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589747286, - "modifiedTime": 1753589806499, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993121571, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 b1328d06..51d5b20d 100644 --- a/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json +++ b/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589623872, - "modifiedTime": 1753589654996, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993114459, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 b45a434f..bba3e34d 100644 --- a/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json +++ b/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589816684, - "modifiedTime": 1753589854510, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993108884, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 5e16f5ad..daeec81e 100644 --- a/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json +++ b/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589675185, - "modifiedTime": 1753589723393, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993102418, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ba6c1f17..ad02bbf2 100644 --- a/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json +++ b/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589874661, - "modifiedTime": 1753589930795, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993094810, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 90c758f4..ba145323 100644 --- a/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json +++ b/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+2 HP.
", "quantity": 1, - "actions": {}, + "actions": { + "Xm2ldAlmUQY4jlLb": { + "type": "healing", + "_id": "Xm2ldAlmUQY4jlLb", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "dice": "d4", + "bonus": 2, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-round-label-cork-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591046168, - "modifiedTime": 1753623266522, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993085839, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 43bfa7ed..5fbd865d 100644 --- a/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json +++ b/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+2 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "3duuNVqCeQaUUKTo": { + "type": "healing", + "_id": "3duuNVqCeQaUUKTo", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": 2 + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-round-label-cork-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591113317, - "modifiedTime": 1753623276997, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993078821, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 0c969d9f..5fe693f8 100644 --- a/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json +++ b/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589545730, - "modifiedTime": 1753589592499, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993065896, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 5b50792f..2e883d2d 100644 --- a/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json +++ b/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4 HP.
", "quantity": 1, - "actions": {}, + "actions": { + "9HVL2MPFX9VGiSsV": { + "type": "healing", + "_id": "9HVL2MPFX9VGiSsV", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/potion-tube-corked-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587253431, - "modifiedTime": 1753623289863, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993058583, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 f5a18ef8..d8cdb7a9 100644 --- a/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json +++ b/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "fdjpkjhzHQOrZPm0": { + "type": "healing", + "_id": "fdjpkjhzHQOrZPm0", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/potion-tube-corked-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587324465, - "modifiedTime": 1753623297325, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993052307, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!b6vGSPFWOlzZZDLO" } diff --git a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json index ca8fc106..8ccb3846 100644 --- a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json +++ b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json @@ -25,12 +25,17 @@ ], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "rMno0zO5Cbwlu4zn", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Use", @@ -40,7 +45,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Morphing Clay", + "img": "icons/commodities/stone/ore-chunk-brown.webp", + "origin": "Compendium.daggerheart.consumables.Item.f1NHVSIHJJCIOaBl", + "transfer": false, + "_id": "rMno0zO5Cbwlu4zn", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Your face is unrecognizable until your next rest.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992314196, + "modifiedTime": 1753992340780, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!f1NHVSIHJJCIOaBl.rMno0zO5Cbwlu4zn" + } + ], "folder": null, "sort": 0, "ownership": { @@ -52,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588254032, - "modifiedTime": 1753588327474, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993039274, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 445ea187..5dc7f067 100644 --- a/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json +++ b/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json @@ -7,9 +7,9 @@ "description": "You can apply this dust to a weapon that deals magic damage to add a d12 to your next damage roll with that weapon.
", "quantity": 1, "actions": { - "yAE40wCrWg0qC3z0": { - "type": "damage", - "_id": "yAE40wCrWg0qC3z0", + "oHph7e6VrOwPetbE": { + "type": "effect", + "_id": "oHph7e6VrOwPetbE", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,53 +17,79 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d12", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "magical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "L68lFhuWdS3ppDxR", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], - "name": "Apply", + "name": "Use", "img": "icons/commodities/materials/bowl-powder-grey.webp", "range": "" } }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Mythic Dust", + "img": "icons/commodities/materials/bowl-powder-grey.webp", + "origin": "Compendium.daggerheart.consumables.Item.Zsh2AvZr8EkGtLyw", + "transfer": false, + "_id": "L68lFhuWdS3ppDxR", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.magical.dice", + "mode": 2, + "value": "1d12", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You deal 1d12 additional magical damage on your next damage roll with the weapon the venom was applied to.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992360178, + "modifiedTime": 1753992538796, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!Zsh2AvZr8EkGtLyw.L68lFhuWdS3ppDxR" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590241722, - "modifiedTime": 1753590307682, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992387326, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ba809758..947a533f 100644 --- a/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json +++ b/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "n73d0J4oMCBIPWHN", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Use", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Ogre Musk", + "img": "icons/commodities/materials/slime-thick-green.webp", + "origin": "Compendium.daggerheart.consumables.Item.qr1bosjFcUfuwq4B", + "transfer": false, + "_id": "n73d0J4oMCBIPWHN", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You cannot be tracked by mundane or magical means until your next rest.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992438445, + "modifiedTime": 1753992468525, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!qr1bosjFcUfuwq4B.n73d0J4oMCBIPWHN" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591168468, - "modifiedTime": 1753591274462, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992446047, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 16496808..f3c097bb 100644 --- a/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json +++ b/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -100,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588038000, - "modifiedTime": 1753616591291, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992490244, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8d2b2fa5..3848d6a0 100644 --- a/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json +++ b/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json @@ -7,9 +7,9 @@ "description": "You can apply this saliva to a weapon that deals physical damage to add a d12 to your next damage roll with that weapon.
", "quantity": 1, "actions": { - "RJ9WXmH6mwQKpS8O": { - "type": "damage", - "_id": "RJ9WXmH6mwQKpS8O", + "kOU2DpAIHvQsFY5A": { + "type": "effect", + "_id": "kOU2DpAIHvQsFY5A", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,45 +17,19 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d12", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "physical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "tWf00ezdpxQQLuZ1", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], "name": "Apply", "img": "icons/commodities/materials/slime-thick-blue.webp", "range": "" @@ -63,7 +37,59 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Redthorn Saliva", + "img": "icons/commodities/materials/slime-thick-blue.webp", + "origin": "Compendium.daggerheart.consumables.Item.s2Exl2XFuoOhtIov", + "transfer": false, + "_id": "tWf00ezdpxQQLuZ1", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d12", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You deal 1d12 additional physical damage on your next damage roll with the weapon the saliva was applied to.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992517609, + "modifiedTime": 1753992565438, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!s2Exl2XFuoOhtIov.tWf00ezdpxQQLuZ1" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590061810, - "modifiedTime": 1753590334574, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992517634, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!s2Exl2XFuoOhtIov" } diff --git a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json index 8dc3db65..5051a772 100644 --- a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json +++ b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -100,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592077792, - "modifiedTime": 1753592138977, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992994457, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8814e290..316ccdfa 100644 --- a/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json +++ b/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json @@ -6,7 +6,75 @@ "system": { "description": "You can drink this potion to fall asleep for a full night’s rest. You clear all Stress upon waking.
", "quantity": 1, - "actions": {}, + "actions": { + "0cqzI66ChzO6x8WF": { + "type": "healing", + "_id": "0cqzI66ChzO6x8WF", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "@system.resources.stress.max" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Wake", + "img": "icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591837472, - "modifiedTime": 1753623358593, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992986613, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ddada48f..c53d0f0e 100644 --- a/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json +++ b/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json @@ -6,7 +6,83 @@ "system": { "description": "Mark a Stress and clear a HP.
", "quantity": 1, - "actions": {}, + "actions": { + "FVn1NAbzHHyX2lsM": { + "type": "healing", + "_id": "FVn1NAbzHHyX2lsM", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "1" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Imbibe", + "img": "icons/commodities/materials/bowl-powder-gold.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +97,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588752841, - "modifiedTime": 1753623348062, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992977908, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 a8eb8b4a..f09738ee 100644 --- a/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json +++ b/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+1 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "BnYXCo5zr50Sw8gj": { + "type": "healing", + "_id": "BnYXCo5zr50Sw8gj", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": 1 + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-corked-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588904835, - "modifiedTime": 1753623366482, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992968712, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!hf3k1POoVSooJyN2" } diff --git a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json index 2f2bdf11..b286bd8f 100644 --- a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json +++ b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753585993187, - "modifiedTime": 1753587999711, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992957300, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 a1f1fbf7..4e8d828d 100644 --- a/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json +++ b/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json @@ -7,9 +7,9 @@ "description": "Consume this sap to roll a [[/r d6]]. On a result of 5–6, clear 2 HP. On a result of 2–4, clear 3 Stress. On a result of 1, see through the veil of death and return changed, gaining one scar.
", "quantity": 1, "actions": { - "bxM1ig880ykRgmTl": { - "type": "effect", - "_id": "bxM1ig880ykRgmTl", + "Fh7OR8ZmiLNvRPHa": { + "type": "attack", + "_id": "Fh7OR8ZmiLNvRPHa", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,15 +17,39 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "damage": { + "parts": [], + "includeBase": false + }, "target": { - "type": null, + "type": "any", "amount": null }, - "name": "Drink", + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Consume", "img": "icons/consumables/drinks/wine-amphora-clay-pink.webp", "range": "" } @@ -44,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590791260, - "modifiedTime": 1753590920951, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992739516, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 5db74f3b..382217a5 100644 --- a/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json +++ b/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json @@ -6,7 +6,140 @@ "system": { "description": "You can consume this moss during a rest to clear 1d10 HP or 1d10 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "Sft4HkhlqsYH5qKI": { + "type": "healing", + "_id": "Sft4HkhlqsYH5qKI", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d10", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Clear Hit Points", + "img": "icons/consumables/plants/succulent-bundle-green.webp", + "range": "" + }, + "IolxVguij8PjHSVt": { + "type": "healing", + "_id": "IolxVguij8PjHSVt", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "dice": "d10", + "bonus": null, + "flatMultiplier": 1 + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Clear Stress", + "img": "icons/consumables/plants/succulent-bundle-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +154,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592391195, - "modifiedTime": 1753623392811, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992944498, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!GrDrRqWgv7gvl9vn" } diff --git a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json index 2c6cff6d..487b278f 100644 --- a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json +++ b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json @@ -6,7 +6,75 @@ "system": { "description": "You can eat these paired leaves to immediately gain 2 Hope.
", "quantity": 1, - "actions": {}, + "actions": { + "9e4l2Yiy8uV26SQF": { + "type": "healing", + "_id": "9e4l2Yiy8uV26SQF", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "2" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hope", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Eat", + "img": "icons/consumables/plants/leaf-serrated-pink.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587484164, - "modifiedTime": 1753623431444, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992927147, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8d4d1ae8..716c5210 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json +++ b/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588345314, - "modifiedTime": 1753616649293, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992848674, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 22b09db6..7dd0d58e 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json +++ b/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "548KAUPcSbQLsivh", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Vial of Moondrip", + "img": "icons/consumables/potions/bottle-ornate-bat-teal.webp", + "origin": "Compendium.daggerheart.consumables.Item.VqEX5YwK5oL3r1t6", + "transfer": false, + "_id": "548KAUPcSbQLsivh", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You can see in total darkness until your next rest.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992869479, + "modifiedTime": 1753992876165, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!VqEX5YwK5oL3r1t6.548KAUPcSbQLsivh" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587590537, - "modifiedTime": 1753588714959, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992914849, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!VqEX5YwK5oL3r1t6" } diff --git a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json index 71ccfa52..e63956c2 100644 --- a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json +++ b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "80F8gAn7ejhhNL7R", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Use", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Wingsprout", + "img": "icons/consumables/plants/leaf-broad-blue.webp", + "origin": "Compendium.daggerheart.consumables.Item.n10vozlmosVR6lo4", + "transfer": false, + "_id": "80F8gAn7ejhhNL7R", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You gain magic wings that allow you to fly for a number of minutes equal to your level.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992894565, + "modifiedTime": 1753992898781, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!n10vozlmosVR6lo4.80F8gAn7ejhhNL7R" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591283853, - "modifiedTime": 1753591361344, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992905805, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!n10vozlmosVR6lo4" } diff --git a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json index b73f9fcd..b1fa3700 100644 --- a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json +++ b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json @@ -4,7 +4,7 @@ "_id": "Mn1eo2Mdtu1kzyxB", "img": "icons/commodities/gems/gem-faceted-trillion-blue.webp", "system": { - "description": "", + "description": "Position this prism in a location of your choosing and activate it. All allies within Close range of it gain a +1 bonus to their Spellcast Rolls. While activated, the prism can’t be moved. Once the prism is deactivated, it can’t be activated again until your next long rest.
", "quantity": 1, "actions": { "QgBDJh0laEvOB94w": { @@ -93,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753626536923, - "modifiedTime": 1753626610902, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989088942, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 6075ed0f..59909fa7 100644 --- a/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json +++ b/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json @@ -13,7 +13,7 @@ "name": "Attune Relic", "type": "base", "_id": "KmoJVnCQJUGyrZIk", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/magic/perception/eye-ringed-green.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Instinct.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639655271, - "modifiedTime": 1753639665432, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989634795, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!vK6bKyQTT3m8WvMh.KmoJVnCQJUGyrZIk" } 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 954fc9e0..767dc8e0 100644 --- a/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json +++ b/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json @@ -6,9 +6,108 @@ "system": { "description": "You can convince this small bag of sand to be much heavier or lighter with a successful [[/dr trait=\"presence\" difficulty=\"10\"]]. Additionally, on a successful [[/dr trait=\"finesse\" difficulty=\"10\"]], you can blow a bit of sand into a target’s face to make them temporarily Vulnerable.
You gain a +1 bonus to your Strength.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639476499, - "modifiedTime": 1753639561079, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989646651, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!m3EpxlDgxn2tCDDR.ByYXvJNr5YbXqn8I" } 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 2856ffc7..3112c665 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 @@ -7,9 +7,9 @@ "description": "Once per long rest, you can open this small box and roll a [[/r d12]]. On a result of 1–6, it’s empty. On a result of 7–10, it contains one random common consumable. On a result of 11–12, it contains two random common consumables.
", "quantity": 1, "actions": { - "5vW3p31WvGN6v8qc": { - "type": "effect", - "_id": "5vW3p31WvGN6v8qc", + "lt1iEma1OVUNZ77o": { + "type": "attack", + "_id": "lt1iEma1OVUNZ77o", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,14 +17,38 @@ "cost": [], "uses": { "value": null, - "max": 1, + "max": "1", "recovery": "longRest" }, - "effects": [], + "damage": { + "parts": [], + "includeBase": false + }, "target": { "type": "any", "amount": null }, + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d12", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, "name": "Open", "img": "icons/containers/boxes/crate-heavy-yellow.webp", "range": "" @@ -43,12 +67,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753638361357, - "modifiedTime": 1753638425801, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989365853, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 44103e9a..82a1078a 100644 --- a/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json +++ b/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json @@ -6,7 +6,54 @@ "system": { "description": "When you would mark your last Stress, roll a [[/r d6]]. On a result of 5 or higher, don’t mark it.
", "quantity": 1, - "actions": {} + "actions": { + "wIlkGuUddWSUp4nN": { + "type": "attack", + "_id": "wIlkGuUddWSUp4nN", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": "aboveEqual", + "treshold": 5 + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Use", + "img": "icons/equipment/neck/amulet-round-blue.webp", + "range": "" + } + } }, "effects": [], "folder": null, @@ -20,12 +67,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753637842111, - "modifiedTime": 1753637884439, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989405747, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8e41852a..19ef04c7 100644 --- a/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json +++ b/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json @@ -6,62 +6,67 @@ "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": { - "VI11nILEneaigrRE": { - "type": "damage", - "_id": "VI11nILEneaigrRE", - "systemPath": "actions", - "description": "", - "chatDisplay": true, - "actionType": "action", - "cost": [], - "uses": { - "value": null, - "max": null, - "recovery": null - }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": true, - "formula": "@tier" - }, - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, - "target": { - "type": "any", - "amount": null - }, - "effects": [], - "name": "Use Arrow", - "img": "icons/containers/ammunition/arrows-quiver-grey-gold.webp", - "range": "" - } - } + "actions": {} }, - "effects": [], + "effects": [ + { + "name": "Charging Quiver", + "type": "base", + "_id": "0zebbOsyjkm9IqE6", + "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.bonus", + "mode": 2, + "value": "@system.tier", + "priority": null + }, + { + "key": "system.bonuses.damage.magical.bonus", + "mode": 2, + "value": "@system.tier", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "", + "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": 1753989433725, + "modifiedTime": 1753989574054, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!gsUDP90d4SRtLEUn.0zebbOsyjkm9IqE6" + } + ], "folder": null, "sort": 0, "ownership": { @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753625025089, - "modifiedTime": 1753625150698, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989432098, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 301ac3d0..a1c80a2b 100644 --- a/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json +++ b/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json @@ -13,7 +13,7 @@ "name": "Charm Relic", "type": "base", "_id": "2yr8Ps6wvaG3b1qy", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/magic/life/heart-cross-strong-purple-orange.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Presence.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639698545, - "modifiedTime": 1753639708693, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989621310, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!9P9jqGSlxVCbTdLe.2yr8Ps6wvaG3b1qy" } diff --git a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json index 7ec2343a..9245934b 100644 --- a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json +++ b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json @@ -13,7 +13,7 @@ "name": "Control Relic", "type": "base", "_id": "OwjK2TqOizTiRGxD", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/skills/targeting/target-glowing-yellow.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Finesse.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639502481, - "modifiedTime": 1753639535252, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989714746, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!QPGBDItjrRhXU6iJ.OwjK2TqOizTiRGxD" } diff --git a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json index 02c2aa0f..6b007a29 100644 --- a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json +++ b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json @@ -27,7 +27,7 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Activate", @@ -56,7 +56,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You are Hidden until you move. While Hidden in this way, you remain unseen even if an adversary moves to where they would normally see you.
", "tint": "#ffffff", "statuses": [ "hidden" @@ -67,12 +67,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639111583, - "modifiedTime": 1753639213582, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989796129, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!PkmTZXRMZL022O75.YBkYjxU0Vn5JEsMK" } @@ -88,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753638931971, - "modifiedTime": 1753639111606, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989758225, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!PkmTZXRMZL022O75" } diff --git a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json index aa5e9b4d..0f992ddf 100644 --- a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json +++ b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json @@ -13,7 +13,7 @@ "name": "Enlighten Relic", "type": "base", "_id": "aWOGlmqC9l86GlFV", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/magic/perception/third-eye-blue-red.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Knowledge.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639757883, - "modifiedTime": 1753639770922, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989839297, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!vSGx1f9SYUiA29L3.aWOGlmqC9l86GlFV" } diff --git a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json index 05211e72..799e170f 100644 --- a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json +++ b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json @@ -4,9 +4,40 @@ "_id": "CiXwelozmBDcPY48", "img": "icons/commodities/leather/leather-patch-red.webp", "system": { - "description": "While falling, you can mark a Stress to deploy this small parachute and glide safely to the ground.
", + "description": "While falling, you can mark a Stress to deploy this small parachute and glide safely to the ground.
", "quantity": 1, - "actions": {} + "actions": { + "Adz50oihGEMJxbyA": { + "type": "effect", + "_id": "Adz50oihGEMJxbyA", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/commodities/leather/leather-patch-red.webp", + "range": "" + } + } }, "effects": [], "folder": null, @@ -20,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753637642501, - "modifiedTime": 1753637766985, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989923053, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!CiXwelozmBDcPY48" } diff --git a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json index 152a15f3..a3789138 100644 --- a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json +++ b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json @@ -7,9 +7,9 @@ "description": "Three times per rest when you succeed on an attack with one of these arrows, you can add your Proficiency to the damage roll.
", "quantity": 1, "actions": { - "0TomBo6UygDFhawG": { - "type": "damage", - "_id": "0TomBo6UygDFhawG", + "DW5AqEM0F8XaUqpn": { + "type": "effect", + "_id": "DW5AqEM0F8XaUqpn", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,51 +17,79 @@ "cost": [], "uses": { "value": null, - "max": 3, + "max": "3", "recovery": "shortRest" }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": true, - "formula": "@prof" - }, - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [], "target": { - "type": "any", + "type": "self", "amount": null }, - "effects": [], - "name": "Use Arrow", + "name": "Use", "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", "range": "" } } }, - "effects": [], + "effects": [ + { + "name": "Piercing Arrows", + "type": "base", + "_id": "lRfqfbwlfxzPbE6U", + "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.bonus", + "mode": 2, + "value": "@system.proficiency", + "priority": null + }, + { + "key": "system.bonuses.damage.magical.bonus", + "mode": 2, + "value": "@system.proficiency", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Add your Proficiency to the damage roll of this attack.
", + "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": 1753990197623, + "modifiedTime": 1753990270846, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!I63LTFD6GXHgyGpR.lRfqfbwlfxzPbE6U" + } + ], "folder": null, "sort": 0, "ownership": { @@ -73,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753625947079, - "modifiedTime": 1753626142491, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990194353, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!I63LTFD6GXHgyGpR" } 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 42129a61..502c73b2 100644 --- a/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json +++ b/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json @@ -39,7 +39,52 @@ } } }, - "effects": [], + "effects": [ + { + "name": "Ring of Silence", + "type": "base", + "_id": "aCt3QjdeTREZAlEa", + "img": "icons/equipment/finger/ring-ball-purple.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Your footsteps are silent until your next rest.
", + "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": 1753990311274, + "modifiedTime": 1753990345889, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!K1ysGnTpNyxPu5Au.aCt3QjdeTREZAlEa" + } + ], "folder": null, "sort": 0, "ownership": { 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 0291485e..46beee5a 100644 --- a/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json +++ b/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json @@ -4,7 +4,7 @@ "_id": "2ULPgNyqCrxea0v0", "img": "icons/commodities/gems/gem-rough-navette-purple-pink.webp", "system": { - "description": "Once per long rest, you can spend 2 Hope to recall a domain card from your vault instead of paying its Recall
Cost.
", + "description": "Once per long rest, you can spend 2 Hope to recall a domain card from your vault instead of paying its Recall Cost.
", "quantity": 1, "actions": { "YNRybKQC51muVHYH": { @@ -51,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753640199098, - "modifiedTime": 1753640251763, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990369010, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!2ULPgNyqCrxea0v0" } diff --git a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json index f4257e16..9f169207 100644 --- a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json +++ b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json @@ -13,7 +13,7 @@ "name": "Stride Relic", "type": "base", "_id": "7lHIbMyCDonSxSZf", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/skills/movement/feet-winged-boots-glowing-yellow.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Agility.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639435741, - "modifiedTime": 1753639579370, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990402231, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!FfJISMzYATaPQPLc.7lHIbMyCDonSxSZf" } From 9d025bf1055e9467cf77ff9a5f820410553c7f36 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Fri, 1 Aug 2025 01:37:05 +0200 Subject: [PATCH 09/13] Added Ancestry data to compendium (#493) --- .../ancestry_Clank_ed8BoLR4SHOpeV00.json | 23 ++- .../ancestry_Drakona_VLeOEqkLS0RbF0tB.json | 23 ++- .../ancestry_Dwarf_pDt6fI6otv2E2odf.json | 23 ++- .../ancestry_Elf_q2l6g3Ssa04K84GO.json | 23 ++- .../ancestry_Faerie_XzJVbb5NT9k79ykR.json | 23 ++- .../ancestry_Faun_HaYhe6WqoXW5EbRl.json | 23 ++- .../ancestry_Firbolg_hzKmydI8sR3uk4CO.json | 23 ++- .../ancestry_Fungril_J1hX7nBBc5jQiHli.json | 23 ++- .../ancestry_Galapa_eZNG5Iv0yfbHs5CO.json | 23 ++- .../ancestry_Giant_3U8CncG92a7ERIJ0.json | 23 ++- .../ancestry_Goblin_EKPEdIz9lA9grPqH.json | 23 ++- .../ancestry_Halfling_CtL2jDjvPOJxNJKm.json | 23 ++- .../ancestry_Human_wtJ5V5qRppLQn61n.json | 23 ++- .../ancestry_Infernis_hyxcuF2I0xcZSGkm.json | 23 ++- .../ancestry_Katari_yyW0UM8srD9WuwW7.json | 23 ++- .../ancestry_Orc_D1RbUsRV9HpTrPuF.json | 23 ++- .../ancestry_Ribbet_HwOoBKXOL9Tf5j85.json | 23 ++- .../ancestry_Simiah_2yMLxxn7CHEvmShj.json | 23 ++- ...feature_Adaptability_BNofV1UC4ZbdFTkb.json | 65 +++++++++ .../feature_Amphibious_GVhmLouGq9GWCsN8.json | 34 +++++ ...feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json | 34 +++++ ...ure_Celestial_Trance_TfolXWFG2W2hx6sK.json | 92 ++++++++++++ .../feature_Charge_AA2CZlJSWW8GPhrR.json | 96 +++++++++++++ ...feature_Danger_Sense_AXqcoxnRoWBbbKpK.json | 65 +++++++++ ...ure_Death_Connection_WuwXH2r2uM9sDJtj.json | 65 +++++++++ ...feature_Dread_Visage_i92lYjDhVB0LyPid.json | 86 +++++++++++ .../feature_Efficient_2xlqKOkDxWHbuj4t.json | 92 ++++++++++++ ...ure_Elemental_Breath_sRaE3CgkgjBF1UpV.json | 106 ++++++++++++++ .../feature_Endurance_tXWEMdLXafUSZTbK.json | 86 +++++++++++ .../feature_Fearless_IlWvn5kCqCBMuUJn.json | 65 +++++++++ ...ure_Feline_Instincts_lNgbbYnCKgrdvA85.json | 65 +++++++++ ...ture_Fungril_Network_9tmeXm623hl4Qnws.json | 81 +++++++++++ ...feature_High_Stamina_HMXNJZ7ynzajR2KT.json | 86 +++++++++++ ..._Increased_Fortitude_0RN0baBxh95GT1cm.json | 65 +++++++++ ...ure_Internal_Compass_e2Cu6exxtvfQzc1e.json | 34 +++++ .../feature_Kick_gpW19TfJk0WWFh1S.json | 87 ++++++++++++ .../feature_Long_Tongue_oWbdlh51ajn1Q5kL.json | 114 +++++++++++++++ .../feature_Luckbender_U6iFjZgLYawlOlQZ.json | 65 +++++++++ .../feature_Luckbringer_8O6SQQMxKWr430QA.json | 102 ++++++++++++++ ...ture_Natural_Climber_soQvPL0MrTLLcc31.json | 86 +++++++++++ .../feature_Nimble_3lNqft3LmOlEIEkw.json | 86 +++++++++++ ...re_Purposeful_Design_g6I4tRUQNgL4vZ6H.json | 34 +++++ ...ture_Quick_Reactions_0NSPSuB8KSEYTJIP.json | 65 +++++++++ .../feature_Reach_WRs2jvwM0STmkWIW.json | 34 +++++ .../feature_Retract_UFR67BUOhNGLFyg9.json | 115 +++++++++++++++ ...ure_Retracting_Claws_Zj69cAeb3NjIa8Hn.json | 133 ++++++++++++++++++ .../feature_Scales_u8ZhV962rNmUlzkp.json | 86 +++++++++++ .../feature_Shell_A6a87OWA3tx16g9V.json | 92 ++++++++++++ .../feature_Sturdy_60o3cKUZzxO9EDQF.json | 34 +++++ .../feature_Surefooted_YsJticxv8OFndd4D.json | 34 +++++ .../feature_Thick_Skin_S0Ww7pYOSREt8qKg.json | 86 +++++++++++ .../feature_Tusks_YhxD1ujZpftPu19w.json | 123 ++++++++++++++++ .../feature_Unshakeable_G5pE8FW94V1W9jJx.json | 81 +++++++++++ .../feature_Wings_WquAjoOcso8lwySW.json | 117 +++++++++++++++ 54 files changed, 3115 insertions(+), 90 deletions(-) create mode 100644 src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json create mode 100644 src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json create mode 100644 src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json create mode 100644 src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json create mode 100644 src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json create mode 100644 src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json create mode 100644 src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json create mode 100644 src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json create mode 100644 src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json create mode 100644 src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json create mode 100644 src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json create mode 100644 src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json create mode 100644 src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json create mode 100644 src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json create mode 100644 src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json create mode 100644 src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json create mode 100644 src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json create mode 100644 src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json create mode 100644 src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json create mode 100644 src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json create mode 100644 src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json create mode 100644 src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json create mode 100644 src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json create mode 100644 src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json create mode 100644 src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json create mode 100644 src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json create mode 100644 src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json create mode 100644 src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json create mode 100644 src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json create mode 100644 src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json create mode 100644 src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json create mode 100644 src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json create mode 100644 src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json create mode 100644 src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json create mode 100644 src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json create mode 100644 src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json diff --git a/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json index 3383d262..fe060a41 100644 --- a/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json +++ b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json @@ -1,25 +1,38 @@ { "name": "Clank", - "img": "icons/svg/item-bag.svg", + "img": "icons/creatures/magical/construct-golem-stone-blue.webp", "type": "ancestry", "folder": null, "system": { - "description": "Clanks are sentient mechanical beings built from a variety of materials, including metal, wood, and stone.
They can resemble humanoids, animals, or even inanimate objects. Like organic beings, their bodies come in a wide array of sizes. Because of their bespoke construction, many clanks have highly specialized physical configurations. Examples include clawed hands for grasping, wheels for movement, or built-in weaponry.
\nMany clanks embrace body modifications for style as well as function, and members of other ancestries often turn to clank artisans to construct customized mobility aids and physical adornments. Other ancestries can create clanks, even using their own physical characteristics as inspiration, but it’s also common for clanks to build one another. A clank’s lifespan extends as long as they’re able to acquire or craft new parts, making their physical form effectively immortal. That said, their minds are subject to the effects of time, and deteriorate as the magic that powers them loses potency.
" + "description": "Clanks are sentient mechanical beings built from a variety of materials, including metal, wood, and stone.
They can resemble humanoids, animals, or even inanimate objects. Like organic beings, their bodies come in a wide array of sizes. Because of their bespoke construction, many clanks have highly specialized physical configurations. Examples include clawed hands for grasping, wheels for movement, or built-in weaponry.
\nMany clanks embrace body modifications for style as well as function, and members of other ancestries often turn to clank artisans to construct customized mobility aids and physical adornments. Other ancestries can create clanks, even using their own physical characteristics as inspiration, but it’s also common for clanks to build one another. A clank’s lifespan extends as long as they’re able to acquire or craft new parts, making their physical form effectively immortal. That said, their minds are subject to the effects of time, and deteriorate as the magic that powers them loses potency.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.g6I4tRUQNgL4vZ6H" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.2xlqKOkDxWHbuj4t" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784381, - "modifiedTime": 1753922784381, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753993914940, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "ed8BoLR4SHOpeV00", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!ed8BoLR4SHOpeV00" } diff --git a/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json index 5a5e6515..a3861a40 100644 --- a/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json +++ b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json @@ -1,25 +1,38 @@ { "name": "Drakona", - "img": "icons/svg/item-bag.svg", + "img": "icons/creatures/reptiles/dragon-horned-blue.webp", "type": "ancestry", "folder": null, "system": { - "description": "Drakona resemble wingless dragons in humanoid form and possess a powerful elemental breath.
All drakona have thick scales that provide excellent natural armor against both attacks and the forces of nature. They are large in size, ranging from 5 feet to 7 feet on average, with long sharp teeth. New teeth grow throughout a Drakona’s approximately 350-year lifespan, so they are never in danger of permanently losing an incisor. Unlike their dragon ancestors, drakona don’t have wings and can’t fly without magical aid. Members of this ancestry pass down the element of their breath through generations, though in rare cases, a drakona’s elemental power will differ from the rest of their family’s.
" + "description": "Drakona resemble wingless dragons in humanoid form and possess a powerful elemental breath.
All drakona have thick scales that provide excellent natural armor against both attacks and the forces of nature. They are large in size, ranging from 5 feet to 7 feet on average, with long sharp teeth. New teeth grow throughout a Drakona’s approximately 350-year lifespan, so they are never in danger of permanently losing an incisor. Unlike their dragon ancestors, drakona don’t have wings and can’t fly without magical aid. Members of this ancestry pass down the element of their breath through generations, though in rare cases, a drakona’s elemental power will differ from the rest of their family’s.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.u8ZhV962rNmUlzkp" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.sRaE3CgkgjBF1UpV" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784382, - "modifiedTime": 1753922784382, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753994173339, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "VLeOEqkLS0RbF0tB", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!VLeOEqkLS0RbF0tB" } diff --git a/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json index 11c5c9bd..8bdd2113 100644 --- a/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json +++ b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json @@ -1,25 +1,38 @@ { "name": "Dwarf", - "img": "icons/svg/item-bag.svg", + "img": "icons/equipment/head/helm-norman-engraved.webp", "type": "ancestry", "folder": null, "system": { - "description": "Dwarves are most easily recognized as short humanoids with square frames, dense musculature, and thick hair.
Their average height ranges from 4 to 5 ½ feet, and they are often broad in proportion to their stature. Their skin and nails contain a high amount of keratin, making them naturally resilient. This allows dwarves to embed gemstones into their bodies and decorate themselves with tattoos or piercings. Their hair grows thickly—usually on their heads, but some dwarves have thick hair across their bodies as well. Dwarves of all genders can grow facial hair, which they often style in elaborate arrangements. Typically, dwarves live up to 250 years of age, maintaining their muscle mass well into later life.
" + "description": "Dwarves are most easily recognized as short humanoids with square frames, dense musculature, and thick hair.
Their average height ranges from 4 to 5 ½ feet, and they are often broad in proportion to their stature. Their skin and nails contain a high amount of keratin, making them naturally resilient. This allows dwarves to embed gemstones into their bodies and decorate themselves with tattoos or piercings. Their hair grows thickly—usually on their heads, but some dwarves have thick hair across their bodies as well. Dwarves of all genders can grow facial hair, which they often style in elaborate arrangements. Typically, dwarves live up to 250 years of age, maintaining their muscle mass well into later life.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.S0Ww7pYOSREt8qKg" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.0RN0baBxh95GT1cm" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784382, - "modifiedTime": 1753922784382, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753994478754, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "pDt6fI6otv2E2odf", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!pDt6fI6otv2E2odf" } diff --git a/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json index 182d0ed8..84792663 100644 --- a/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json +++ b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json @@ -1,25 +1,38 @@ { "name": "Elf", - "img": "icons/svg/item-bag.svg", + "img": "icons/weapons/ammunition/arrows-fletching.webp", "type": "ancestry", "folder": null, "system": { - "description": "Elves are typically tall humanoids with pointed ears and acutely attuned senses.
Their ears vary in size and pointed shape, and as they age, the tips begin to droop. While elves come in a wide range of body types, they are all fairly tall, with heights ranging from about 6 to 6 ½ feet. All elves have the ability to drop into a celestial trance, rather than sleep. This allows them to rest effectively in a short amount of time.
\nSome elves possess what is known as a “mystic form,” which occurs when an elf has dedicated themself to the study or protection of the natural world so deeply that their physical form changes. These characteristics can include celestial freckles, the presence of leaves, vines, or flowers in their hair, eyes that flicker like fire, and more. Sometimes these traits are inherited from parents, but if an elf changes their environment or magical focus, their appearance changes over time. Because elves live for about 350 years, these traits can shift more than once throughout their lifespan.
<" + "description": "Elves are typically tall humanoids with pointed ears and acutely attuned senses.
Their ears vary in size and pointed shape, and as they age, the tips begin to droop. While elves come in a wide range of body types, they are all fairly tall, with heights ranging from about 6 to 6 ½ feet. All elves have the ability to drop into a celestial trance, rather than sleep. This allows them to rest effectively in a short amount of time.
\nSome elves possess what is known as a “mystic form,” which occurs when an elf has dedicated themself to the study or protection of the natural world so deeply that their physical form changes. These characteristics can include celestial freckles, the presence of leaves, vines, or flowers in their hair, eyes that flicker like fire, and more. Sometimes these traits are inherited from parents, but if an elf changes their environment or magical focus, their appearance changes over time. Because elves live for about 350 years, these traits can shift more than once throughout their lifespan.
<", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.0NSPSuB8KSEYTJIP" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.TfolXWFG2W2hx6sK" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784382, - "modifiedTime": 1753922784382, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753994623487, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "q2l6g3Ssa04K84GO", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!q2l6g3Ssa04K84GO" } diff --git a/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json index 04be55c1..250444de 100644 --- a/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json +++ b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json @@ -1,25 +1,38 @@ { "name": "Faerie", - "img": "icons/svg/item-bag.svg", + "img": "icons/magic/nature/leaf-drip-light-green.webp", "type": "ancestry", "folder": null, "system": { - "description": "Faeries are winged humanoid creatures with insectile features.
These characteristics cover a broad spectrum from humanoid to insectoid—some possess additional arms, compound eyes, lantern organs, chitinous exoskeletons, or stingers. Because of their close ties to the natural world, they also frequently possess attributes that allow them to blend in with various plants. The average height of a faerie ranges from about 2 feet to 5 feet, but some faeries grow up to 7 feet tall. All faeries possess membranous wings and they each go through a process of metamorphosis. The process and changes differ from faerie to faerie, but during this transformation each individual manifests the unique appearance they will carry throughout the rest of their approximately 50-year lifespan.
" + "description": "Faeries are winged humanoid creatures with insectile features.
These characteristics cover a broad spectrum from humanoid to insectoid—some possess additional arms, compound eyes, lantern organs, chitinous exoskeletons, or stingers. Because of their close ties to the natural world, they also frequently possess attributes that allow them to blend in with various plants. The average height of a faerie ranges from about 2 feet to 5 feet, but some faeries grow up to 7 feet tall. All faeries possess membranous wings and they each go through a process of metamorphosis. The process and changes differ from faerie to faerie, but during this transformation each individual manifests the unique appearance they will carry throughout the rest of their approximately 50-year lifespan.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.U6iFjZgLYawlOlQZ" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.WquAjoOcso8lwySW" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784383, - "modifiedTime": 1753922784383, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753994865178, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "XzJVbb5NT9k79ykR", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!XzJVbb5NT9k79ykR" } diff --git a/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json index 7a5c3f51..628f4a6a 100644 --- a/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json +++ b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json @@ -1,25 +1,38 @@ { "name": "Faun", - "img": "icons/svg/item-bag.svg", + "img": "icons/magic/nature/leaf-flower-wreath-glow-green-blue.webp", "type": "ancestry", "folder": null, "system": { - "description": "Fauns resemble humanoid goats with curving horns, square pupils, and cloven hooves.
Though their appearances may vary, most fauns have a humanoid torso and a goatlike lower body covered in dense fur. Faun faces can be more caprine or more humanlike, and they have a wide variety of ear and horn shapes. Faun horns range from short with minimal curvature to much larger with a distinct curl. The average faun ranges from 4 feet to 6 ½ feet tall, but their height can change dramatically from one moment to the next based on their stance. The majority of fauns have proportionately long limbs, no matter their size or shape, and are known for their ability to deliver powerful blows with their split hooves. Fauns live for roughly 225 years, and as they age, their appearance can become increasingly goatlike.
" + "description": "Fauns resemble humanoid goats with curving horns, square pupils, and cloven hooves.
Though their appearances may vary, most fauns have a humanoid torso and a goatlike lower body covered in dense fur. Faun faces can be more caprine or more humanlike, and they have a wide variety of ear and horn shapes. Faun horns range from short with minimal curvature to much larger with a distinct curl. The average faun ranges from 4 feet to 6 ½ feet tall, but their height can change dramatically from one moment to the next based on their stance. The majority of fauns have proportionately long limbs, no matter their size or shape, and are known for their ability to deliver powerful blows with their split hooves. Fauns live for roughly 225 years, and as they age, their appearance can become increasingly goatlike.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.nLL2zuDDDbbyxlrQ" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.gpW19TfJk0WWFh1S" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784383, - "modifiedTime": 1753922784383, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753995403631, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "HaYhe6WqoXW5EbRl", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!HaYhe6WqoXW5EbRl" } diff --git a/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json index 422d424a..07cc9996 100644 --- a/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json +++ b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json @@ -1,25 +1,38 @@ { "name": "Firbolg", - "img": "icons/svg/item-bag.svg", + "img": "icons/commodities/leather/fur-blue.webp", "type": "ancestry", "folder": null, "system": { - "description": "Firbolgs are bovine humanoids typically recognized by their broad noses and long, drooping ears.
Some have faces that are a blend of humanoid and bison, ox, cow, or other bovine creatures. Others, often referred to as minotaurs, have heads that entirely resemble cattle. They are tall and muscular creatures, with heights ranging from around 5 feet to 7 feet, and possess remarkable strength no matter their age. Some firbolgs are known to use this strength to charge their adversaries, an action that is particuarly effective for those who have one of the many varieties of horn styles commonly found in this ancestry. Though their unique characteristics can vary, all firbolgs are covered in fur, which can be muted and earth-toned in color, or come in a variety of pastels, such as soft pinks and blues. On average, firbolgs live for about 150 years.
" + "description": "Firbolgs are bovine humanoids typically recognized by their broad noses and long, drooping ears.
Some have faces that are a blend of humanoid and bison, ox, cow, or other bovine creatures. Others, often referred to as minotaurs, have heads that entirely resemble cattle. They are tall and muscular creatures, with heights ranging from around 5 feet to 7 feet, and possess remarkable strength no matter their age. Some firbolgs are known to use this strength to charge their adversaries, an action that is particuarly effective for those who have one of the many varieties of horn styles commonly found in this ancestry. Though their unique characteristics can vary, all firbolgs are covered in fur, which can be muted and earth-toned in color, or come in a variety of pastels, such as soft pinks and blues. On average, firbolgs live for about 150 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.AA2CZlJSWW8GPhrR" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.G5pE8FW94V1W9jJx" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784384, - "modifiedTime": 1753922784384, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753995720164, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "hzKmydI8sR3uk4CO", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!hzKmydI8sR3uk4CO" } diff --git a/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json index c73c15e3..06146d9c 100644 --- a/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json +++ b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json @@ -1,25 +1,38 @@ { "name": "Fungril", - "img": "icons/svg/item-bag.svg", + "img": "icons/commodities/biological/suckers-green.webp", "type": "ancestry", "folder": null, "system": { - "description": "Fungril resemble humanoid mushrooms.
They can be either more humanoid or more fungal in appearance, and they come in an assortment of colors, from earth tones to bright reds, yellows, purples, and blues. Fungril display an incredible variety of bodies, faces, and limbs, as there’s no single common shape among them. Even their heights range from a tiny 2 feet tall to a staggering 7 feet tall. While the common lifespan of a fungril is about 300 years, some have been reported to live much longer. They can communicate nonverbally, and many members of this ancestry use a mycelial array to chemically exchange information with other fungril across long distances.
" + "description": "Fungril resemble humanoid mushrooms.
They can be either more humanoid or more fungal in appearance, and they come in an assortment of colors, from earth tones to bright reds, yellows, purples, and blues. Fungril display an incredible variety of bodies, faces, and limbs, as there’s no single common shape among them. Even their heights range from a tiny 2 feet tall to a staggering 7 feet tall. While the common lifespan of a fungril is about 300 years, some have been reported to live much longer. They can communicate nonverbally, and many members of this ancestry use a mycelial array to chemically exchange information with other fungril across long distances.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.9tmeXm623hl4Qnws" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.WuwXH2r2uM9sDJtj" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784385, - "modifiedTime": 1753922784385, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753996282858, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "J1hX7nBBc5jQiHli", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!J1hX7nBBc5jQiHli" } diff --git a/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json index b59b8b05..5d6ca0ae 100644 --- a/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json +++ b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json @@ -1,25 +1,38 @@ { "name": "Galapa", - "img": "icons/svg/item-bag.svg", + "img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp", "type": "ancestry", "folder": null, "system": { - "description": "Galapa resemble anthropomorphic turtles with large, domed shells into which they can retract.
On average, they range from 4 feet to 6 feet in height, and their head and body shapes can resemble any type of turtle. Galapa come in a variety of earth tones—most often shades of green and brown— and possess unique patterns on their shells. Members of this ancestry can draw their head, arms, and legs into their shell for protection to use it as a natural shield when defensive measures are needed. Some supplement their shell's strength or appearance by attaching armor or carving unique designs, but the process is exceedingly painful. Most galapa move slowly no matter their age, and they can live approximately 150 years.
" + "description": "Galapa resemble anthropomorphic turtles with large, domed shells into which they can retract.
On average, they range from 4 feet to 6 feet in height, and their head and body shapes can resemble any type of turtle. Galapa come in a variety of earth tones—most often shades of green and brown— and possess unique patterns on their shells. Members of this ancestry can draw their head, arms, and legs into their shell for protection to use it as a natural shield when defensive measures are needed. Some supplement their shell's strength or appearance by attaching armor or carving unique designs, but the process is exceedingly painful. Most galapa move slowly no matter their age, and they can live approximately 150 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.A6a87OWA3tx16g9V" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.UFR67BUOhNGLFyg9" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784385, - "modifiedTime": 1753922784385, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753996656622, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "eZNG5Iv0yfbHs5CO", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!eZNG5Iv0yfbHs5CO" } diff --git a/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json index 1569b225..02b3fa63 100644 --- a/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json +++ b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json @@ -1,25 +1,38 @@ { "name": "Giant", - "img": "icons/svg/item-bag.svg", + "img": "icons/creatures/magical/construct-iron-stomping-yellow.webp", "type": "ancestry", "folder": null, "system": { - "description": "Giants are towering humanoids with broad shoulders, long arms, and one to three eyes.
Adult giants range from 6 ½ to 8 ½ feet tall and are naturally muscular, regardless of body type. They are easily recognized by their wide frames and elongated arms and necks. Though they can have up to three eyes, all giants are born with none and remain sightless for their first year of life. Until a giant reaches the age of 10 and their features fully develop, the formation of their eyes may fluctuate. Those with a single eye are commonly known as cyclops. The average giant lifespan is about 75 years.
" + "description": "Giants are towering humanoids with broad shoulders, long arms, and one to three eyes.
Adult giants range from 6 ½ to 8 ½ feet tall and are naturally muscular, regardless of body type. They are easily recognized by their wide frames and elongated arms and necks. Though they can have up to three eyes, all giants are born with none and remain sightless for their first year of life. Until a giant reaches the age of 10 and their features fully develop, the formation of their eyes may fluctuate. Those with a single eye are commonly known as cyclops. The average giant lifespan is about 75 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.tXWEMdLXafUSZTbK" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.WRs2jvwM0STmkWIW" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784386, - "modifiedTime": 1753922784386, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753996849286, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "3U8CncG92a7ERIJ0", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!3U8CncG92a7ERIJ0" } diff --git a/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json index 62bb2a25..0e1fb16e 100644 --- a/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json +++ b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json @@ -1,25 +1,38 @@ { "name": "Goblin", - "img": "icons/svg/item-bag.svg", + "img": "icons/magic/symbols/arrowhead-green.webp", "type": "ancestry", "folder": null, "system": { - "description": "Goblins are small humanoids easily recognizable by their large eyes and massive membranous ears.
With keen hearing and sharp eyesight, they perceive details both at great distances and in darkness, allowing them to move through less-optimal environments with ease. Their skin and eye colors are incredibly varied, with no one hue, either vibrant or subdued, more dominant than another. A typical goblin stands between 3 feet and 4 feet tall, and each of their ears is about the size of their head. Goblins are known to use ear positions to very specific effect when communicating nonverbally. A goblin’s lifespan is roughly 100 years, and many maintain their keen hearing and sight well into advanced age.
" + "description": "Goblins are small humanoids easily recognizable by their large eyes and massive membranous ears.
With keen hearing and sharp eyesight, they perceive details both at great distances and in darkness, allowing them to move through less-optimal environments with ease. Their skin and eye colors are incredibly varied, with no one hue, either vibrant or subdued, more dominant than another. A typical goblin stands between 3 feet and 4 feet tall, and each of their ears is about the size of their head. Goblins are known to use ear positions to very specific effect when communicating nonverbally. A goblin’s lifespan is roughly 100 years, and many maintain their keen hearing and sight well into advanced age.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.YsJticxv8OFndd4D" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.AXqcoxnRoWBbbKpK" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784386, - "modifiedTime": 1753922784386, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753997126174, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "EKPEdIz9lA9grPqH", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!EKPEdIz9lA9grPqH" } diff --git a/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json index aa8b2875..ea37196d 100644 --- a/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json +++ b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json @@ -1,25 +1,38 @@ { "name": "Halfling", - "img": "icons/svg/item-bag.svg", + "img": "icons/tools/navigation/compass-brass-blue-red.webp", "type": "ancestry", "folder": null, "system": { - "description": "Halflings are small humanoids with large hairy feet and prominent rounded ears.
On average, halflings are 3 to 4 feet in height, and their ears, nose, and feet are larger in proportion to the rest of their body. Members of this ancestry live for around 150 years, and a halfling’s appearance is likely to remain youthful even as they progress from adulthood into old age. Halflings are naturally attuned to the magnetic fields of the Mortal Realm, granting them a strong internal compass. They also possess acute senses of hearing and smell, and can often detect those who are familiar to them by the sound of their movements.
" + "description": "Halflings are small humanoids with large hairy feet and prominent rounded ears.
On average, halflings are 3 to 4 feet in height, and their ears, nose, and feet are larger in proportion to the rest of their body. Members of this ancestry live for around 150 years, and a halfling’s appearance is likely to remain youthful even as they progress from adulthood into old age. Halflings are naturally attuned to the magnetic fields of the Mortal Realm, granting them a strong internal compass. They also possess acute senses of hearing and smell, and can often detect those who are familiar to them by the sound of their movements.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.8O6SQQMxKWr430QA" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.e2Cu6exxtvfQzc1e" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784387, - "modifiedTime": 1753922784387, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753997257661, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "CtL2jDjvPOJxNJKm", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!CtL2jDjvPOJxNJKm" } diff --git a/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json index 31706450..58310832 100644 --- a/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json +++ b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json @@ -1,25 +1,38 @@ { "name": "Human", - "img": "icons/svg/item-bag.svg", + "img": "icons/skills/social/diplomacy-handshake-yellow.webp", "type": "ancestry", "folder": null, "system": { - "description": "Humans are most easily recognized by their dexterous hands, rounded ears, and bodies built for endurance.
Their average height ranges from just under 5 feet to about 6 ½ feet. They have a wide variety of builds, with some being quite broad, others lithe, and many inhabiting the spectrum in between. Humans are physically adaptable and adjust to harsh climates with relative ease. In general, humans live to an age of about 100, with their bodies changing dramatically between their youngest and oldest years.
" + "description": "Humans are most easily recognized by their dexterous hands, rounded ears, and bodies built for endurance.
Their average height ranges from just under 5 feet to about 6 ½ feet. They have a wide variety of builds, with some being quite broad, others lithe, and many inhabiting the spectrum in between. Humans are physically adaptable and adjust to harsh climates with relative ease. In general, humans live to an age of about 100, with their bodies changing dramatically between their youngest and oldest years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.HMXNJZ7ynzajR2KT" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.BNofV1UC4ZbdFTkb" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784388, - "modifiedTime": 1753922784388, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753997481487, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "wtJ5V5qRppLQn61n", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!wtJ5V5qRppLQn61n" } diff --git a/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json index 0fbf4171..67e95734 100644 --- a/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json +++ b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json @@ -1,25 +1,38 @@ { "name": "Infernis", - "img": "icons/svg/item-bag.svg", + "img": "icons/creatures/unholy/demon-female-succubus-orange.webp", "type": "ancestry", "folder": null, "system": { - "description": "Infernis are humanoids who possess sharp canine teeth, pointed ears, and horns. They are the descendants of demons from the Circles Below.
On average, infernis range in height from 5 feet to 7 feet and are known to have long fingers and pointed nails. Some have long, thin, and smooth tails that end in points, forks, or arrowheads. It’s common for infernis to have two or four horns—though some have crowns of many horns, or only one. These horns can also grow asymmetrically, forming unique, often curving, shapes that infernis enhance with carving and ornamentation. Their skin, hair, and horns come in an assortment of colors that can include soft pastels, stark tones, or vibrant hues, such as rosy scarlet, deep purple, and pitch black.
\nInfernis possess a “dread visage” that manifests both involuntarily, such as when they experience fear or other strong emotions, or purposefully, such as when they wish to intimidate an adversary. This visage can briefly modify their appearance in a variety of ways, including lengthening their teeth and nails, changing the colors of their eyes, twisting their horns, or enhancing their height. On average, infernis live up to 350 years, with some attributing this lifespan to their demonic lineage.
" + "description": "Infernis are humanoids who possess sharp canine teeth, pointed ears, and horns. They are the descendants of demons from the Circles Below.
On average, infernis range in height from 5 feet to 7 feet and are known to have long fingers and pointed nails. Some have long, thin, and smooth tails that end in points, forks, or arrowheads. It’s common for infernis to have two or four horns—though some have crowns of many horns, or only one. These horns can also grow asymmetrically, forming unique, often curving, shapes that infernis enhance with carving and ornamentation. Their skin, hair, and horns come in an assortment of colors that can include soft pastels, stark tones, or vibrant hues, such as rosy scarlet, deep purple, and pitch black.
\nInfernis possess a “dread visage” that manifests both involuntarily, such as when they experience fear or other strong emotions, or purposefully, such as when they wish to intimidate an adversary. This visage can briefly modify their appearance in a variety of ways, including lengthening their teeth and nails, changing the colors of their eyes, twisting their horns, or enhancing their height. On average, infernis live up to 350 years, with some attributing this lifespan to their demonic lineage.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.IlWvn5kCqCBMuUJn" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.i92lYjDhVB0LyPid" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784388, - "modifiedTime": 1753922784388, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1754000194006, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "hyxcuF2I0xcZSGkm", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!hyxcuF2I0xcZSGkm" } diff --git a/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json index 7e8a524d..f3997143 100644 --- a/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json +++ b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json @@ -1,25 +1,38 @@ { "name": "Katari", - "img": "icons/svg/item-bag.svg", + "img": "icons/creatures/claws/claw-straight-orange.webp", "type": "ancestry", "folder": null, "system": { - "description": "Katari are feline humanoids with retractable claws, vertically slit pupils, and high, triangular ears.
They can also have small, pointed canine teeth, soft fur, and long whiskers that assist their perception and navigation. Their ears can swivel nearly 180 degrees to detect sound, adding to their heightened senses. Katari may look more or less feline or humanoid, with catlike attributes in the form of hair, whiskers, and a muzzle. About half of the katari population have tails. Their skin and fur come in a wide range of hues and patterns, including solid colors, calico tones, tabby stripes, and an array of spots, patches, marbling, or bands. Their height ranges from about 3 feet to 6 ½ feet, and they live to around 150 years.
" + "description": "Katari are feline humanoids with retractable claws, vertically slit pupils, and high, triangular ears.
They can also have small, pointed canine teeth, soft fur, and long whiskers that assist their perception and navigation. Their ears can swivel nearly 180 degrees to detect sound, adding to their heightened senses. Katari may look more or less feline or humanoid, with catlike attributes in the form of hair, whiskers, and a muzzle. About half of the katari population have tails. Their skin and fur come in a wide range of hues and patterns, including solid colors, calico tones, tabby stripes, and an array of spots, patches, marbling, or bands. Their height ranges from about 3 feet to 6 ½ feet, and they live to around 150 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.lNgbbYnCKgrdvA85" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.Zj69cAeb3NjIa8Hn" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784388, - "modifiedTime": 1753922784388, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1754000474970, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "yyW0UM8srD9WuwW7", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!yyW0UM8srD9WuwW7" } diff --git a/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json index 5f233648..0075cf94 100644 --- a/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json +++ b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json @@ -1,25 +1,38 @@ { "name": "Orc", - "img": "icons/svg/item-bag.svg", + "img": "icons/commodities/bones/horn-drinking-white.webp", "type": "ancestry", "folder": null, "system": { - "description": "Orcs are humanoids most easily recognized by their square features and boar-like tusks that protrude from their lower jaw.
Tusks come in various sizes, and though they extend from the mouth, they aren’t used for consuming food. Instead, many orcs choose to decorate their tusks with significant ornamentation. Orcs typically live for 125 years, and unless altered, their tusks continue to grow throughout the course of their lives. Their ears are pointed, and their hair and skin typically have green, blue, pink, or gray tones. Orcs tend toward a muscular build, and their average height ranges from 5 feet to 6 ½ feet.
" + "description": "Orcs are humanoids most easily recognized by their square features and boar-like tusks that protrude from their lower jaw.
Tusks come in various sizes, and though they extend from the mouth, they aren’t used for consuming food. Instead, many orcs choose to decorate their tusks with significant ornamentation. Orcs typically live for 125 years, and unless altered, their tusks continue to grow throughout the course of their lives. Their ears are pointed, and their hair and skin typically have green, blue, pink, or gray tones. Orcs tend toward a muscular build, and their average height ranges from 5 feet to 6 ½ feet.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.60o3cKUZzxO9EDQF" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.YhxD1ujZpftPu19w" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784389, - "modifiedTime": 1753922784389, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1754000737849, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "D1RbUsRV9HpTrPuF", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!D1RbUsRV9HpTrPuF" } diff --git a/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json index 0b74e0b2..5624ba77 100644 --- a/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json +++ b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json @@ -1,25 +1,38 @@ { "name": "Ribbet", - "img": "icons/svg/item-bag.svg", + "img": "icons/creatures/amphibians/bullfrog-glass-teal.webp", "type": "ancestry", "folder": null, "system": { - "description": "Ribbets resemble anthropomorphic frogs with protruding eyes and webbed hands and feet.
They have smooth (though sometimes warty) moist skin and eyes positioned on either side of their head. Some ribbets have hind legs more than twice the length of their torso, while others have short limbs. No matter their size (which ranges from about 3 feet to 4 ½ feet), ribbets primarily move by hopping. All ribbets have webbed appendages, allowing them to swim with ease. Some ribbets possess a natural green-and-brown camouflage, while others are vibrantly colored with bold patterns. No matter their appearance, all ribbets are born from eggs laid in the water, hatch into tadpoles, and after about 6 to 7 years, grow into amphibians that can move around on land. Ribbets live for approximately 100 years.
" + "description": "Ribbets resemble anthropomorphic frogs with protruding eyes and webbed hands and feet.
They have smooth (though sometimes warty) moist skin and eyes positioned on either side of their head. Some ribbets have hind legs more than twice the length of their torso, while others have short limbs. No matter their size (which ranges from about 3 feet to 4 ½ feet), ribbets primarily move by hopping. All ribbets have webbed appendages, allowing them to swim with ease. Some ribbets possess a natural green-and-brown camouflage, while others are vibrantly colored with bold patterns. No matter their appearance, all ribbets are born from eggs laid in the water, hatch into tadpoles, and after about 6 to 7 years, grow into amphibians that can move around on land. Ribbets live for approximately 100 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.GVhmLouGq9GWCsN8" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.oWbdlh51ajn1Q5kL" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784389, - "modifiedTime": 1753922784389, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1754000881040, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "HwOoBKXOL9Tf5j85", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!HwOoBKXOL9Tf5j85" } diff --git a/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json index 3798b8d9..d09abcdd 100644 --- a/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json +++ b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json @@ -1,25 +1,38 @@ { "name": "Simiah", - "img": "icons/svg/item-bag.svg", + "img": "icons/magic/nature/tree-bare-glow-yellow.webp", "type": "ancestry", "folder": null, "system": { - "description": "Simiah resemble anthropomorphic monkeys and apes with long limbs and prehensile feet.
While their appearance reflects all simian creatures, from the largest gorilla to the smallest marmoset, their size does not align with their animal counterparts, and they can be anywhere from 2 to 6 feet tall. All simiah can use their dexterous feet for nonverbal communication, work, and combat. Additionally, some also have prehensile tails that can grasp objects or help with balance during difficult maneuvers. These traits grant members of this ancestry unique agility that aids them in a variety of physical tasks. In particular, simiah are skilled climbers and can easily transition from bipedal movement to knuckle-walking and climbing, and back again. On average, simiah live for about 100 years.
" + "description": "Simiah resemble anthropomorphic monkeys and apes with long limbs and prehensile feet.
While their appearance reflects all simian creatures, from the largest gorilla to the smallest marmoset, their size does not align with their animal counterparts, and they can be anywhere from 2 to 6 feet tall. All simiah can use their dexterous feet for nonverbal communication, work, and combat. Additionally, some also have prehensile tails that can grasp objects or help with balance during difficult maneuvers. These traits grant members of this ancestry unique agility that aids them in a variety of physical tasks. In particular, simiah are skilled climbers and can easily transition from bipedal movement to knuckle-walking and climbing, and back again. On average, simiah live for about 100 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.soQvPL0MrTLLcc31" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.3lNqft3LmOlEIEkw" + } + ] }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753922784390, - "modifiedTime": 1753922784390, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1754001185010, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_id": "2yMLxxn7CHEvmShj", "sort": 3400000, "effects": [], + "ownership": { + "default": 0 + }, "_key": "!items!2yMLxxn7CHEvmShj" } diff --git a/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json b/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json new file mode 100644 index 00000000..74d0396e --- /dev/null +++ b/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Adaptability", + "type": "feature", + "_id": "BNofV1UC4ZbdFTkb", + "img": "icons/magic/control/silhouette-hold-change-blue.webp", + "system": { + "description": "When you fail a roll that utilized one of your Experiences, you can mark a Stress to reroll.
", + "resource": null, + "actions": { + "D7EE2L2Y96nfrfTW": { + "type": "effect", + "_id": "D7EE2L2Y96nfrfTW", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/control/silhouette-hold-change-blue.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997402776, + "modifiedTime": 1753997472141, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!BNofV1UC4ZbdFTkb" +} diff --git a/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json b/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json new file mode 100644 index 00000000..fbc8de74 --- /dev/null +++ b/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Amphibious", + "type": "feature", + "_id": "GVhmLouGq9GWCsN8", + "img": "icons/magic/water/bubbles-air-water-light.webp", + "system": { + "description": "You can breathe and move naturally underwater.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000764274, + "modifiedTime": 1754000778312, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!GVhmLouGq9GWCsN8" +} diff --git a/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json b/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json new file mode 100644 index 00000000..db455164 --- /dev/null +++ b/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Caprine Leap", + "type": "feature", + "_id": "nLL2zuDDDbbyxlrQ", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "system": { + "description": "You can leap anywhere within Close range as though you were using normal movement, allowing you to vault obstacles, jump across gaps, or scale barriers with ease.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995211408, + "modifiedTime": 1753995232467, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!nLL2zuDDDbbyxlrQ" +} diff --git a/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json b/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json new file mode 100644 index 00000000..e9a240ef --- /dev/null +++ b/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json @@ -0,0 +1,92 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Celestial Trance", + "type": "feature", + "_id": "TfolXWFG2W2hx6sK", + "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", + "system": { + "description": "During a rest, you can drop into a trance to choose an additional downtime move.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Celestial Trance", + "type": "base", + "_id": "LqQvZJJLNMnFkt1D", + "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.rest.shortRest.shortMoves", + "mode": 2, + "value": "1", + "priority": null + }, + { + "key": "system.bonuses.rest.longRest.longMoves", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "", + "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": 1753994586602, + "modifiedTime": 1753994613702, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!TfolXWFG2W2hx6sK.LqQvZJJLNMnFkt1D" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994570602, + "modifiedTime": 1753994583518, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!TfolXWFG2W2hx6sK" +} diff --git a/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json b/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json new file mode 100644 index 00000000..319086a4 --- /dev/null +++ b/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json @@ -0,0 +1,96 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Charge", + "type": "feature", + "_id": "AA2CZlJSWW8GPhrR", + "img": "icons/magic/movement/trail-streak-impact-blue.webp", + "system": { + "description": "When you succeed on an Agility Roll to move from Far or Very Far range into Melee range with one or more targets, you can mark a Stress to deal 1d12 physical damage to all targets within Melee range.
", + "resource": null, + "actions": { + "KLg0T6I1w24sfIbH": { + "type": "damage", + "_id": "KLg0T6I1w24sfIbH", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d12", + "bonus": null + }, + "applyTo": "hitPoints", + "type": [ + "magical" + ], + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "name": "Damage", + "img": "icons/magic/movement/trail-streak-impact-blue.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995559143, + "modifiedTime": 1753995629206, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!AA2CZlJSWW8GPhrR" +} diff --git a/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json b/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json new file mode 100644 index 00000000..a9dd34f4 --- /dev/null +++ b/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Danger Sense", + "type": "feature", + "_id": "AXqcoxnRoWBbbKpK", + "img": "icons/magic/perception/orb-eye-scrying.webp", + "system": { + "description": "Once per rest, mark a Stress to force an adversary to reroll an attack against you or an ally within Very Close range.
", + "resource": null, + "actions": { + "V2K3pMWOCVwBUnjq": { + "type": "effect", + "_id": "V2K3pMWOCVwBUnjq", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "friendly", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/perception/orb-eye-scrying.webp", + "range": "veryClose" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997061290, + "modifiedTime": 1753997114091, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!AXqcoxnRoWBbbKpK" +} diff --git a/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json b/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json new file mode 100644 index 00000000..cc2ba641 --- /dev/null +++ b/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Death Connection", + "type": "feature", + "_id": "WuwXH2r2uM9sDJtj", + "img": "icons/magic/death/hand-undead-skeleton-fire-green.webp", + "system": { + "description": "While touching a corpse that died recently, you can mark a Stress to extract one memory from the corpse related to a specific emotion or sensation of your choice.
", + "resource": null, + "actions": { + "0RdKeWfbPRTHcAMf": { + "type": "effect", + "_id": "0RdKeWfbPRTHcAMf", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Extract", + "img": "icons/magic/death/hand-undead-skeleton-fire-green.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996213198, + "modifiedTime": 1753996272048, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!WuwXH2r2uM9sDJtj" +} diff --git a/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json b/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json new file mode 100644 index 00000000..23adb822 --- /dev/null +++ b/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Dread Visage", + "type": "feature", + "_id": "i92lYjDhVB0LyPid", + "img": "icons/magic/control/fear-fright-monster-red.webp", + "system": { + "description": "You have advantage on rolls to intimidate hostile creatures.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Dread Visage", + "type": "base", + "_id": "2Gd6iHQX521aAZqC", + "img": "icons/magic/control/fear-fright-monster-red.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.advantageSources", + "mode": 2, + "value": "Rolls to intimidate hostile creatures", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You have advantage on rolls to intimidate hostile creatures
", + "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": 1754000031619, + "modifiedTime": 1754000179466, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!i92lYjDhVB0LyPid.2Gd6iHQX521aAZqC" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753999985847, + "modifiedTime": 1754000026405, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!i92lYjDhVB0LyPid" +} diff --git a/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json b/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json new file mode 100644 index 00000000..5d946a88 --- /dev/null +++ b/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json @@ -0,0 +1,92 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Efficient", + "type": "feature", + "_id": "2xlqKOkDxWHbuj4t", + "img": "icons/magic/time/clock-stopwatch-white-blue.webp", + "system": { + "description": "When you take a short rest, you can choose a long rest move instead of a short rest move.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Efficient", + "type": "base", + "_id": "EEryWN2nE33ppGHi", + "img": "icons/magic/time/clock-stopwatch-white-blue.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.rest.shortRest.longMoves", + "mode": 2, + "value": "1", + "priority": null + }, + { + "key": "system.bonuses.rest.shortRest.shortMoves", + "mode": 2, + "value": "-1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When you take a short rest, you can choose a long rest move instead of a short rest move.
", + "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": 1753993852553, + "modifiedTime": 1753993889097, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!2xlqKOkDxWHbuj4t.EEryWN2nE33ppGHi" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993806761, + "modifiedTime": 1753993849345, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!2xlqKOkDxWHbuj4t" +} diff --git a/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json b/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json new file mode 100644 index 00000000..ccd0f87e --- /dev/null +++ b/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json @@ -0,0 +1,106 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Elemental Breath", + "type": "feature", + "_id": "sRaE3CgkgjBF1UpV", + "img": "icons/creatures/abilities/dragon-fire-breath-orange.webp", + "system": { + "description": "Choose an element for your breath (such as electricity, fire, or ice). You can use this breath against a target or group of targets within Very Close range, treating it as an Instinct weapon that deals d8 magic damage using your Proficiency.
", + "resource": null, + "actions": { + "a6WROv0OKx0lbYVa": { + "type": "attack", + "_id": "a6WROv0OKx0lbYVa", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d8", + "bonus": null, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "attack", + "trait": "instinct", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Attack", + "img": "icons/creatures/abilities/dragon-fire-breath-orange.webp", + "range": "veryClose" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994055921, + "modifiedTime": 1753994120065, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!sRaE3CgkgjBF1UpV" +} diff --git a/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json b/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json new file mode 100644 index 00000000..ec1b1c01 --- /dev/null +++ b/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Endurance", + "type": "feature", + "_id": "tXWEMdLXafUSZTbK", + "img": "icons/magic/control/buff-strength-muscle-damage.webp", + "system": { + "description": "Gain an additional Hit Point slot at character creation.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "db8W2Q0Qty84XV0x", + "img": "icons/magic/control/buff-strength-muscle-damage.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.resources.hitPoints.value", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain an additional Hit Point slot at character creation.
", + "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": 1753996768847, + "modifiedTime": 1753999765864, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!tXWEMdLXafUSZTbK.db8W2Q0Qty84XV0x" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996738047, + "modifiedTime": 1753996763700, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!tXWEMdLXafUSZTbK" +} diff --git a/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json b/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json new file mode 100644 index 00000000..bb8d790c --- /dev/null +++ b/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Fearless", + "type": "feature", + "_id": "IlWvn5kCqCBMuUJn", + "img": "icons/magic/light/orb-container-orange.webp", + "system": { + "description": "When you roll with Fear, you can mark 2 Stress to change it into a roll with Hope instead.
", + "resource": null, + "actions": { + "G1H7k5RdvS1EJgFu": { + "type": "effect", + "_id": "G1H7k5RdvS1EJgFu", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 2, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "self", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/light/orb-container-orange.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753999842518, + "modifiedTime": 1753999969945, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!IlWvn5kCqCBMuUJn" +} diff --git a/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json b/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json new file mode 100644 index 00000000..c0547372 --- /dev/null +++ b/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Feline Instincts", + "type": "feature", + "_id": "lNgbbYnCKgrdvA85", + "img": "icons/magic/perception/eye-slit-orange.webp", + "system": { + "description": "When you make an Agility Roll, you can spend 2 Hope to reroll your Hope Die.
", + "resource": null, + "actions": { + "ALsGHOy0q5THGxz5": { + "type": "effect", + "_id": "ALsGHOy0q5THGxz5", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "hope", + "value": 2, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Spend Hope", + "img": "icons/magic/perception/eye-slit-orange.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000245487, + "modifiedTime": 1754000291789, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!lNgbbYnCKgrdvA85" +} diff --git a/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json b/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json new file mode 100644 index 00000000..60a74cf4 --- /dev/null +++ b/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json @@ -0,0 +1,81 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Fungril Network", + "type": "feature", + "_id": "9tmeXm623hl4Qnws", + "img": "icons/commodities/biological/suckers-green.webp", + "system": { + "description": "Make an Instinct Roll (12) to use your mycelial array to speak with others of your ancestry. On a success, you can communicate across any distance.
", + "resource": null, + "actions": { + "ZYfigAyUdDUteczO": { + "type": "attack", + "_id": "ZYfigAyUdDUteczO", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "trait", + "trait": "instinct", + "difficulty": 12, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Communicate", + "img": "icons/magic/sonic/explosion-impact-shock-wave.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996087513, + "modifiedTime": 1753996189704, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!9tmeXm623hl4Qnws" +} diff --git a/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json b/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json new file mode 100644 index 00000000..434f9138 --- /dev/null +++ b/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "High Stamina", + "type": "feature", + "_id": "HMXNJZ7ynzajR2KT", + "img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp", + "system": { + "description": "Gain an additional Stress slot at character creation.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "High Stamina", + "type": "base", + "_id": "Xl3TsKUJcl6vi1ly", + "img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.resources.stress.value", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain an additional Stress slot at character creation.
", + "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": 1753997348303, + "modifiedTime": 1753999779490, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!HMXNJZ7ynzajR2KT.Xl3TsKUJcl6vi1ly" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997324366, + "modifiedTime": 1753997344417, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!HMXNJZ7ynzajR2KT" +} diff --git a/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json b/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json new file mode 100644 index 00000000..34de2d91 --- /dev/null +++ b/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Increased Fortitude", + "type": "feature", + "_id": "0RN0baBxh95GT1cm", + "img": "icons/magic/control/buff-strength-muscle-damage-red.webp", + "system": { + "description": "Spend 3 Hope to halve incoming physical damage.
", + "resource": null, + "actions": { + "pFPbjyexOPx5gog6": { + "type": "effect", + "_id": "pFPbjyexOPx5gog6", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "hope", + "value": 3, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Spend Hope", + "img": "icons/magic/control/buff-strength-muscle-damage-red.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994395837, + "modifiedTime": 1753994468110, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!0RN0baBxh95GT1cm" +} diff --git a/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json b/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json new file mode 100644 index 00000000..00645109 --- /dev/null +++ b/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Internal Compass", + "type": "feature", + "_id": "e2Cu6exxtvfQzc1e", + "img": "icons/tools/navigation/compass-worn-copper.webp", + "system": { + "description": "When you roll a 1 on your Hope Die, you can reroll it.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997233606, + "modifiedTime": 1753997248375, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!e2Cu6exxtvfQzc1e" +} diff --git a/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json b/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json new file mode 100644 index 00000000..f9233e32 --- /dev/null +++ b/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json @@ -0,0 +1,87 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Kick", + "type": "feature", + "_id": "gpW19TfJk0WWFh1S", + "img": "icons/skills/melee/shield-damaged-broken-gold.webp", + "system": { + "description": "When you succeed on an attack against a target within Melee range, you can mark a Stress to kick yourself off them, dealing an extra 2d6 damage and knocking back either yourself or the target to Very Close range.
", + "resource": null, + "actions": { + "bXbQ57CB1Hfj5XrS": { + "type": "damage", + "_id": "bXbQ57CB1Hfj5XrS", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "2d6" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "name": "Damage", + "img": "icons/skills/melee/shield-damaged-broken-gold.webp", + "range": "melee" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995249173, + "modifiedTime": 1753995396728, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!gpW19TfJk0WWFh1S" +} diff --git a/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json b/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json new file mode 100644 index 00000000..4c8cfc30 --- /dev/null +++ b/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json @@ -0,0 +1,114 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Long Tongue", + "type": "feature", + "_id": "oWbdlh51ajn1Q5kL", + "img": "icons/commodities/biological/tongue-violet.webp", + "system": { + "description": "You can use your long tongue to grab onto things within Close range. Mark a Stress to use your tongue as a Finesse Close weapon that deals d12 physical damage using your Proficiency.
", + "resource": null, + "actions": { + "MhAWv7tuvkfOf7wQ": { + "type": "attack", + "_id": "MhAWv7tuvkfOf7wQ", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d12", + "bonus": null, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "attack", + "trait": "finesse", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Attack", + "img": "icons/commodities/biological/tongue-violet.webp", + "range": "close" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000791839, + "modifiedTime": 1754000854253, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!oWbdlh51ajn1Q5kL" +} diff --git a/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json b/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json new file mode 100644 index 00000000..3319eee8 --- /dev/null +++ b/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Luckbender", + "type": "feature", + "_id": "U6iFjZgLYawlOlQZ", + "img": "icons/magic/control/buff-luck-fortune-green-gold.webp", + "system": { + "description": "Once per session, after you or a willing ally within Close range makes an action roll, you can spend 3 Hope to reroll the Duality Dice.
", + "resource": null, + "actions": { + "l1wUmqMzG8YF9sqb": { + "type": "effect", + "_id": "l1wUmqMzG8YF9sqb", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "hope", + "value": 3, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "friendly", + "amount": null + }, + "name": "Use", + "img": "icons/magic/control/buff-luck-fortune-green-gold.webp", + "range": "close" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994658436, + "modifiedTime": 1753994711690, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!U6iFjZgLYawlOlQZ" +} diff --git a/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json b/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json new file mode 100644 index 00000000..01de5030 --- /dev/null +++ b/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json @@ -0,0 +1,102 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Luckbringer", + "type": "feature", + "_id": "8O6SQQMxKWr430QA", + "img": "icons/magic/life/heart-hand-gold-green.webp", + "system": { + "description": "At the start of each session, everyone in your party gains a Hope.
", + "resource": null, + "actions": { + "8sK3t73bFkpb999C": { + "type": "healing", + "_id": "8sK3t73bFkpb999C", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "1", + "recovery": "session" + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "1" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hope", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "friendly", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Gain Hope", + "img": "icons/magic/life/heart-hand-gold-green.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997164653, + "modifiedTime": 1753997217376, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!8O6SQQMxKWr430QA" +} diff --git a/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json b/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json new file mode 100644 index 00000000..9f36411f --- /dev/null +++ b/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Natural Climber", + "type": "feature", + "_id": "soQvPL0MrTLLcc31", + "img": "icons/magic/nature/root-vine-barrier-wall-brown.webp", + "system": { + "description": "You have advantage on Agility Rolls that involve balancing and climbing.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Natural Climber", + "type": "base", + "_id": "HQeQH9gUfrjlWWcg", + "img": "icons/magic/nature/root-vine-barrier-wall-brown.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.advantageSources", + "mode": 2, + "value": "Agility Rolls that involve balancing and climbing", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You have advantage on Agility Rolls that involve balancing and climbing.
", + "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": 1754001083828, + "modifiedTime": 1754001113548, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!soQvPL0MrTLLcc31.HQeQH9gUfrjlWWcg" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754001064223, + "modifiedTime": 1754001078029, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!soQvPL0MrTLLcc31" +} diff --git a/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json b/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json new file mode 100644 index 00000000..d3539a9f --- /dev/null +++ b/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Nimble", + "type": "feature", + "_id": "3lNqft3LmOlEIEkw", + "img": "icons/skills/movement/arrows-up-trio-red.webp", + "system": { + "description": "Gain a permanent +1 bonus to your Evasion at character creation.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Nimble", + "type": "base", + "_id": "zaxVYqKzUYDJ3SDq", + "img": "icons/skills/movement/arrows-up-trio-red.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain a permanent +1 bonus to your Evasion at character creation.
", + "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": 1754001151008, + "modifiedTime": 1754001176435, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!3lNqft3LmOlEIEkw.zaxVYqKzUYDJ3SDq" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754001125989, + "modifiedTime": 1754001147782, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!3lNqft3LmOlEIEkw" +} diff --git a/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json b/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json new file mode 100644 index 00000000..d805e240 --- /dev/null +++ b/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Purposeful Design", + "type": "feature", + "_id": "g6I4tRUQNgL4vZ6H", + "img": "icons/tools/scribal/lens-blue.webp", + "system": { + "description": "Decide who made you and for what purpose. At character creation, choose one of your Experiences that best aligns with this purpose and gain a permanent +1 bonus to it.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993755899, + "modifiedTime": 1753993791943, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!g6I4tRUQNgL4vZ6H" +} diff --git a/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json b/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json new file mode 100644 index 00000000..87c6ec96 --- /dev/null +++ b/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Quick Reactions", + "type": "feature", + "_id": "0NSPSuB8KSEYTJIP", + "img": "icons/skills/movement/feet-winged-boots-brown.webp", + "system": { + "description": "Mark a Stress to gain advantage on a reaction roll.
", + "resource": null, + "actions": { + "6Av1Y8JXWDkteLhc": { + "type": "effect", + "_id": "6Av1Y8JXWDkteLhc", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/skills/movement/feet-winged-boots-brown.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994522468, + "modifiedTime": 1753994554455, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!0NSPSuB8KSEYTJIP" +} diff --git a/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json b/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json new file mode 100644 index 00000000..b6c974d0 --- /dev/null +++ b/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Reach", + "type": "feature", + "_id": "WRs2jvwM0STmkWIW", + "img": "icons/weapons/staves/staff-simple.webp", + "system": { + "description": "Treat any weapon, ability, spell, or other feature that has a Melee range as though it has a Very Close range instead.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996802591, + "modifiedTime": 1753996830453, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!WRs2jvwM0STmkWIW" +} diff --git a/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json b/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json new file mode 100644 index 00000000..356f9283 --- /dev/null +++ b/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json @@ -0,0 +1,115 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Retract", + "type": "feature", + "_id": "UFR67BUOhNGLFyg9", + "img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp", + "system": { + "description": "Mark a Stress to retract into your shell. While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.
", + "resource": null, + "actions": { + "HfiAg14hrYt7Yvnj": { + "type": "effect", + "_id": "HfiAg14hrYt7Yvnj", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "KoHQg8KurugHlga0", + "img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.resistance.physical.resistance", + "mode": 5, + "value": "1", + "priority": null + }, + { + "key": "system.disadvantageSources", + "mode": 2, + "value": "Action Rolls", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.
", + "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": 1753996568678, + "modifiedTime": 1753996633306, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!UFR67BUOhNGLFyg9.KoHQg8KurugHlga0" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996513763, + "modifiedTime": 1753996553192, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!UFR67BUOhNGLFyg9" +} diff --git a/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json b/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json new file mode 100644 index 00000000..01e909bb --- /dev/null +++ b/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json @@ -0,0 +1,133 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Retracting Claws", + "type": "feature", + "_id": "Zj69cAeb3NjIa8Hn", + "img": "icons/creatures/claws/claw-straight-orange.webp", + "system": { + "description": "Make an Agility Roll to scratch a target within Melee range. On a success, they become temporarily Vulnerable.
", + "resource": null, + "actions": { + "LcFhDb3sJk8sraAc": { + "type": "attack", + "_id": "LcFhDb3sJk8sraAc", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [ + { + "_id": "pO76svFkmWmZ6LjC", + "onSave": false + } + ], + "roll": { + "type": "attack", + "trait": "agility", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Scratch", + "img": "icons/creatures/claws/claw-straight-orange.webp", + "range": "melee" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Retractable Claws", + "img": "icons/creatures/claws/claw-straight-orange.webp", + "origin": "Compendium.daggerheart.ancestries.Item.Zj69cAeb3NjIa8Hn", + "transfer": false, + "_id": "pO76svFkmWmZ6LjC", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "", + "tint": "#ffffff", + "statuses": [ + "vulnerable" + ], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000434939, + "modifiedTime": 1754000461912, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!Zj69cAeb3NjIa8Hn.pO76svFkmWmZ6LjC" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000306620, + "modifiedTime": 1754000434953, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!Zj69cAeb3NjIa8Hn" +} diff --git a/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json b/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json new file mode 100644 index 00000000..3b23d6b7 --- /dev/null +++ b/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Scales", + "type": "feature", + "_id": "u8ZhV962rNmUlzkp", + "img": "icons/commodities/leather/scales-brown.webp", + "system": { + "description": "Your scales act as natural protection. When you would take Severe damage, you can mark a Stress to mark 1 fewer Hit Points.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "b6Pkwwk7pgBeeUTe", + "img": "icons/commodities/leather/scales-brown.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.rules.damageReduction.stressDamageReduction.severe.cost", + "mode": 5, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When you would take Severe damage, you can mark a Stress to mark 1 fewer Hit Points.
", + "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": 1753993993682, + "modifiedTime": 1753994027257, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!u8ZhV962rNmUlzkp.b6Pkwwk7pgBeeUTe" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993962796, + "modifiedTime": 1753993988373, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!u8ZhV962rNmUlzkp" +} diff --git a/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json b/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json new file mode 100644 index 00000000..65352d25 --- /dev/null +++ b/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json @@ -0,0 +1,92 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Shell", + "type": "feature", + "_id": "A6a87OWA3tx16g9V", + "img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp", + "system": { + "description": "Gain a bonus to your damage thresholds equal to your Proficiency.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Shell", + "type": "base", + "_id": "41uiZKXzSSomf9YD", + "img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.damageThresholds.major", + "mode": 2, + "value": "@prof", + "priority": null + }, + { + "key": "system.damageThresholds.severe", + "mode": 2, + "value": "@prof", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain a bonus to your damage thresholds equal to your Proficiency.
", + "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": 1753996434947, + "modifiedTime": 1753996492623, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!A6a87OWA3tx16g9V.41uiZKXzSSomf9YD" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996421284, + "modifiedTime": 1753996433164, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!A6a87OWA3tx16g9V" +} diff --git a/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json b/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json new file mode 100644 index 00000000..61ff446d --- /dev/null +++ b/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Sturdy", + "type": "feature", + "_id": "60o3cKUZzxO9EDQF", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-purple-orange.webp", + "system": { + "description": "When you have 1 Hit Point remaining, attacks against you have disadvantage.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000559764, + "modifiedTime": 1754000590019, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!60o3cKUZzxO9EDQF" +} diff --git a/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json b/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json new file mode 100644 index 00000000..cc0fd804 --- /dev/null +++ b/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Surefooted", + "type": "feature", + "_id": "YsJticxv8OFndd4D", + "img": "icons/skills/movement/feet-bladed-boots-fire.webp", + "system": { + "description": "You ignore disadvantage on Agility Rolls.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997026520, + "modifiedTime": 1753997047297, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!YsJticxv8OFndd4D" +} diff --git a/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json b/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json new file mode 100644 index 00000000..6b8aa900 --- /dev/null +++ b/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Thick Skin", + "type": "feature", + "_id": "S0Ww7pYOSREt8qKg", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp", + "system": { + "description": "When you take Minor damage, you can mark 2 Stress instead of marking a Hit Point.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Thick Skin", + "type": "base", + "_id": "4Lc40mNnRInTKMC5", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.rules.damageReduction.stressDamageReduction.minor.cost", + "mode": 5, + "value": "2", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When you take Minor damage, you can mark 2 Stress instead of marking a Hit Point.
", + "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": 1753994342724, + "modifiedTime": 1753994373197, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!S0Ww7pYOSREt8qKg.4Lc40mNnRInTKMC5" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994247261, + "modifiedTime": 1753994338239, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!S0Ww7pYOSREt8qKg" +} diff --git a/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json b/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json new file mode 100644 index 00000000..25f0d1b2 --- /dev/null +++ b/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json @@ -0,0 +1,123 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Tusks", + "type": "feature", + "_id": "YhxD1ujZpftPu19w", + "img": "icons/creatures/abilities/fang-tooth-blood-red.webp", + "system": { + "description": "When you succeed on an attack against a target within Melee range, you can spend a Hope to gore the target with your tusks, dealing an extra 1d6 damage.
", + "resource": null, + "actions": { + "1n4ZsA6s2iBAL1tG": { + "type": "effect", + "_id": "1n4ZsA6s2iBAL1tG", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "keyIsID": false, + "key": "hope", + "value": 1, + "scalable": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "self", + "amount": null + }, + "name": "Spend Hope", + "img": "icons/creatures/abilities/fang-tooth-blood-red.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "klEyAxQa5YHXVnrl", + "img": "icons/creatures/abilities/fang-tooth-blood-red.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d6", + "priority": null + }, + { + "key": "system.bonuses.damage.magical.dice", + "mode": 2, + "value": "1d6", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You gore the target with your tusks, dealing an extra 1d6 damage on this attack.
", + "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": 1754000662388, + "modifiedTime": 1754000724393, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!YhxD1ujZpftPu19w.klEyAxQa5YHXVnrl" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000611682, + "modifiedTime": 1754000658375, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!YhxD1ujZpftPu19w" +} diff --git a/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json b/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json new file mode 100644 index 00000000..5d534a67 --- /dev/null +++ b/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json @@ -0,0 +1,81 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Unshakeable", + "type": "feature", + "_id": "G5pE8FW94V1W9jJx", + "img": "icons/magic/control/buff-flight-wings-runes-blue-white.webp", + "system": { + "description": "When you would mark a Stress, roll a d6. On a result of 6, don’t mark it.
", + "resource": null, + "actions": { + "x8xbjyCrJ0okOpIU": { + "type": "attack", + "_id": "x8xbjyCrJ0okOpIU", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": "equal", + "treshold": 6 + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Use", + "img": "icons/magic/control/buff-flight-wings-runes-blue-white.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995651913, + "modifiedTime": 1753995700360, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!G5pE8FW94V1W9jJx" +} diff --git a/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json b/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json new file mode 100644 index 00000000..56ffaacc --- /dev/null +++ b/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json @@ -0,0 +1,117 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Wings", + "type": "feature", + "_id": "WquAjoOcso8lwySW", + "img": "icons/creatures/abilities/wing-batlike-white-blue.webp", + "system": { + "description": "You can fly. While flying, you can mark a Stress after an adversary makes an attack against you to gain a +2 bonus to your Evasion against that attack.
", + "resource": null, + "actions": { + "dpKxkDSjXsP8kHMI": { + "type": "effect", + "_id": "dpKxkDSjXsP8kHMI", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/creatures/abilities/wing-batlike-white-blue.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Wings", + "type": "base", + "_id": "zD3xVdwkEQi2ivOn", + "img": "icons/creatures/abilities/wing-batlike-white-blue.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "2", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You to gain a +2 bonus to your Evasion against the Adversary's attack.
", + "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": 1753994808408, + "modifiedTime": 1753994856171, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!WquAjoOcso8lwySW.zD3xVdwkEQi2ivOn" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994723305, + "modifiedTime": 1753994805028, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!WquAjoOcso8lwySW" +} From a27ee1578ed38981f4f137a84f30521ad3a59f31 Mon Sep 17 00:00:00 2001 From: joaquinpereyra98 <24190917+joaquinpereyra98@users.noreply.github.com> Date: Thu, 31 Jul 2025 23:33:26 -0300 Subject: [PATCH 10/13] Feature: add methods for generate tags and labels for documents and actions (#499) * FEAT: getTags and getLabels for weapons items * FEAT: add _gettags and _getLabels to armor, domainCard, weapons and ActiveEffect * define tags for actions --------- Co-authored-by: Joaquin Pereyra