Merge branch 'main' into development

This commit is contained in:
WBHarry 2025-08-16 02:22:27 +02:00
commit 2820c96259
157 changed files with 1576 additions and 1286 deletions

View file

@ -1444,11 +1444,11 @@
}, },
"protective": { "protective": {
"name": "Protective", "name": "Protective",
"description": "Add your character's Tier to your Armor Score", "description": "Add the item's Tier to your Armor Score",
"effects": { "effects": {
"protective": { "protective": {
"name": "Protective", "name": "Protective",
"description": "Add your character's Tier to your Armor Score" "description": "Add the item's Tier to your Armor Score"
} }
} }
}, },

View file

@ -494,7 +494,9 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
this.render(); this.render();
} }
static async finish() { static async finish(_, button) {
button.disabled = true;
const primaryAncestryFeature = this.setup.primaryAncestry.system.primaryFeature; const primaryAncestryFeature = this.setup.primaryAncestry.system.primaryFeature;
const secondaryAncestryFeature = this.setup.secondaryAncestry?.uuid const secondaryAncestryFeature = this.setup.secondaryAncestry?.uuid
? this.setup.secondaryAncestry.system.secondaryFeature ? this.setup.secondaryAncestry.system.secondaryFeature

View file

@ -650,7 +650,9 @@ export default class DhlevelUp extends HandlebarsApplicationMixin(ApplicationV2)
this.render(); this.render();
} }
static async save() { static async save(_, button) {
button.disabled = true;
const levelupData = Object.keys(this.levelup.levels).reduce((acc, level) => { const levelupData = Object.keys(this.levelup.levels).reduce((acc, level) => {
if (level >= this.levelup.startLevel) { if (level >= this.levelup.startLevel) {
acc[level] = this.levelup.levels[level].toObject(); acc[level] = this.levelup.levels[level].toObject();

View file

@ -1,3 +1,4 @@
import { getDocFromElement } from '../../../helpers/utils.mjs';
import DHBaseActorSheet from '../api/base-actor.mjs'; import DHBaseActorSheet from '../api/base-actor.mjs';
/**@typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction */ /**@typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction */
@ -53,6 +54,15 @@ export default class AdversarySheet extends DHBaseActorSheet {
return context; return context;
} }
/**@inheritdoc */
_attachPartListeners(partId, htmlElement, options) {
super._attachPartListeners(partId, htmlElement, options);
htmlElement.querySelectorAll('.inventory-item-resource').forEach(element => {
element.addEventListener('change', this.updateItemResource.bind(this));
});
}
/** /**
* Prepare render context for the Biography part. * Prepare render context for the Biography part.
* @param {ApplicationRenderContext} context * @param {ApplicationRenderContext} context
@ -121,4 +131,18 @@ export default class AdversarySheet extends DHBaseActorSheet {
this.actor.diceRoll(config); this.actor.diceRoll(config);
} }
/* -------------------------------------------- */
/* Application Listener Actions */
/* -------------------------------------------- */
async updateItemResource(event) {
const item = await getDocFromElement(event.currentTarget);
if (!item) return;
const max = event.currentTarget.max ? Number(event.currentTarget.max) : null;
const value = max ? Math.min(Number(event.currentTarget.value), max) : event.currentTarget.value;
await item.update({ 'system.resource.value': value });
this.render();
}
} }

View file

@ -209,8 +209,9 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
} }
async consume(config, successCost = false) { async consume(config, successCost = false) {
const usefulResources = { const actor= this.actor.system.partner ?? this.actor,
...foundry.utils.deepClone(this.actor.system.resources), usefulResources = {
...foundry.utils.deepClone(actor.system.resources),
fear: { fear: {
value: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Resources.Fear), value: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Resources.Fear),
max: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).maxFear, max: game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).maxFear,
@ -247,7 +248,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
} }
}, []); }, []);
await (this.actor.system.partner ?? this.actor).modifyResource(resources); await actor.modifyResource(resources);
if ( if (
config.uses?.enabled && config.uses?.enabled &&
((!successCost && (!config.uses?.consumeOnSuccess || config.roll?.success)) || ((!successCost && (!config.uses?.consumeOnSuccess || config.roll?.success)) ||

View file

@ -93,14 +93,6 @@ export default class DhCharacter extends BaseDataActor {
faith: new fields.StringField({}) faith: new fields.StringField({})
}) })
}), }),
class: new fields.SchemaField({
value: new ForeignDocumentUUIDField({ type: 'Item', nullable: true }),
subclass: new ForeignDocumentUUIDField({ type: 'Item', nullable: true })
}),
multiclass: new fields.SchemaField({
value: new ForeignDocumentUUIDField({ type: 'Item', nullable: true }),
subclass: new ForeignDocumentUUIDField({ type: 'Item', nullable: true })
}),
attack: new ActionField({ attack: new ActionField({
initial: { initial: {
name: 'Unarmed Attack', name: 'Unarmed Attack',
@ -314,6 +306,26 @@ export default class DhCharacter extends BaseDataActor {
return this.parent.items.find(x => x.type === 'community') ?? null; return this.parent.items.find(x => x.type === 'community') ?? null;
} }
get class() {
const value = this.parent.items.find(x => x.type === 'class' && !x.system.isMulticlass);
const subclass = this.parent.items.find(x => x.type === 'subclass' && !x.system.isMulticlass);
return {
value,
subclass
};
}
get multiclass() {
const value = this.parent.items.find(x => x.type === 'Class' && x.system.isMulticlass);
const subclass = this.parent.items.find(x => x.type === 'subclass' && x.system.isMulticlass);
return {
value,
subclass
};
}
get features() { get features() {
return this.parent.items.filter(x => x.type === 'feature') ?? []; return this.parent.items.filter(x => x.type === 'feature') ?? [];
} }
@ -323,7 +335,8 @@ export default class DhCharacter extends BaseDataActor {
} }
get needsCharacterSetup() { get needsCharacterSetup() {
return !(this.class.value || this.class.subclass || this.ancestry || this.community); const { value: classValue, subclass } = this.class;
return !(classValue || subclass || this.ancestry || this.community);
} }
get spellcastModifierTrait() { get spellcastModifierTrait() {
@ -347,7 +360,8 @@ export default class DhCharacter extends BaseDataActor {
get domains() { get domains() {
const classDomains = this.class.value ? this.class.value.system.domains : []; const classDomains = this.class.value ? this.class.value.system.domains : [];
const multiclassDomains = this.multiclass.value ? this.multiclass.value.system.domains : []; const multiclass = this.multiclass.value;
const multiclassDomains = multiclass ? multiclass.system.domains : [];
return [...classDomains, ...multiclassDomains]; return [...classDomains, ...multiclassDomains];
} }

View file

@ -82,7 +82,6 @@ export class ActionsField extends MappingField {
*/ */
export class ActionField extends foundry.data.fields.ObjectField { export class ActionField extends foundry.data.fields.ObjectField {
getModel(value) { getModel(value) {
if (value && !value.type) value.type = 'attack';
return game.system.api.models.actions.actionsTypes[value.type] ?? null; return game.system.api.models.actions.actionsTypes[value.type] ?? null;
} }

View file

@ -102,26 +102,11 @@ export default class DHClass extends BaseDataItem {
if (allowed === false) return; if (allowed === false) return;
} }
_onCreate(data, options, userId) {
super._onCreate(data, options, userId);
if (userId !== game.user.id) return;
if (options.parent?.type === 'character') {
const path = `system.${data.system.isMulticlass ? 'multiclass.value' : 'class.value'}`;
options.parent.update({ [path]: `${options.parent.uuid}.Item.${data._id}` });
}
}
_onDelete(options, userId) { _onDelete(options, userId) {
super._onDelete(options, userId); super._onDelete(options, userId);
if (options.parent?.type === 'character') { if (options.parent?.type === 'character') {
const path = `system.${this.isMulticlass ? 'multiclass' : 'class'}`; const path = `system.${this.isMulticlass ? 'multiclass' : 'class'}`;
options.parent.update({
[`${path}.value`]: null
});
foundry.utils.getProperty(options.parent, `${path}.subclass`)?.delete(); foundry.utils.getProperty(options.parent, `${path}.subclass`)?.delete();
} }
} }

View file

@ -42,11 +42,9 @@ export default class DHFeature extends BaseDataItem {
traitValue = traitValue =
this.actor.system.traits[this.actor.items.get(this.originId).system.spellcastingTrait]?.value ?? 0; this.actor.system.traits[this.actor.items.get(this.originId).system.spellcastingTrait]?.value ?? 0;
} else { } else {
const subclass = const { value: multiclass, subclass } = this.actor.system.multiclass;
this.actor.system.multiclass.value?.id === this.originId const selectedSubclass = multiclass?.id === this.originId ? subclass : this.actor.system.class.subclass;
? this.actor.system.multiclass.subclass traitValue = this.actor.system.traits[selectedSubclass.system.spellcastingTrait]?.value ?? 0;
: this.actor.system.class.subclass;
traitValue = this.actor.system.traits[subclass.system.spellcastingTrait]?.value ?? 0;
} }
} }

View file

@ -88,24 +88,4 @@ export default class DHSubclass extends BaseDataItem {
const allowed = await super._preCreate(data, options, user); const allowed = await super._preCreate(data, options, user);
if (allowed === false) return; if (allowed === false) return;
} }
_onCreate(data, options, userId) {
super._onCreate(data, options, userId);
if (userId !== game.user.id) return;
if (options.parent?.type === 'character') {
const path = `system.${data.system.isMulticlass ? 'multiclass.subclass' : 'class.subclass'}`;
options.parent.update({ [path]: `${options.parent.uuid}.Item.${data._id}` });
}
}
_onDelete(options, userId) {
super._onDelete(options, userId);
if (options.parent?.type === 'character') {
const path = `system.${this.isMulticlass ? 'multiclass.subclass' : 'class.subclass'}`;
options.parent.update({ [path]: null });
}
}
} }

View file

@ -137,7 +137,7 @@ export default class DamageRoll extends DHRoll {
} }
if (config.isCritical && part.applyTo === CONFIG.DH.GENERAL.healingTypes.hitPoints.id) { if (config.isCritical && part.applyTo === CONFIG.DH.GENERAL.healingTypes.hitPoints.id) {
const total = part.roll.dice.reduce((acc, term) => acc + term._faces*term._number, 0); const total = part.roll.dice.reduce((acc, term) => acc + term._faces * term._number, 0);
if (total > 0) { if (total > 0) {
part.roll.terms.push(...this.formatModifier(total)); part.roll.terms.push(...this.formatModifier(total));
} }
@ -164,8 +164,8 @@ export default class DamageRoll extends DHRoll {
const change = c.changes.find(ch => ch.key === 'system.bonuses.rally'); const change = c.changes.find(ch => ch.key === 'system.bonuses.rally');
if (change) a.push({ value: c.id, label: change.value }); if (change) a.push({ value: c.id, label: change.value });
return a; return a;
}, []) }, []);
if(rallyChoices.length) { if (rallyChoices.length) {
mods.rally = { mods.rally = {
label: 'DAGGERHEART.CLASS.Feature.rallyDice', label: 'DAGGERHEART.CLASS.Feature.rallyDice',
values: rallyChoices, values: rallyChoices,
@ -318,15 +318,19 @@ export default class DamageRoll extends DHRoll {
}); });
const updateMessage = game.messages.get(message._id); const updateMessage = game.messages.get(message._id);
const damageParts = updateMessage.system.damage[damageType].parts.map((damagePart, index) => {
if (index !== Number(part)) return damagePart;
return {
...rollPart,
total: parsedRoll.total,
dice: rerolledDice
};
});
await updateMessage.update({ await updateMessage.update({
[`system.damage.${damageType}`]: { [`system.damage.${damageType}`]: {
...updateMessage, ...updateMessage,
total: parsedRoll.total, total: parsedRoll.total,
[`parts.${part}`]: { parts: damageParts
...rollPart,
total: parsedRoll.total,
dice: rerolledDice
}
} }
}); });
} }

View file

@ -25,6 +25,14 @@ export default class DhpActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
/** @inheritDoc */
static migrateData(source) {
if(source.system?.attack && !source.system.attack.type) source.system.attack.type = "attack";
return super.migrateData(source);
}
/* -------------------------------------------- */
/**@inheritdoc */ /**@inheritdoc */
static getDefaultArtwork(actorData) { static getDefaultArtwork(actorData) {
const { type } = actorData; const { type } = actorData;
@ -564,10 +572,20 @@ export default class DhpActor extends Actor {
if (armorSlotResult) { if (armorSlotResult) {
const { modifiedDamage, armorSpent, stressSpent } = armorSlotResult; const { modifiedDamage, armorSpent, stressSpent } = armorSlotResult;
updates.find(u => u.key === 'hitPoints').value = modifiedDamage; updates.find(u => u.key === 'hitPoints').value = modifiedDamage;
updates.push( if(armorSpent) {
...(armorSpent ? [{ value: armorSpent, key: 'armor' }] : []), const armorUpdate = updates.find(u => u.key === 'armor');
...(stressSpent ? [{ value: stressSpent, key: 'stress' }] : []) if(armorUpdate)
); armorUpdate.value += armorSpent;
else
updates.push({ value: armorSpent, key: 'armor' });
}
if(stressSpent) {
const stressUpdate = updates.find(u => u.key === 'stress');
if(stressUpdate)
stressUpdate.value += stressSpent;
else
updates.push({ value: stressSpent, key: 'stress' });
}
} }
} }
} }
@ -632,7 +650,7 @@ export default class DhpActor extends Actor {
} }
async modifyResource(resources) { async modifyResource(resources) {
if (!resources.length) return; if (!resources?.length) return;
if (resources.find(r => r.key === 'stress')) this.convertStressDamageToHP(resources); if (resources.find(r => r.key === 'stress')) this.convertStressDamageToHP(resources);
let updates = { let updates = {

View file

@ -1,6 +1,6 @@
{ {
"name": "Acid Burrower", "name": "Acid Burrower",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -125,7 +125,7 @@
"type": "attack", "type": "attack",
"description": "", "description": "",
"img": "icons/creatures/claws/claw-curved-jagged-yellow.webp", "img": "icons/creatures/claws/claw-curved-jagged-yellow.webp",
"chatDisplay": true, "chatDisplay": false,
"actionType": "action", "actionType": "action",
"cost": [], "cost": [],
"uses": { "uses": {
@ -150,12 +150,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1754010222829, "createdTime": 1754010222829,
"modifiedTime": 1754010222919, "modifiedTime": 1755259462470,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"ownership": { "ownership": {
"default": 0, "default": 0,
@ -170,7 +170,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Adult Flickerfly", "name": "Adult Flickerfly",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784219, "createdTime": 1753922784219,
"modifiedTime": 1754236374441, "modifiedTime": 1755259462665,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "G7jiltRjgvVhZewm", "_id": "G7jiltRjgvVhZewm",
"sort": 3400000, "sort": 3400000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Apprentice Assassin", "name": "Apprentice Assassin",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -103,7 +103,8 @@
] ]
}, },
"img": "icons/weapons/daggers/dagger-bone-black.webp", "img": "icons/weapons/daggers/dagger-bone-black.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -111,12 +112,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784220, "createdTime": 1753922784220,
"modifiedTime": 1754236375474, "modifiedTime": 1755259462932,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "vNIbYQ4YSzNf0WPE", "_id": "vNIbYQ4YSzNf0WPE",
"sort": 3500000, "sort": 3500000,
@ -132,7 +133,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Arch-Necromancer", "name": "Arch-Necromancer",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -115,7 +115,8 @@
] ]
}, },
"img": "icons/magic/unholy/beam-ringed-impact-purple.webp", "img": "icons/magic/unholy/beam-ringed-impact-purple.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -123,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784221, "createdTime": 1753922784221,
"modifiedTime": 1754236374832, "modifiedTime": 1755259462752,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "WPEOIGfclNJxWb87", "_id": "WPEOIGfclNJxWb87",
"sort": 1200000, "sort": 1200000,
@ -144,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Archer Guard", "name": "Archer Guard",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -109,7 +109,8 @@
] ]
}, },
"img": "icons/weapons/bows/longbow-recurve-leather-brown.webp", "img": "icons/weapons/bows/longbow-recurve-leather-brown.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784222, "createdTime": 1753922784222,
"modifiedTime": 1754046151270, "modifiedTime": 1755259462476,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "JRhrrEg5UroURiAD", "_id": "JRhrrEg5UroURiAD",
"sort": 2900000, "sort": 2900000,
@ -138,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Archer Squadron", "name": "Archer Squadron",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -104,7 +104,8 @@
"bonus": 0, "bonus": 0,
"type": "attack" "type": "attack"
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784223, "createdTime": 1753922784223,
"modifiedTime": 1754236373813, "modifiedTime": 1755259462516,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "0ts6CGd93lLqGZI5", "_id": "0ts6CGd93lLqGZI5",
"sort": 200000, "sort": 200000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Assassin Poisoner", "name": "Assassin Poisoner",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -110,7 +110,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784224, "createdTime": 1753922784224,
"modifiedTime": 1754236375140, "modifiedTime": 1755259462844,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "h5RuhzGL17dW5FBT", "_id": "h5RuhzGL17dW5FBT",
"sort": 2700000, "sort": 2700000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Battle Box", "name": "Battle Box",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -109,8 +109,9 @@
} }
] ]
}, },
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784224, "createdTime": 1753922784224,
"modifiedTime": 1754236375071, "modifiedTime": 1755264708230,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "dgH3fW9FTYLaIDvS", "_id": "dgH3fW9FTYLaIDvS",
"sort": 2600000, "sort": 2600000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -1146,7 +1147,7 @@
}, },
"name": "Mark Stress", "name": "Mark Stress",
"img": "icons/creatures/magical/construct-golem-stone-blue.webp", "img": "icons/creatures/magical/construct-golem-stone-blue.webp",
"range": "" "range": "self"
} }
}, },
"originItemType": null, "originItemType": null,
@ -1166,12 +1167,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754074647690, "createdTime": 1754074647690,
"modifiedTime": 1754142206511, "modifiedTime": 1755264742627,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!dgH3fW9FTYLaIDvS.ITzpRJr2jWK0Ksmp" "_key": "!actors.items!dgH3fW9FTYLaIDvS.ITzpRJr2jWK0Ksmp"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "Bear", "name": "Bear",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,11 +40,13 @@
"experiences": { "experiences": {
"5ASmWCwf7HMplPDT": { "5ASmWCwf7HMplPDT": {
"name": "Ambusher", "name": "Ambusher",
"value": 3 "value": 3,
"description": ""
}, },
"rjs6ek5OZP8inYqu": { "rjs6ek5OZP8inYqu": {
"name": "Keen Senses", "name": "Keen Senses",
"value": 2 "value": 2,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -112,7 +114,9 @@
] ]
}, },
"img": "icons/creatures/claws/claw-straight-brown.webp", "img": "icons/creatures/claws/claw-straight-brown.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -120,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784226, "createdTime": 1753922784226,
"modifiedTime": 1754046151030, "modifiedTime": 1755259462479,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "71qKDLKO3CsrNkdy", "_id": "71qKDLKO3CsrNkdy",
"sort": 1200000, "sort": 1200000,
@ -141,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Bladed Guard", "name": "Bladed Guard",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,7 +40,8 @@
"experiences": { "experiences": {
"ptgh1mGd4XGIjaAO": { "ptgh1mGd4XGIjaAO": {
"name": "Local Knowledge", "name": "Local Knowledge",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784226, "createdTime": 1753922784226,
"modifiedTime": 1754046151128, "modifiedTime": 1755259462481,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "B4LZcGuBAHzyVdzy", "_id": "B4LZcGuBAHzyVdzy",
"sort": 2000000, "sort": 2000000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Brawny Zombie", "name": "Brawny Zombie",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -113,7 +113,8 @@
] ]
}, },
"img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp", "img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -121,12 +122,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784231, "createdTime": 1753922784231,
"modifiedTime": 1754046150943, "modifiedTime": 1755259462487,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "2UeZ0tEe7AzgSJNd", "_id": "2UeZ0tEe7AzgSJNd",
"sort": 400000, "sort": 400000,
@ -142,7 +143,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Cave Ogre", "name": "Cave Ogre",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -109,7 +109,8 @@
}, },
"name": "Club", "name": "Club",
"img": "icons/weapons/clubs/club-banded-barbed-black.webp", "img": "icons/weapons/clubs/club-banded-barbed-black.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784233, "createdTime": 1753922784233,
"modifiedTime": 1754046151057, "modifiedTime": 1755259462491,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "8Zkqk1jU09nKL2fy", "_id": "8Zkqk1jU09nKL2fy",
"sort": 1500000, "sort": 1500000,
@ -138,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Chaos Skull", "name": "Chaos Skull",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -104,7 +104,8 @@
] ]
}, },
"img": "icons/magic/light/beam-rays-magenta.webp", "img": "icons/magic/light/beam-rays-magenta.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784233, "createdTime": 1753922784233,
"modifiedTime": 1754236375196, "modifiedTime": 1755259462855,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "jDmHqGvzg5wjgmxE", "_id": "jDmHqGvzg5wjgmxE",
"sort": 2800000, "sort": 2800000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Conscript", "name": "Conscript",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -97,7 +97,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -105,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784234, "createdTime": 1753922784234,
"modifiedTime": 1754236374185, "modifiedTime": 1755259462618,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "99TqczuQipBmaB8i", "_id": "99TqczuQipBmaB8i",
"sort": 1200000, "sort": 1200000,
@ -126,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Construct", "name": "Construct",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -103,7 +103,9 @@
}, },
"name": "Fist Slam", "name": "Fist Slam",
"img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp", "img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -111,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784236, "createdTime": 1753922784236,
"modifiedTime": 1754046151560, "modifiedTime": 1755259462495,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "uOP5oT9QzXPlnf3p", "_id": "uOP5oT9QzXPlnf3p",
"sort": 4900000, "sort": 4900000,
@ -132,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -436,12 +438,12 @@
}, },
"effects": [], "effects": [],
"target": { "target": {
"type": "any", "type": "self",
"amount": null "amount": null
}, },
"name": "Mark Stress", "name": "Mark Stress",
"img": "icons/creatures/magical/construct-golem-stone-blue.webp", "img": "icons/creatures/magical/construct-golem-stone-blue.webp",
"range": "" "range": "self"
} }
}, },
"originItemType": null, "originItemType": null,
@ -512,12 +514,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754013871234, "createdTime": 1754013871234,
"modifiedTime": 1754143897693, "modifiedTime": 1755260161782,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!uOP5oT9QzXPlnf3p.EF6YIDjQ0liFubGA" "_key": "!actors.items!uOP5oT9QzXPlnf3p.EF6YIDjQ0liFubGA"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "Courtesan", "name": "Courtesan",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -114,7 +114,9 @@
] ]
}, },
"img": "icons/weapons/daggers/dagger-straight-cracked.webp", "img": "icons/weapons/daggers/dagger-straight-cracked.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -122,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784237, "createdTime": 1753922784237,
"modifiedTime": 1754236374964, "modifiedTime": 1755264799637,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "ZxWaWPdzFIUPNC62", "_id": "ZxWaWPdzFIUPNC62",
"sort": 2400000, "sort": 2400000,
@ -143,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Courtier", "name": "Courtier",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,7 +40,8 @@
"experiences": { "experiences": {
"omqadwvxPY4xsd7K": { "omqadwvxPY4xsd7K": {
"name": "Socialite", "name": "Socialite",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
] ]
}, },
"img": "icons/weapons/daggers/dagger-twin-green.webp", "img": "icons/weapons/daggers/dagger-twin-green.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784237, "createdTime": 1753922784237,
"modifiedTime": 1754046151158, "modifiedTime": 1755259462499,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "CBBuEXAlLKFMJdjg", "_id": "CBBuEXAlLKFMJdjg",
"sort": 2200000, "sort": 2200000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Cult Adept", "name": "Cult Adept",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -115,7 +115,8 @@
}, },
"range": "far", "range": "far",
"img": "icons/weapons/staves/staff-ornate-purple.webp", "img": "icons/weapons/staves/staff-ornate-purple.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -123,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784239, "createdTime": 1753922784239,
"modifiedTime": 1754236373793, "modifiedTime": 1755259462512,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "0NxCSugvKQ4W8OYZ", "_id": "0NxCSugvKQ4W8OYZ",
"sort": 100000, "sort": 100000,
@ -144,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -620,12 +621,7 @@
"type": "feature", "type": "feature",
"system": { "system": {
"description": "<p> Twice per scene, when a PC rolls a failure with Fear, clear a Stress.</p>", "description": "<p> Twice per scene, when a PC rolls a failure with Fear, clear a Stress.</p>",
"resource": { "resource": null,
"type": "simple",
"value": 0,
"max": "2",
"icon": ""
},
"actions": { "actions": {
"3tibqB97ooJesxf0": { "3tibqB97ooJesxf0": {
"type": "healing", "type": "healing",
@ -637,8 +633,8 @@
"cost": [], "cost": [],
"uses": { "uses": {
"value": null, "value": null,
"max": "", "max": "2",
"recovery": null "recovery": "scene"
}, },
"damage": { "damage": {
"parts": [ "parts": [
@ -692,7 +688,7 @@
}, },
"name": "Clear Stress", "name": "Clear Stress",
"img": "icons/magic/unholy/silhouette-robe-evil-glow.webp", "img": "icons/magic/unholy/silhouette-robe-evil-glow.webp",
"range": "" "range": "self"
} }
}, },
"originItemType": null, "originItemType": null,
@ -712,12 +708,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754076395683, "createdTime": 1754076395683,
"modifiedTime": 1754142376642, "modifiedTime": 1755264866325,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!0NxCSugvKQ4W8OYZ.x6FbcrfOscb3er6P" "_key": "!actors.items!0NxCSugvKQ4W8OYZ.x6FbcrfOscb3er6P"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Cult Fang", "name": "Cult Fang",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -103,8 +103,9 @@
} }
] ]
}, },
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784239, "createdTime": 1753922784239,
"modifiedTime": 1754236375454, "modifiedTime": 1755264898243,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "tyBOpLfigAhI9bU3", "_id": "tyBOpLfigAhI9bU3",
"sort": 3400000, "sort": 3400000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Cult Initiate", "name": "Cult Initiate",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -96,7 +96,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -104,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784240, "createdTime": 1753922784240,
"modifiedTime": 1754236375538, "modifiedTime": 1755264925295,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "zx99sOGTXicP4SSD", "_id": "zx99sOGTXicP4SSD",
"sort": 3600000, "sort": 3600000,
@ -125,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Deeproot Defender", "name": "Deeproot Defender",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -109,7 +109,8 @@
] ]
}, },
"img": "icons/magic/nature/root-vines-grow-brown.webp", "img": "icons/magic/nature/root-vines-grow-brown.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784246, "createdTime": 1753922784246,
"modifiedTime": 1754046151094, "modifiedTime": 1755259462506,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "9x2xY9zwc3xzbXo5", "_id": "9x2xY9zwc3xzbXo5",
"sort": 1800000, "sort": 1800000,
@ -138,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Demon of Avarice", "name": "Demon of Avarice",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -109,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784247, "createdTime": 1753922784247,
"modifiedTime": 1754236375381, "modifiedTime": 1755265775161,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "pnyjIGxxvurcWmTv", "_id": "pnyjIGxxvurcWmTv",
"sort": 3400000, "sort": 3400000,
@ -138,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Demon of Despair", "name": "Demon of Despair",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -109,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "far",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784248, "createdTime": 1753922784248,
"modifiedTime": 1754236375236, "modifiedTime": 1755266281854,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "kE4dfhqmIQpNd44e", "_id": "kE4dfhqmIQpNd44e",
"sort": 3400000, "sort": 3400000,
@ -138,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Demon of Hubris", "name": "Demon of Hubris",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -110,7 +110,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784249, "createdTime": 1753922784249,
"modifiedTime": 1754236373869, "modifiedTime": 1755259462532,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "2VN3BftageoTTIzu", "_id": "2VN3BftageoTTIzu",
"sort": 3400000, "sort": 3400000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Demon of Jealousy", "name": "Demon of Jealousy",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -110,7 +110,8 @@
] ]
}, },
"img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp", "img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784249, "createdTime": 1753922784249,
"modifiedTime": 1754236374726, "modifiedTime": 1755259462726,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "SxSOkM4bcVOFyjbo", "_id": "SxSOkM4bcVOFyjbo",
"sort": 3400000, "sort": 3400000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Demon of Wrath", "name": "Demon of Wrath",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -110,7 +110,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784252, "createdTime": 1753922784252,
"modifiedTime": 1754236373976, "modifiedTime": 1755259462568,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "5lphJAgzoqZI3VoG", "_id": "5lphJAgzoqZI3VoG",
"sort": 3400000, "sort": 3400000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Demonic Hound Pack", "name": "Demonic Hound Pack",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -109,8 +109,9 @@
"bonus": 0, "bonus": 0,
"type": "attack" "type": "attack"
}, },
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784253, "createdTime": 1753922784253,
"modifiedTime": 1754236374571, "modifiedTime": 1755264935543,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "NoRZ1PqB8N5wcIw0", "_id": "NoRZ1PqB8N5wcIw0",
"sort": 1800000, "sort": 1800000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Dire Bat", "name": "Dire Bat",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -108,7 +108,9 @@
] ]
}, },
"img": "icons/creatures/claws/claw-hooked-curved.webp", "img": "icons/creatures/claws/claw-hooked-curved.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784253, "createdTime": 1753922784253,
"modifiedTime": 1754236375442, "modifiedTime": 1755266383523,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "tBWHW00epmMnkawe", "_id": "tBWHW00epmMnkawe",
"sort": 3400000, "sort": 3400000,
@ -137,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -280,12 +282,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1754126247394, "createdTime": 1754126247394,
"modifiedTime": 1754126268904, "modifiedTime": 1755266380104,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items.effects!tBWHW00epmMnkawe.gx22MpD8fWoi8klZ.qZfNiqw1iAIxeuYg" "_key": "!actors.items.effects!tBWHW00epmMnkawe.gx22MpD8fWoi8klZ.qZfNiqw1iAIxeuYg"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Dire Wolf", "name": "Dire Wolf",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,7 +40,8 @@
"experiences": { "experiences": {
"JB2mFGRwgG2NIob8": { "JB2mFGRwgG2NIob8": {
"name": "Keen Senses", "name": "Keen Senses",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
] ]
}, },
"img": "icons/creatures/claws/claw-straight-brown.webp", "img": "icons/creatures/claws/claw-straight-brown.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784257, "createdTime": 1753922784257,
"modifiedTime": 1754046151583, "modifiedTime": 1755259591554,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "wNzeuQLfLUMvgHlQ", "_id": "wNzeuQLfLUMvgHlQ",
"sort": 5100000, "sort": 5100000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Dryad", "name": "Dryad",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -110,7 +110,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784258, "createdTime": 1753922784258,
"modifiedTime": 1754236375484, "modifiedTime": 1755259462937,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "wR7cFKrHvRzbzhBT", "_id": "wR7cFKrHvRzbzhBT",
"sort": 3400000, "sort": 3400000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -537,7 +538,7 @@
}, },
"name": "Spend Fear", "name": "Spend Fear",
"img": "icons/magic/unholy/orb-hands-pink.webp", "img": "icons/magic/unholy/orb-hands-pink.webp",
"range": "" "range": "self"
} }
}, },
"originItemType": null, "originItemType": null,
@ -557,12 +558,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754127256705, "createdTime": 1754127256705,
"modifiedTime": 1754127325813, "modifiedTime": 1755266428753,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!wR7cFKrHvRzbzhBT.z4JbqiHuxrWy6Cpu" "_key": "!actors.items!wR7cFKrHvRzbzhBT.z4JbqiHuxrWy6Cpu"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Electric Eels", "name": "Electric Eels",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -103,8 +103,9 @@
"bonus": 0, "bonus": 0,
"type": "attack" "type": "attack"
}, },
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784258, "createdTime": 1753922784258,
"modifiedTime": 1754236374738, "modifiedTime": 1755264962798,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "TLzY1nDw0Bu9Ud40", "_id": "TLzY1nDw0Bu9Ud40",
"sort": 1900000, "sort": 1900000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Elemental Spark", "name": "Elemental Spark",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -97,7 +97,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -105,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784259, "createdTime": 1753922784259,
"modifiedTime": 1754236374651, "modifiedTime": 1755259462705,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "P7h54ZePFPHpYwvB", "_id": "P7h54ZePFPHpYwvB",
"sort": 3400000, "sort": 3400000,
@ -126,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Elite Soldier", "name": "Elite Soldier",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -89,7 +89,7 @@
"systemPath": "actions", "systemPath": "actions",
"type": "attack", "type": "attack",
"description": "", "description": "",
"chatDisplay": true, "chatDisplay": false,
"actionType": "action", "actionType": "action",
"cost": [], "cost": [],
"uses": { "uses": {
@ -145,12 +145,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1754090776362, "createdTime": 1754090776362,
"modifiedTime": 1754236375037, "modifiedTime": 1755259462811,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"ownership": { "ownership": {
"default": 0, "default": 0,
@ -165,7 +165,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Failed Experiment", "name": "Failed Experiment",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -109,8 +109,9 @@
] ]
}, },
"img": "icons/creatures/claws/claw-hooked-barbed.webp", "img": "icons/creatures/claws/claw-hooked-barbed.webp",
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784262, "createdTime": 1753922784262,
"modifiedTime": 1754236374339, "modifiedTime": 1755265009751,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "ChwwVqowFw8hJQwT", "_id": "ChwwVqowFw8hJQwT",
"sort": 1500000, "sort": 1500000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Fallen Shock Troop", "name": "Fallen Shock Troop",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -97,7 +97,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -105,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784264, "createdTime": 1753922784264,
"modifiedTime": 1754236374634, "modifiedTime": 1755259462703,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "OsLG2BjaEdTZUJU9", "_id": "OsLG2BjaEdTZUJU9",
"sort": 900000, "sort": 900000,
@ -126,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Fallen Sorcerer", "name": "Fallen Sorcerer",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -110,7 +110,8 @@
] ]
}, },
"img": "icons/weapons/staves/staff-animal-skull-bull.webp", "img": "icons/weapons/staves/staff-animal-skull-bull.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784265, "createdTime": 1753922784265,
"modifiedTime": 1754236374668, "modifiedTime": 1755259462708,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "PELRry1vqjBzSAlr", "_id": "PELRry1vqjBzSAlr",
"sort": 1000000, "sort": 1000000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -3,7 +3,7 @@
"name": "Fallen Warlord: Realm Breaker", "name": "Fallen Warlord: Realm Breaker",
"type": "adversary", "type": "adversary",
"_id": "hxZ0sgoFJubh5aj6", "_id": "hxZ0sgoFJubh5aj6",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"system": { "system": {
"description": "<p><em>A Fallen God, wreathed in rage and resentment, bearing millennia of experience in breaking heroes spirits.</em></p>", "description": "<p><em>A Fallen God, wreathed in rage and resentment, bearing millennia of experience in breaking heroes spirits.</em></p>",
"resistance": { "resistance": {
@ -164,7 +164,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -740,12 +740,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753929378070, "createdTime": 1753929378070,
"modifiedTime": 1754219468339, "modifiedTime": 1755259462847,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors!hxZ0sgoFJubh5aj6" "_key": "!actors!hxZ0sgoFJubh5aj6"
} }

View file

@ -3,7 +3,7 @@
"name": "Fallen Warlord: Undefeated Champion", "name": "Fallen Warlord: Undefeated Champion",
"type": "adversary", "type": "adversary",
"_id": "RXkZTwBRi4dJ3JE5", "_id": "RXkZTwBRi4dJ3JE5",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"system": { "system": {
"description": "<p><em>That which only the most feared have a chance to fear.</em></p>", "description": "<p><em>That which only the most feared have a chance to fear.</em></p>",
"resistance": { "resistance": {
@ -153,7 +153,8 @@
"bonus": 0, "bonus": 0,
"dice": [] "dice": []
} }
} },
"chatDisplay": false
}, },
"motivesAndTactics": "Dispatch merciless death, punish the defi ant, secure victory at any cost" "motivesAndTactics": "Dispatch merciless death, punish the defi ant, secure victory at any cost"
}, },
@ -164,7 +165,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -797,12 +798,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753929476879, "createdTime": 1753929476879,
"modifiedTime": 1754219468339, "modifiedTime": 1755259462720,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors!RXkZTwBRi4dJ3JE5" "_key": "!actors!RXkZTwBRi4dJ3JE5"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Giant Beastmaster", "name": "Giant Beastmaster",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -110,7 +110,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784268, "createdTime": 1753922784268,
"modifiedTime": 1754236374099, "modifiedTime": 1755259462604,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "8VZIgU12cB3cvlyH", "_id": "8VZIgU12cB3cvlyH",
"sort": 800000, "sort": 800000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -423,7 +424,31 @@
"system": { "system": {
"description": "<p>Twice per scene, summon a Bear, Dire Wolf, or similar Tier 1 animal adversary under the Beastmasters control. The adversary appears at Close range and is immediately spotlighted.</p>", "description": "<p>Twice per scene, summon a Bear, Dire Wolf, or similar Tier 1 animal adversary under the Beastmasters control. The adversary appears at Close range and is immediately spotlighted.</p>",
"resource": null, "resource": null,
"actions": {}, "actions": {
"eSRUMqpQDPRG9leg": {
"type": "effect",
"_id": "eSRUMqpQDPRG9leg",
"systemPath": "actions",
"description": "<p>Twice per scene, summon a @UUID[Compendium.daggerheart.adversaries.Actor.71qKDLKO3CsrNkdy]{Bear}, @UUID[Compendium.daggerheart.adversaries.Actor.wNzeuQLfLUMvgHlQ]{Dire Wolf} or similar Tier 1 animal adversary under the Beastmasters control. The adversary appears at Close range and is immediately spotlighted.</p>",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": "2",
"recovery": "scene",
"consumeOnSuccess": false
},
"effects": [],
"target": {
"type": "any",
"amount": null
},
"name": "Summon",
"img": "icons/creatures/mammals/ox-bull-horned-glowing-orange.webp",
"range": "close"
}
},
"originItemType": null, "originItemType": null,
"originId": null "originId": null
}, },
@ -441,12 +466,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754078527859, "createdTime": 1754078527859,
"modifiedTime": 1754078561245, "modifiedTime": 1755265167372,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!8VZIgU12cB3cvlyH.w1oHm0NoEavQgUzl" "_key": "!actors.items!8VZIgU12cB3cvlyH.w1oHm0NoEavQgUzl"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Giant Brawler", "name": "Giant Brawler",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -110,7 +110,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784268, "createdTime": 1753922784268,
"modifiedTime": 1754236374935, "modifiedTime": 1755259462794,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "YnObCleGjPT7yqEc", "_id": "YnObCleGjPT7yqEc",
"sort": 2300000, "sort": 2300000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,10 +1,10 @@
{ {
"name": "Giant Eagle", "name": "Giant Eagle",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
"difficulty": 20, "difficulty": 14,
"damageThresholds": { "damageThresholds": {
"major": 8, "major": 8,
"severe": 19 "severe": 19
@ -89,7 +89,7 @@
"systemPath": "actions", "systemPath": "actions",
"type": "attack", "type": "attack",
"description": "", "description": "",
"chatDisplay": true, "chatDisplay": false,
"actionType": "action", "actionType": "action",
"cost": [], "cost": [],
"uses": { "uses": {
@ -145,12 +145,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754090770908, "createdTime": 1754090770908,
"modifiedTime": 1754236374596, "modifiedTime": 1755265221515,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"ownership": { "ownership": {
"default": 0, "default": 0,
@ -165,7 +165,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -308,10 +308,11 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"lastModifiedBy": null "lastModifiedBy": "VZIeX2YDvX338Zvr",
"modifiedTime": 1755265232810
}, },
"_key": "!actors.items.effects!OMQ0v6PE8s1mSU0K.wdNrstuoh4MFShYG.odAyKY0BSAkcO3Dd" "_key": "!actors.items.effects!OMQ0v6PE8s1mSU0K.wdNrstuoh4MFShYG.odAyKY0BSAkcO3Dd"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Giant Mosquitoes", "name": "Giant Mosquitoes",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -39,7 +39,8 @@
"experiences": { "experiences": {
"4SUFXKZh33mFvNt9": { "4SUFXKZh33mFvNt9": {
"name": "Camouflage", "name": "Camouflage",
"value": 2 "value": 2,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,8 +109,9 @@
"bonus": -2, "bonus": -2,
"type": "attack" "type": "attack"
}, },
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784269, "createdTime": 1753922784269,
"modifiedTime": 1754046262389, "modifiedTime": 1755259619874,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "IIWV4ysJPFPnTP7W", "_id": "IIWV4ysJPFPnTP7W",
"sort": 2800000, "sort": 2800000,
@ -138,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Giant Rat", "name": "Giant Rat",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -23,7 +23,8 @@
"experiences": { "experiences": {
"G0iclPpoGwevQcTC": { "G0iclPpoGwevQcTC": {
"name": "Keen Senses", "name": "Keen Senses",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -101,7 +102,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -109,12 +112,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784270, "createdTime": 1753922784270,
"modifiedTime": 1754236373924, "modifiedTime": 1755259636506,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "4PfLnaCrOcMdb4dK", "_id": "4PfLnaCrOcMdb4dK",
"sort": 800000, "sort": 800000,
@ -130,7 +133,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Giant Recruit", "name": "Giant Recruit",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -97,7 +97,8 @@
"bonus": 1, "bonus": 1,
"type": "attack" "type": "attack"
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -105,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784271, "createdTime": 1753922784271,
"modifiedTime": 1754236373987, "modifiedTime": 1755259462570,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "5s8wSvpyC5rxY5aD", "_id": "5s8wSvpyC5rxY5aD",
"sort": 400000, "sort": 400000,
@ -126,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Giant Scorpion", "name": "Giant Scorpion",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,7 +40,8 @@
"experiences": { "experiences": {
"SZtO9UTincKiOlC4": { "SZtO9UTincKiOlC4": {
"name": "Camouflage", "name": "Camouflage",
"value": 2 "value": 2,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784272, "createdTime": 1753922784272,
"modifiedTime": 1754236375100, "modifiedTime": 1755259666128,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "fmfntuJ8mHRCAktP", "_id": "fmfntuJ8mHRCAktP",
"sort": 4200000, "sort": 4200000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Glass Snake", "name": "Glass Snake",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784273, "createdTime": 1753922784273,
"modifiedTime": 1754236374083, "modifiedTime": 1755259462600,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "8KWVLWXFhlY2kYx0", "_id": "8KWVLWXFhlY2kYx0",
"sort": 1400000, "sort": 1400000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Gorgon", "name": "Gorgon",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -110,7 +110,8 @@
] ]
}, },
"img": "icons/weapons/bows/shortbow-recurve-yellow.webp", "img": "icons/weapons/bows/shortbow-recurve-yellow.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784274, "createdTime": 1753922784274,
"modifiedTime": 1754236374109, "modifiedTime": 1755259462608,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "8mJYMpbLTb8qIOrr", "_id": "8mJYMpbLTb8qIOrr",
"sort": 1000000, "sort": 1000000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Greater Earth Elemental", "name": "Greater Earth Elemental",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784275, "createdTime": 1753922784275,
"modifiedTime": 1754236375088, "modifiedTime": 1755259462829,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "dsfB3YhoL5SudvS2", "_id": "dsfB3YhoL5SudvS2",
"sort": 3400000, "sort": 3400000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Greater Water Elemental", "name": "Greater Water Elemental",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784278, "createdTime": 1753922784278,
"modifiedTime": 1754236375512, "modifiedTime": 1755259462945,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "xIICT6tEdnA7dKDV", "_id": "xIICT6tEdnA7dKDV",
"sort": 3400000, "sort": 3400000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Green Ooze", "name": "Green Ooze",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,7 +40,8 @@
"experiences": { "experiences": {
"Ti0QFAMro3FpetoT": { "Ti0QFAMro3FpetoT": {
"name": "Camouflage", "name": "Camouflage",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
] ]
}, },
"img": "icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp", "img": "icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784278, "createdTime": 1753922784278,
"modifiedTime": 1754236374705, "modifiedTime": 1755259726565,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "SHXedd9zZPVfUgUa", "_id": "SHXedd9zZPVfUgUa",
"sort": 3500000, "sort": 3500000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Hallowed Archer", "name": "Hallowed Archer",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784279, "createdTime": 1753922784279,
"modifiedTime": 1754236375250, "modifiedTime": 1755259462863,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "kabueAo6BALApWqp", "_id": "kabueAo6BALApWqp",
"sort": 1500000, "sort": 1500000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Hallowed Soldier", "name": "Hallowed Soldier",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -96,7 +96,9 @@
] ]
}, },
"img": "icons/skills/melee/sword-shield-stylized-white.webp", "img": "icons/skills/melee/sword-shield-stylized-white.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -104,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784279, "createdTime": 1753922784279,
"modifiedTime": 1754236374772, "modifiedTime": 1755266855456,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "VENwg7xEFcYObjmT", "_id": "VENwg7xEFcYObjmT",
"sort": 1100000, "sort": 1100000,
@ -125,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Harrier", "name": "Harrier",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -109,7 +109,8 @@
] ]
}, },
"img": "icons/weapons/polearms/spear-hooked-rounded.webp", "img": "icons/weapons/polearms/spear-hooked-rounded.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784281, "createdTime": 1753922784281,
"modifiedTime": 1754236375463, "modifiedTime": 1755259462930,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "uRtghKE9mHlII4rs", "_id": "uRtghKE9mHlII4rs",
"sort": 5000000, "sort": 5000000,
@ -138,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Head Guard", "name": "Head Guard",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,11 +40,13 @@
"experiences": { "experiences": {
"3B8vav5pEdBrxWXw": { "3B8vav5pEdBrxWXw": {
"name": "Commander", "name": "Commander",
"value": 2 "value": 2,
"description": ""
}, },
"DxLwVt9XFIUUhCAo": { "DxLwVt9XFIUUhCAo": {
"name": "Local Knowledge", "name": "Local Knowledge",
"value": 2 "value": 2,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -112,7 +114,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -120,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784282, "createdTime": 1753922784282,
"modifiedTime": 1754236375275, "modifiedTime": 1755259874457,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "mK3A5FTx6k8iPU3F", "_id": "mK3A5FTx6k8iPU3F",
"sort": 4600000, "sort": 4600000,
@ -141,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Head Vampire", "name": "Head Vampire",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -109,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784283, "createdTime": 1753922784283,
"modifiedTime": 1754236375168, "modifiedTime": 1755266472641,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "i2UNbRvgyoSs07M6", "_id": "i2UNbRvgyoSs07M6",
"sort": 3400000, "sort": 3400000,
@ -138,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -443,7 +445,7 @@
"includeBase": false "includeBase": false
}, },
"target": { "target": {
"type": "any", "type": "self",
"amount": null "amount": null
}, },
"effects": [], "effects": [],
@ -464,7 +466,7 @@
}, },
"name": "Clear HP", "name": "Clear HP",
"img": "icons/creatures/abilities/fang-tooth-blood-red.webp", "img": "icons/creatures/abilities/fang-tooth-blood-red.webp",
"range": "melee" "range": "self"
} }
}, },
"originItemType": null, "originItemType": null,
@ -484,12 +486,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754128497673, "createdTime": 1754128497673,
"modifiedTime": 1754128552831, "modifiedTime": 1755266523384,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!i2UNbRvgyoSs07M6.Oj6qkLG1N6uqQHcx" "_key": "!actors.items!i2UNbRvgyoSs07M6.Oj6qkLG1N6uqQHcx"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "High Seraph", "name": "High Seraph",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -110,7 +110,8 @@
] ]
}, },
"img": "icons/skills/melee/strike-blade-hooked-orange-blue.webp", "img": "icons/skills/melee/strike-blade-hooked-orange-blue.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784283, "createdTime": 1753922784283,
"modifiedTime": 1754236375397, "modifiedTime": 1755259462909,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "r1mbfSSwKWdcFdAU", "_id": "r1mbfSSwKWdcFdAU",
"sort": 1800000, "sort": 1800000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Huge Green Ooze", "name": "Huge Green Ooze",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -109,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784284, "createdTime": 1753922784284,
"modifiedTime": 1754236374016, "modifiedTime": 1755266545039,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "6hbqmxDXFOzZJDk4", "_id": "6hbqmxDXFOzZJDk4",
"sort": 3400000, "sort": 3400000,
@ -138,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Hydra", "name": "Hydra",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784285, "createdTime": 1753922784285,
"modifiedTime": 1754236374476, "modifiedTime": 1755259462679,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "MI126iMOOobQ1Obn", "_id": "MI126iMOOobQ1Obn",
"sort": 3400000, "sort": 3400000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -372,7 +373,7 @@
}, },
"name": "Spend Fear", "name": "Spend Fear",
"img": "icons/magic/life/cross-beam-green.webp", "img": "icons/magic/life/cross-beam-green.webp",
"range": "" "range": "self"
} }
}, },
"originItemType": null, "originItemType": null,
@ -392,12 +393,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754129581504, "createdTime": 1754129581504,
"modifiedTime": 1754129633128, "modifiedTime": 1755266587320,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!MI126iMOOobQ1Obn.b2KflqWoOxHMQf97" "_key": "!actors.items!MI126iMOOobQ1Obn.b2KflqWoOxHMQf97"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "Jagged Knife Bandit", "name": "Jagged Knife Bandit",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -39,7 +39,8 @@
"experiences": { "experiences": {
"ASrtgt4pTDvoXehG": { "ASrtgt4pTDvoXehG": {
"name": "Thief", "name": "Thief",
"value": 2 "value": 2,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
] ]
}, },
"img": "icons/weapons/daggers/dagger-twin-green.webp", "img": "icons/weapons/daggers/dagger-twin-green.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784290, "createdTime": 1753922784290,
"modifiedTime": 1754236373947, "modifiedTime": 1755259904640,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "5Lh1T0zaT8Pkr2U2", "_id": "5Lh1T0zaT8Pkr2U2",
"sort": 900000, "sort": 900000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Jagged Knife Hexer", "name": "Jagged Knife Hexer",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -109,7 +109,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784291, "createdTime": 1753922784291,
"modifiedTime": 1754236374521, "modifiedTime": 1755259462688,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "MbBPIOxaxXYNApXz", "_id": "MbBPIOxaxXYNApXz",
"sort": 3000000, "sort": 3000000,
@ -138,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Jagged Knife Kneebreaker", "name": "Jagged Knife Kneebreaker",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,11 +40,13 @@
"experiences": { "experiences": {
"VMCCn7A9eLU1PMz7": { "VMCCn7A9eLU1PMz7": {
"name": "Thief", "name": "Thief",
"value": 2 "value": 2,
"description": ""
}, },
"HXPw1dnHO0ckLOBS": { "HXPw1dnHO0ckLOBS": {
"name": "Unveiled Threats", "name": "Unveiled Threats",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -112,7 +114,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -120,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784292, "createdTime": 1753922784292,
"modifiedTime": 1754236374304, "modifiedTime": 1755259941370,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "CBKixLH3yhivZZuL", "_id": "CBKixLH3yhivZZuL",
"sort": 2300000, "sort": 2300000,
@ -141,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Jagged Knife Lackey", "name": "Jagged Knife Lackey",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -23,7 +23,8 @@
"experiences": { "experiences": {
"tNLKSFvNBTfjwujs": { "tNLKSFvNBTfjwujs": {
"name": "Thief", "name": "Thief",
"value": 2 "value": 2,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -93,7 +94,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
}, },
"resources": { "resources": {
"hitPoints": { "hitPoints": {
@ -109,12 +112,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784293, "createdTime": 1753922784293,
"modifiedTime": 1754236374283, "modifiedTime": 1755259961931,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "C0OMQqV7pN6t7ouR", "_id": "C0OMQqV7pN6t7ouR",
"sort": 2100000, "sort": 2100000,
@ -130,7 +133,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Jagged Knife Lieutenant", "name": "Jagged Knife Lieutenant",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -109,7 +109,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784294, "createdTime": 1753922784294,
"modifiedTime": 1754236375013, "modifiedTime": 1755259462803,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "aTljstqteGoLpCBq", "_id": "aTljstqteGoLpCBq",
"sort": 4000000, "sort": 4000000,
@ -138,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Jagged Knife Shadow", "name": "Jagged Knife Shadow",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,7 +40,8 @@
"experiences": { "experiences": {
"ZUMG6p8iB73HY73o": { "ZUMG6p8iB73HY73o": {
"name": "Intrusion", "name": "Intrusion",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784295, "createdTime": 1753922784295,
"modifiedTime": 1754236374879, "modifiedTime": 1755260040062,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "XF4tYTq9nPJAy2ox", "_id": "XF4tYTq9nPJAy2ox",
"sort": 3700000, "sort": 3700000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -341,7 +344,36 @@
"system": { "system": {
"description": "<p>Become <em>Hidden</em> until after the Shadows next attack. Attacks made while Hidden from this feature have advantage.</p>", "description": "<p>Become <em>Hidden</em> until after the Shadows next attack. Attacks made while Hidden from this feature have advantage.</p>",
"resource": null, "resource": null,
"actions": {}, "actions": {
"s0X44RPg5hA8lVax": {
"type": "effect",
"_id": "s0X44RPg5hA8lVax",
"systemPath": "actions",
"description": "<p>Become <em>Hidden</em> until after the Shadows next attack. Attacks made while Hidden from this feature have advantage.</p>",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": "",
"recovery": null,
"consumeOnSuccess": false
},
"effects": [
{
"_id": "w5VTwlHmUjl8XCQ4",
"onSave": false
}
],
"target": {
"type": "self",
"amount": null
},
"name": "Use",
"img": "icons/magic/perception/silhouette-stealth-shadow.webp",
"range": "self"
}
},
"originItemType": null, "originItemType": null,
"subType": null, "subType": null,
"originId": null "originId": null
@ -349,9 +381,11 @@
"effects": [ "effects": [
{ {
"name": "Cloaked", "name": "Cloaked",
"type": "base",
"_id": "9fZkdsHfyTskJk7r",
"img": "icons/magic/perception/silhouette-stealth-shadow.webp", "img": "icons/magic/perception/silhouette-stealth-shadow.webp",
"origin": "Compendium.daggerheart.adversaries.Actor.XF4tYTq9nPJAy2ox.Item.ILIogeKbYioPutRw",
"transfer": false,
"_id": "w5VTwlHmUjl8XCQ4",
"type": "base",
"system": { "system": {
"rangeDependence": { "rangeDependence": {
"enabled": false, "enabled": false,
@ -360,8 +394,15 @@
"range": "melee" "range": "melee"
} }
}, },
"changes": [], "changes": [
"disabled": true, {
"key": "system.advantageSources",
"mode": 2,
"value": "Attacks made while Hidden",
"priority": null
}
],
"disabled": false,
"duration": { "duration": {
"startTime": null, "startTime": null,
"combat": null, "combat": null,
@ -372,9 +413,7 @@
"startTurn": null "startTurn": null
}, },
"description": "<p>Become <em>Hidden</em> until after the Shadows next attack. Attacks made while Hidden from this feature have advantage.</p>", "description": "<p>Become <em>Hidden</em> until after the Shadows next attack. Attacks made while Hidden from this feature have advantage.</p>",
"origin": null,
"tint": "#ffffff", "tint": "#ffffff",
"transfer": true,
"statuses": [ "statuses": [
"hidden" "hidden"
], ],
@ -384,14 +423,14 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754049344935, "createdTime": 1755263044332,
"modifiedTime": 1754049371699, "modifiedTime": 1755263071114,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items.effects!XF4tYTq9nPJAy2ox.ILIogeKbYioPutRw.9fZkdsHfyTskJk7r" "_key": "!actors.items.effects!XF4tYTq9nPJAy2ox.ILIogeKbYioPutRw.w5VTwlHmUjl8XCQ4"
} }
], ],
"folder": null, "folder": null,
@ -405,12 +444,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754049306353, "createdTime": 1754049306353,
"modifiedTime": 1754049333765, "modifiedTime": 1755263044345,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!XF4tYTq9nPJAy2ox.ILIogeKbYioPutRw" "_key": "!actors.items!XF4tYTq9nPJAy2ox.ILIogeKbYioPutRw"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Jagged Knife Sniper", "name": "Jagged Knife Sniper",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -109,7 +109,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -117,12 +118,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784296, "createdTime": 1753922784296,
"modifiedTime": 1754236373855, "modifiedTime": 1755259462527,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "1zuyof1XuIfi3aMG", "_id": "1zuyof1XuIfi3aMG",
"sort": 300000, "sort": 300000,
@ -138,7 +139,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Juvenile Flickerfly", "name": "Juvenile Flickerfly",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784297, "createdTime": 1753922784297,
"modifiedTime": 1754236374492, "modifiedTime": 1755259462684,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "MYXmTx2FHcIjdfYZ", "_id": "MYXmTx2FHcIjdfYZ",
"sort": 1700000, "sort": 1700000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,10 +1,10 @@
{ {
"name": "Knight of the Realm", "name": "Knight of the Realm",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
"difficulty": 17, "difficulty": 15,
"damageThresholds": { "damageThresholds": {
"major": 13, "major": 13,
"severe": 26 "severe": 26
@ -119,8 +119,9 @@
} }
] ]
}, },
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -128,12 +129,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784302, "createdTime": 1753922784302,
"modifiedTime": 1754236374063, "modifiedTime": 1755265352331,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "7ai2opemrclQe3VF", "_id": "7ai2opemrclQe3VF",
"sort": 700000, "sort": 700000,
@ -149,7 +150,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -292,12 +293,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1754080622148, "createdTime": 1754080622148,
"modifiedTime": 1754080649583, "modifiedTime": 1755265361100,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items.effects!7ai2opemrclQe3VF.5ag5tOemPJToOoUq.w8wLcSsTiTU3mS7e" "_key": "!actors.items.effects!7ai2opemrclQe3VF.5ag5tOemPJToOoUq.w8wLcSsTiTU3mS7e"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "Kraken", "name": "Kraken",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -110,7 +110,8 @@
] ]
}, },
"img": "icons/creatures/tentacles/tentacles-octopus-black-pink.webp", "img": "icons/creatures/tentacles/tentacles-octopus-black-pink.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784303, "createdTime": 1753922784303,
"modifiedTime": 1754236373932, "modifiedTime": 1755259462553,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "4nqv3ZwJGjnmic8j", "_id": "4nqv3ZwJGjnmic8j",
"sort": 600000, "sort": 600000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Masked Thief", "name": "Masked Thief",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -109,8 +109,9 @@
} }
] ]
}, },
"range": "", "range": "melee",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784304, "createdTime": 1753922784304,
"modifiedTime": 1754236375343, "modifiedTime": 1755265377045,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "niBpVU7yeo5ccskE", "_id": "niBpVU7yeo5ccskE",
"sort": 3000000, "sort": 3000000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Master Assassin", "name": "Master Assassin",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -115,7 +115,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -123,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784305, "createdTime": 1753922784305,
"modifiedTime": 1754236375063, "modifiedTime": 1755259462821,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "dNta0cUzr96xcFhf", "_id": "dNta0cUzr96xcFhf",
"sort": 2500000, "sort": 2500000,
@ -144,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Merchant", "name": "Merchant",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,7 +40,8 @@
"experiences": { "experiences": {
"5cbm0DMiWxo6300c": { "5cbm0DMiWxo6300c": {
"name": "Shrewd Negotiator", "name": "Shrewd Negotiator",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
] ]
}, },
"img": "icons/weapons/clubs/club-baton-blue.webp", "img": "icons/weapons/clubs/club-baton-blue.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784305, "createdTime": 1753922784305,
"modifiedTime": 1754236374230, "modifiedTime": 1755263103972,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "Al3w2CgjfdT3p9ma", "_id": "Al3w2CgjfdT3p9ma",
"sort": 1900000, "sort": 1900000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Merchant Baron", "name": "Merchant Baron",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -114,7 +114,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -122,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784306, "createdTime": 1753922784306,
"modifiedTime": 1754236374821, "modifiedTime": 1755265400782,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "Vy02IhGhkJLuezu4", "_id": "Vy02IhGhkJLuezu4",
"sort": 2100000, "sort": 2100000,
@ -143,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Minor Chaos Elemental", "name": "Minor Chaos Elemental",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -104,7 +104,8 @@
] ]
}, },
"range": "close", "range": "close",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784307, "createdTime": 1753922784307,
"modifiedTime": 1754236375428, "modifiedTime": 1755259462919,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "sRn4bqerfARvhgSV", "_id": "sRn4bqerfARvhgSV",
"sort": 4800000, "sort": 4800000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Minor Demon", "name": "Minor Demon",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -103,7 +103,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -111,12 +112,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784308, "createdTime": 1753922784308,
"modifiedTime": 1754236373911, "modifiedTime": 1755259462544,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "3tqCjDwJAQ7JKqMb", "_id": "3tqCjDwJAQ7JKqMb",
"sort": 700000, "sort": 700000,
@ -132,7 +133,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Minor Fire Elemental", "name": "Minor Fire Elemental",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784308, "createdTime": 1753922784308,
"modifiedTime": 1754236374357, "modifiedTime": 1755259462650,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "DscWkNVoHak6P4hh", "_id": "DscWkNVoHak6P4hh",
"sort": 2400000, "sort": 2400000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Minor Treant", "name": "Minor Treant",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -96,7 +96,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -104,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784309, "createdTime": 1753922784309,
"modifiedTime": 1754236374420, "modifiedTime": 1755263168654,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "G62k4oSkhkoXEs2D", "_id": "G62k4oSkhkoXEs2D",
"sort": 2600000, "sort": 2600000,
@ -125,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Minotaur Wrecker", "name": "Minotaur Wrecker",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -104,7 +104,8 @@
] ]
}, },
"img": "icons/weapons/axes/axe-double.webp", "img": "icons/weapons/axes/axe-double.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784310, "createdTime": 1753922784310,
"modifiedTime": 1754236375407, "modifiedTime": 1755259462912,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "rM9qCIYeWg9I0B4l", "_id": "rM9qCIYeWg9I0B4l",
"sort": 3200000, "sort": 3200000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Monarch", "name": "Monarch",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -114,7 +114,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -122,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784312, "createdTime": 1753922784312,
"modifiedTime": 1754236375521, "modifiedTime": 1755266608082,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "yx0vK2yfNVZKWUUi", "_id": "yx0vK2yfNVZKWUUi",
"sort": 3400000, "sort": 3400000,
@ -143,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Mortal Hunter", "name": "Mortal Hunter",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "OgzrmfH1ZbpljX7k", "folder": "OgzrmfH1ZbpljX7k",
"system": { "system": {
@ -110,7 +110,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784313, "createdTime": 1753922784313,
"modifiedTime": 1754236375305, "modifiedTime": 1755259462879,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "mVV7a7KQAORoPMgZ", "_id": "mVV7a7KQAORoPMgZ",
"sort": 2900000, "sort": 2900000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Oak Treant", "name": "Oak Treant",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "wTI7nZkPhKxl7Wwq", "folder": "wTI7nZkPhKxl7Wwq",
"system": { "system": {
@ -84,7 +84,9 @@
"enabled": false "enabled": false
} }
}, },
"type": ["physical"], "type": [
"physical"
],
"applyTo": "hitPoints", "applyTo": "hitPoints",
"resultBased": false, "resultBased": false,
"valueAlt": { "valueAlt": {
@ -101,7 +103,8 @@
] ]
}, },
"img": "icons/skills/melee/blood-slash-foam-red.webp", "img": "icons/skills/melee/blood-slash-foam-red.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -109,12 +112,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.344", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784314, "createdTime": 1753922784314,
"modifiedTime": 1753922784314, "modifiedTime": 1755259462770,
"lastModifiedBy": "WafZqd6qLGpBRGTt" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "XK78QUfY8c8Go8Uv", "_id": "XK78QUfY8c8Go8Uv",
"sort": 3400000, "sort": 3400000,
@ -130,7 +133,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Oracle of Doom", "name": "Oracle of Doom",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -110,7 +110,8 @@
] ]
}, },
"img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp", "img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -118,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784315, "createdTime": 1753922784315,
"modifiedTime": 1754236375025, "modifiedTime": 1755259462807,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "befIqd5IYKg6eUz2", "_id": "befIqd5IYKg6eUz2",
"sort": 1400000, "sort": 1400000,
@ -139,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Outer Realms Abomination", "name": "Outer Realms Abomination",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -104,7 +104,8 @@
] ]
}, },
"img": "icons/creatures/tentacles/tentacle-earth-green.webp", "img": "icons/creatures/tentacles/tentacle-earth-green.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784319, "createdTime": 1753922784319,
"modifiedTime": 1754236374220, "modifiedTime": 1755259462626,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "A0SeeDzwjvqOsyof", "_id": "A0SeeDzwjvqOsyof",
"sort": 700000, "sort": 700000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Outer Realms Corrupter", "name": "Outer Realms Corrupter",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784320, "createdTime": 1753922784320,
"modifiedTime": 1754236375331, "modifiedTime": 1755259462889,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "ms6nuOl3NFkhPj1k", "_id": "ms6nuOl3NFkhPj1k",
"sort": 1600000, "sort": 1600000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Outer Realms Thrall", "name": "Outer Realms Thrall",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -96,7 +96,9 @@
"type": "attack" "type": "attack"
}, },
"img": "icons/creatures/claws/claw-talons-yellow-red.webp", "img": "icons/creatures/claws/claw-talons-yellow-red.webp",
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -104,12 +106,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784321, "createdTime": 1753922784321,
"modifiedTime": 1754236375320, "modifiedTime": 1755266968806,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "moJhHgKqTKPS2WYS", "_id": "moJhHgKqTKPS2WYS",
"sort": 1700000, "sort": 1700000,
@ -125,7 +127,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Patchwork Zombie Hulk", "name": "Patchwork Zombie Hulk",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -113,7 +113,8 @@
] ]
}, },
"img": "icons/commodities/biological/hand-clawed-blue.webp", "img": "icons/commodities/biological/hand-clawed-blue.webp",
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -121,12 +122,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753922784322, "createdTime": 1753922784322,
"modifiedTime": 1754236374380, "modifiedTime": 1755259462653,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "EQTOAOUrkIvS2z88", "_id": "EQTOAOUrkIvS2z88",
"sort": 2500000, "sort": 2500000,
@ -142,7 +143,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,
@ -397,7 +398,7 @@
}, },
"name": "Heal", "name": "Heal",
"img": "icons/magic/death/skull-trio-badge-purple.webp", "img": "icons/magic/death/skull-trio-badge-purple.webp",
"range": "" "range": "self"
} }
}, },
"originItemType": null, "originItemType": null,
@ -416,12 +417,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1754051528475, "createdTime": 1754051528475,
"modifiedTime": 1754144642466, "modifiedTime": 1755263257032,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_key": "!actors.items!EQTOAOUrkIvS2z88.gw1Z2VazlRXYCiCK" "_key": "!actors.items!EQTOAOUrkIvS2z88.gw1Z2VazlRXYCiCK"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "Perfected Zombie", "name": "Perfected Zombie",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "7XHlANCPz18yvl5L", "folder": "7XHlANCPz18yvl5L",
"system": { "system": {
@ -16,7 +16,7 @@
"isReversed": true "isReversed": true
}, },
"stress": { "stress": {
"value": 1, "value": 0,
"max": 4, "max": 4,
"isReversed": true "isReversed": true
} }
@ -104,7 +104,8 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -112,12 +113,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784323, "createdTime": 1753922784323,
"modifiedTime": 1754236374324, "modifiedTime": 1755267137806,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "CP6iRfHdyFWniTHY", "_id": "CP6iRfHdyFWniTHY",
"sort": 800000, "sort": 800000,
@ -133,7 +134,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Petty Noble", "name": "Petty Noble",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -39,7 +39,8 @@
"experiences": { "experiences": {
"cATk1IILqCDA5pnb": { "cATk1IILqCDA5pnb": {
"name": "Aristocrat", "name": "Aristocrat",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -108,7 +109,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -116,12 +119,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784324, "createdTime": 1753922784324,
"modifiedTime": 1754236375504, "modifiedTime": 1755263279700,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "wycLpvebWdUqRhpP", "_id": "wycLpvebWdUqRhpP",
"sort": 5200000, "sort": 5200000,
@ -137,7 +140,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

View file

@ -1,6 +1,6 @@
{ {
"name": "Pirate Captain", "name": "Pirate Captain",
"img": "icons/svg/mystery-man.svg", "img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"type": "adversary", "type": "adversary",
"folder": "sxvlEwi25uAoB2C5", "folder": "sxvlEwi25uAoB2C5",
"system": { "system": {
@ -40,11 +40,13 @@
"experiences": { "experiences": {
"ndSzzasQ0JcMPJ6W": { "ndSzzasQ0JcMPJ6W": {
"name": "Commander", "name": "Commander",
"value": 2 "value": 2,
"description": ""
}, },
"N0jWLtKmD5Cy6CjY": { "N0jWLtKmD5Cy6CjY": {
"name": "Sailor", "name": "Sailor",
"value": 3 "value": 3,
"description": ""
} }
}, },
"bonuses": { "bonuses": {
@ -112,7 +114,9 @@
} }
] ]
}, },
"type": "attack" "type": "attack",
"range": "melee",
"chatDisplay": false
} }
}, },
"flags": {}, "flags": {},
@ -120,12 +124,12 @@
"compendiumSource": null, "compendiumSource": null,
"duplicateSource": null, "duplicateSource": null,
"exportSource": null, "exportSource": null,
"coreVersion": "13.346", "coreVersion": "13.347",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "1.0.4",
"createdTime": 1753922784325, "createdTime": 1753922784325,
"modifiedTime": 1754236374624, "modifiedTime": 1755263303289,
"lastModifiedBy": "MQSznptE5yLT7kj8" "lastModifiedBy": "VZIeX2YDvX338Zvr"
}, },
"_id": "OROJbjsqagVh7ECV", "_id": "OROJbjsqagVh7ECV",
"sort": 3200000, "sort": 3200000,
@ -141,7 +145,7 @@
"width": 1, "width": 1,
"height": 1, "height": 1,
"texture": { "texture": {
"src": "icons/svg/mystery-man.svg", "src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
"anchorX": 0.5, "anchorX": 0.5,
"anchorY": 0.5, "anchorY": 0.5,
"offsetX": 0, "offsetX": 0,

Some files were not shown because too many files have changed in this diff Show more