mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
[Fix] Adversary Compendium Pass (#960)
* Went over all adversaries to fix missing ranges * Fixed translation for itemFeatures Protective * Updated all instances of the 'Paired' WeaponFeature in the compendium * Changed all adversary attacks to be chatDisplay=false
This commit is contained in:
parent
ab76d9e91d
commit
b241b36653
140 changed files with 1490 additions and 1201 deletions
|
|
@ -1434,11 +1434,11 @@
|
|||
},
|
||||
"protective": {
|
||||
"name": "Protective",
|
||||
"description": "Add your character's Tier to your Armor Score",
|
||||
"description": "Add the item's Tier to your Armor Score",
|
||||
"effects": {
|
||||
"protective": {
|
||||
"name": "Protective",
|
||||
"description": "Add your character's Tier to your Armor Score"
|
||||
"description": "Add the item's Tier to your Armor Score"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import { getDocFromElement } from '../../../helpers/utils.mjs';
|
||||
import DHBaseActorSheet from '../api/base-actor.mjs';
|
||||
|
||||
/**@typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction */
|
||||
|
|
@ -53,6 +54,15 @@ export default class AdversarySheet extends DHBaseActorSheet {
|
|||
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.
|
||||
* @param {ApplicationRenderContext} context
|
||||
|
|
@ -121,4 +131,18 @@ export default class AdversarySheet extends DHBaseActorSheet {
|
|||
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Acid Burrower",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
"type": "attack",
|
||||
"description": "",
|
||||
"img": "icons/creatures/claws/claw-curved-jagged-yellow.webp",
|
||||
"chatDisplay": true,
|
||||
"chatDisplay": false,
|
||||
"actionType": "action",
|
||||
"cost": [],
|
||||
"uses": {
|
||||
|
|
@ -150,12 +150,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1754010222829,
|
||||
"modifiedTime": 1754010222919,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462470,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
|
|
@ -170,7 +170,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -708,4 +708,4 @@
|
|||
"_id": "89yAh30vaNQOALlz",
|
||||
"sort": 500000,
|
||||
"_key": "!actors!89yAh30vaNQOALlz"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Adult Flickerfly",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784219,
|
||||
"modifiedTime": 1754236374441,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462665,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "G7jiltRjgvVhZewm",
|
||||
"sort": 3400000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -769,4 +770,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!G7jiltRjgvVhZewm"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Apprentice Assassin",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -103,7 +103,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/daggers/dagger-bone-black.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -111,12 +112,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784220,
|
||||
"modifiedTime": 1754236375474,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462932,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "vNIbYQ4YSzNf0WPE",
|
||||
"sort": 3500000,
|
||||
|
|
@ -132,7 +133,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -320,4 +321,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!vNIbYQ4YSzNf0WPE"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Arch-Necromancer",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -115,7 +115,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/magic/unholy/beam-ringed-impact-purple.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -123,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784221,
|
||||
"modifiedTime": 1754236374832,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462752,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "WPEOIGfclNJxWb87",
|
||||
"sort": 1200000,
|
||||
|
|
@ -144,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -818,4 +819,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!WPEOIGfclNJxWb87"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Archer Guard",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/bows/longbow-recurve-leather-brown.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784222,
|
||||
"modifiedTime": 1754046151270,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462476,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "JRhrrEg5UroURiAD",
|
||||
"sort": 2900000,
|
||||
|
|
@ -138,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -394,4 +395,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!JRhrrEg5UroURiAD"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Archer Squadron",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
"bonus": 0,
|
||||
"type": "attack"
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784223,
|
||||
"modifiedTime": 1754236373813,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462516,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "0ts6CGd93lLqGZI5",
|
||||
"sort": 200000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -515,4 +516,4 @@
|
|||
}
|
||||
],
|
||||
"_key": "!actors!0ts6CGd93lLqGZI5"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Assassin Poisoner",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784224,
|
||||
"modifiedTime": 1754236375140,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462844,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "h5RuhzGL17dW5FBT",
|
||||
"sort": 2700000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -529,4 +530,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!h5RuhzGL17dW5FBT"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Battle Box",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -109,8 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784224,
|
||||
"modifiedTime": 1754236375071,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264708230,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "dgH3fW9FTYLaIDvS",
|
||||
"sort": 2600000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -1146,7 +1147,7 @@
|
|||
},
|
||||
"name": "Mark Stress",
|
||||
"img": "icons/creatures/magical/construct-golem-stone-blue.webp",
|
||||
"range": ""
|
||||
"range": "self"
|
||||
}
|
||||
},
|
||||
"originItemType": null,
|
||||
|
|
@ -1166,12 +1167,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754074647690,
|
||||
"modifiedTime": 1754142206511,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264742627,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!dgH3fW9FTYLaIDvS.ITzpRJr2jWK0Ksmp"
|
||||
},
|
||||
|
|
@ -1285,4 +1286,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!dgH3fW9FTYLaIDvS"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Bear",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,11 +40,13 @@
|
|||
"experiences": {
|
||||
"5ASmWCwf7HMplPDT": {
|
||||
"name": "Ambusher",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
},
|
||||
"rjs6ek5OZP8inYqu": {
|
||||
"name": "Keen Senses",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -112,7 +114,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/claws/claw-straight-brown.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -120,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784226,
|
||||
"modifiedTime": 1754046151030,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462479,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "71qKDLKO3CsrNkdy",
|
||||
"sort": 1200000,
|
||||
|
|
@ -141,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -468,4 +472,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!71qKDLKO3CsrNkdy"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Bladed Guard",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"ptgh1mGd4XGIjaAO": {
|
||||
"name": "Local Knowledge",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784226,
|
||||
"modifiedTime": 1754046151128,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462481,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "B4LZcGuBAHzyVdzy",
|
||||
"sort": 2000000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -442,4 +445,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!B4LZcGuBAHzyVdzy"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Brawny Zombie",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -113,7 +113,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -121,12 +122,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784231,
|
||||
"modifiedTime": 1754046150943,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462487,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "2UeZ0tEe7AzgSJNd",
|
||||
"sort": 400000,
|
||||
|
|
@ -142,7 +143,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -527,4 +528,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!2UeZ0tEe7AzgSJNd"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Cave Ogre",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,8 @@
|
|||
},
|
||||
"name": "Club",
|
||||
"img": "icons/weapons/clubs/club-banded-barbed-black.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784233,
|
||||
"modifiedTime": 1754046151057,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462491,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "8Zkqk1jU09nKL2fy",
|
||||
"sort": 1500000,
|
||||
|
|
@ -138,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -599,4 +600,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!8Zkqk1jU09nKL2fy"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Chaos Skull",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/magic/light/beam-rays-magenta.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784233,
|
||||
"modifiedTime": 1754236375196,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462855,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "jDmHqGvzg5wjgmxE",
|
||||
"sort": 2800000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -562,4 +563,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!jDmHqGvzg5wjgmxE"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Conscript",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -97,7 +97,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -105,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784234,
|
||||
"modifiedTime": 1754236374185,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462618,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "99TqczuQipBmaB8i",
|
||||
"sort": 1200000,
|
||||
|
|
@ -126,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -314,4 +315,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!99TqczuQipBmaB8i"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Construct",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -103,7 +103,9 @@
|
|||
},
|
||||
"name": "Fist Slam",
|
||||
"img": "icons/skills/melee/unarmed-punch-fist-yellow-red.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -111,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784236,
|
||||
"modifiedTime": 1754046151560,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462495,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "uOP5oT9QzXPlnf3p",
|
||||
"sort": 4900000,
|
||||
|
|
@ -132,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -436,12 +438,12 @@
|
|||
},
|
||||
"effects": [],
|
||||
"target": {
|
||||
"type": "any",
|
||||
"type": "self",
|
||||
"amount": null
|
||||
},
|
||||
"name": "Mark Stress",
|
||||
"img": "icons/creatures/magical/construct-golem-stone-blue.webp",
|
||||
"range": ""
|
||||
"range": "self"
|
||||
}
|
||||
},
|
||||
"originItemType": null,
|
||||
|
|
@ -512,12 +514,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754013871234,
|
||||
"modifiedTime": 1754143897693,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755260161782,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!uOP5oT9QzXPlnf3p.EF6YIDjQ0liFubGA"
|
||||
},
|
||||
|
|
@ -632,4 +634,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!uOP5oT9QzXPlnf3p"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Courtesan",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -114,7 +114,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/daggers/dagger-straight-cracked.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -122,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784237,
|
||||
"modifiedTime": 1754236374964,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264799637,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "ZxWaWPdzFIUPNC62",
|
||||
"sort": 2400000,
|
||||
|
|
@ -143,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -380,4 +382,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!ZxWaWPdzFIUPNC62"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Courtier",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"omqadwvxPY4xsd7K": {
|
||||
"name": "Socialite",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/daggers/dagger-twin-green.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784237,
|
||||
"modifiedTime": 1754046151158,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462499,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "CBBuEXAlLKFMJdjg",
|
||||
"sort": 2200000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -460,4 +463,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!CBBuEXAlLKFMJdjg"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Cult Adept",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -115,7 +115,8 @@
|
|||
},
|
||||
"range": "far",
|
||||
"img": "icons/weapons/staves/staff-ornate-purple.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -123,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784239,
|
||||
"modifiedTime": 1754236373793,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462512,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "0NxCSugvKQ4W8OYZ",
|
||||
"sort": 100000,
|
||||
|
|
@ -144,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -620,12 +621,7 @@
|
|||
"type": "feature",
|
||||
"system": {
|
||||
"description": "<p> Twice per scene, when a PC rolls a failure with Fear, clear a Stress.</p>",
|
||||
"resource": {
|
||||
"type": "simple",
|
||||
"value": 0,
|
||||
"max": "2",
|
||||
"icon": ""
|
||||
},
|
||||
"resource": null,
|
||||
"actions": {
|
||||
"3tibqB97ooJesxf0": {
|
||||
"type": "healing",
|
||||
|
|
@ -637,8 +633,8 @@
|
|||
"cost": [],
|
||||
"uses": {
|
||||
"value": null,
|
||||
"max": "",
|
||||
"recovery": null
|
||||
"max": "2",
|
||||
"recovery": "scene"
|
||||
},
|
||||
"damage": {
|
||||
"parts": [
|
||||
|
|
@ -692,7 +688,7 @@
|
|||
},
|
||||
"name": "Clear Stress",
|
||||
"img": "icons/magic/unholy/silhouette-robe-evil-glow.webp",
|
||||
"range": ""
|
||||
"range": "self"
|
||||
}
|
||||
},
|
||||
"originItemType": null,
|
||||
|
|
@ -712,16 +708,16 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754076395683,
|
||||
"modifiedTime": 1754142376642,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264866325,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!0NxCSugvKQ4W8OYZ.x6FbcrfOscb3er6P"
|
||||
}
|
||||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!0NxCSugvKQ4W8OYZ"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Cult Fang",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -103,8 +103,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784239,
|
||||
"modifiedTime": 1754236375454,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264898243,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "tyBOpLfigAhI9bU3",
|
||||
"sort": 3400000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -454,4 +455,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!tyBOpLfigAhI9bU3"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Cult Initiate",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -96,7 +96,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -104,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784240,
|
||||
"modifiedTime": 1754236375538,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264925295,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "zx99sOGTXicP4SSD",
|
||||
"sort": 3600000,
|
||||
|
|
@ -125,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -313,4 +315,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!zx99sOGTXicP4SSD"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Deeproot Defender",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/magic/nature/root-vines-grow-brown.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784246,
|
||||
"modifiedTime": 1754046151094,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462506,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "9x2xY9zwc3xzbXo5",
|
||||
"sort": 1800000,
|
||||
|
|
@ -138,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -474,4 +475,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!9x2xY9zwc3xzbXo5"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Demon of Avarice",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784247,
|
||||
"modifiedTime": 1754236375381,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265775161,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "pnyjIGxxvurcWmTv",
|
||||
"sort": 3400000,
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -385,4 +387,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!pnyjIGxxvurcWmTv"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Demon of Despair",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "far",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784248,
|
||||
"modifiedTime": 1754236375236,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266281854,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "kE4dfhqmIQpNd44e",
|
||||
"sort": 3400000,
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -503,4 +505,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!kE4dfhqmIQpNd44e"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Demon of Hubris",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784249,
|
||||
"modifiedTime": 1754236373869,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462532,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "2VN3BftageoTTIzu",
|
||||
"sort": 3400000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -655,4 +656,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!2VN3BftageoTTIzu"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Demon of Jealousy",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784249,
|
||||
"modifiedTime": 1754236374726,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462726,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "SxSOkM4bcVOFyjbo",
|
||||
"sort": 3400000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -440,4 +441,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!SxSOkM4bcVOFyjbo"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Demon of Wrath",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784252,
|
||||
"modifiedTime": 1754236373976,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462568,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "5lphJAgzoqZI3VoG",
|
||||
"sort": 3400000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -475,4 +476,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!5lphJAgzoqZI3VoG"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Demonic Hound Pack",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -109,8 +109,9 @@
|
|||
"bonus": 0,
|
||||
"type": "attack"
|
||||
},
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784253,
|
||||
"modifiedTime": 1754236374571,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264935543,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "NoRZ1PqB8N5wcIw0",
|
||||
"sort": 1800000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -422,4 +423,4 @@
|
|||
}
|
||||
],
|
||||
"_key": "!actors!NoRZ1PqB8N5wcIw0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Dire Bat",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -108,7 +108,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/claws/claw-hooked-curved.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784253,
|
||||
"modifiedTime": 1754236375442,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266383523,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "tBWHW00epmMnkawe",
|
||||
"sort": 3400000,
|
||||
|
|
@ -137,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -280,12 +282,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1754126247394,
|
||||
"modifiedTime": 1754126268904,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266380104,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items.effects!tBWHW00epmMnkawe.gx22MpD8fWoi8klZ.qZfNiqw1iAIxeuYg"
|
||||
}
|
||||
|
|
@ -513,4 +515,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!tBWHW00epmMnkawe"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Dire Wolf",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"JB2mFGRwgG2NIob8": {
|
||||
"name": "Keen Senses",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/claws/claw-straight-brown.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784257,
|
||||
"modifiedTime": 1754046151583,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259591554,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "wNzeuQLfLUMvgHlQ",
|
||||
"sort": 5100000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -500,4 +503,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!wNzeuQLfLUMvgHlQ"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Dryad",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784258,
|
||||
"modifiedTime": 1754236375484,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462937,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "wR7cFKrHvRzbzhBT",
|
||||
"sort": 3400000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -537,7 +538,7 @@
|
|||
},
|
||||
"name": "Spend Fear",
|
||||
"img": "icons/magic/unholy/orb-hands-pink.webp",
|
||||
"range": ""
|
||||
"range": "self"
|
||||
}
|
||||
},
|
||||
"originItemType": null,
|
||||
|
|
@ -557,16 +558,16 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754127256705,
|
||||
"modifiedTime": 1754127325813,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266428753,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!wR7cFKrHvRzbzhBT.z4JbqiHuxrWy6Cpu"
|
||||
}
|
||||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!wR7cFKrHvRzbzhBT"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Electric Eels",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -103,8 +103,9 @@
|
|||
"bonus": 0,
|
||||
"type": "attack"
|
||||
},
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784258,
|
||||
"modifiedTime": 1754236374738,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755264962798,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "TLzY1nDw0Bu9Ud40",
|
||||
"sort": 1900000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -412,4 +413,4 @@
|
|||
}
|
||||
],
|
||||
"_key": "!actors!TLzY1nDw0Bu9Ud40"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Elemental Spark",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -97,7 +97,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -105,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784259,
|
||||
"modifiedTime": 1754236374651,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462705,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "P7h54ZePFPHpYwvB",
|
||||
"sort": 3400000,
|
||||
|
|
@ -126,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -314,4 +315,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!P7h54ZePFPHpYwvB"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Elite Soldier",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
"systemPath": "actions",
|
||||
"type": "attack",
|
||||
"description": "",
|
||||
"chatDisplay": true,
|
||||
"chatDisplay": false,
|
||||
"actionType": "action",
|
||||
"cost": [],
|
||||
"uses": {
|
||||
|
|
@ -145,12 +145,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1754090776362,
|
||||
"modifiedTime": 1754236375037,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462811,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -435,4 +435,4 @@
|
|||
"_id": "bfhVWMBUh61b9J6n",
|
||||
"sort": 0,
|
||||
"_key": "!actors!bfhVWMBUh61b9J6n"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Failed Experiment",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -109,8 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/claws/claw-hooked-barbed.webp",
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784262,
|
||||
"modifiedTime": 1754236374339,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265009751,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "ChwwVqowFw8hJQwT",
|
||||
"sort": 1500000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -412,4 +413,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!ChwwVqowFw8hJQwT"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Fallen Shock Troop",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -97,7 +97,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -105,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784264,
|
||||
"modifiedTime": 1754236374634,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462703,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "OsLG2BjaEdTZUJU9",
|
||||
"sort": 900000,
|
||||
|
|
@ -126,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -400,4 +401,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!OsLG2BjaEdTZUJU9"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Fallen Sorcerer",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/staves/staff-animal-skull-bull.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784265,
|
||||
"modifiedTime": 1754236374668,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462708,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "PELRry1vqjBzSAlr",
|
||||
"sort": 1000000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -647,4 +648,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!PELRry1vqjBzSAlr"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Fallen Warlord: Realm Breaker",
|
||||
"type": "adversary",
|
||||
"_id": "hxZ0sgoFJubh5aj6",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"system": {
|
||||
"description": "<p><em>A Fallen God, wreathed in rage and resentment, bearing millennia of experience in breaking heroes’ spirits.</em></p>",
|
||||
"resistance": {
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -740,12 +740,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753929378070,
|
||||
"modifiedTime": 1754219468339,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462847,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors!hxZ0sgoFJubh5aj6"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Fallen Warlord: Undefeated Champion",
|
||||
"type": "adversary",
|
||||
"_id": "RXkZTwBRi4dJ3JE5",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"system": {
|
||||
"description": "<p><em>That which only the most feared have a chance to fear.</em></p>",
|
||||
"resistance": {
|
||||
|
|
@ -153,7 +153,8 @@
|
|||
"bonus": 0,
|
||||
"dice": []
|
||||
}
|
||||
}
|
||||
},
|
||||
"chatDisplay": false
|
||||
},
|
||||
"motivesAndTactics": "Dispatch merciless death, punish the defi ant, secure victory at any cost"
|
||||
},
|
||||
|
|
@ -164,7 +165,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -797,12 +798,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753929476879,
|
||||
"modifiedTime": 1754219468339,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462720,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors!RXkZTwBRi4dJ3JE5"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Giant Beastmaster",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784268,
|
||||
"modifiedTime": 1754236374099,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462604,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "8VZIgU12cB3cvlyH",
|
||||
"sort": 800000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -423,7 +424,31 @@
|
|||
"system": {
|
||||
"description": "<p>Twice per scene, summon a Bear, Dire Wolf, or similar Tier 1 animal adversary under the Beastmaster’s control. The adversary appears at Close range and is immediately spotlighted.</p>",
|
||||
"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 Beastmaster’s 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,
|
||||
"originId": null
|
||||
},
|
||||
|
|
@ -441,16 +466,16 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754078527859,
|
||||
"modifiedTime": 1754078561245,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265167372,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!8VZIgU12cB3cvlyH.w1oHm0NoEavQgUzl"
|
||||
}
|
||||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!8VZIgU12cB3cvlyH"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Giant Brawler",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784268,
|
||||
"modifiedTime": 1754236374935,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462794,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "YnObCleGjPT7yqEc",
|
||||
"sort": 2300000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -485,4 +486,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!YnObCleGjPT7yqEc"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "Giant Eagle",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
"difficulty": 20,
|
||||
"difficulty": 14,
|
||||
"damageThresholds": {
|
||||
"major": 8,
|
||||
"severe": 19
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
"systemPath": "actions",
|
||||
"type": "attack",
|
||||
"description": "",
|
||||
"chatDisplay": true,
|
||||
"chatDisplay": false,
|
||||
"actionType": "action",
|
||||
"cost": [],
|
||||
"uses": {
|
||||
|
|
@ -145,12 +145,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754090770908,
|
||||
"modifiedTime": 1754236374596,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265221515,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -308,10 +308,11 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr",
|
||||
"modifiedTime": 1755265232810
|
||||
},
|
||||
"_key": "!actors.items.effects!OMQ0v6PE8s1mSU0K.wdNrstuoh4MFShYG.odAyKY0BSAkcO3Dd"
|
||||
}
|
||||
|
|
@ -745,4 +746,4 @@
|
|||
"_id": "OMQ0v6PE8s1mSU0K",
|
||||
"sort": 900000,
|
||||
"_key": "!actors!OMQ0v6PE8s1mSU0K"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Giant Mosquitoes",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -39,7 +39,8 @@
|
|||
"experiences": {
|
||||
"4SUFXKZh33mFvNt9": {
|
||||
"name": "Camouflage",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,8 +109,9 @@
|
|||
"bonus": -2,
|
||||
"type": "attack"
|
||||
},
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784269,
|
||||
"modifiedTime": 1754046262389,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259619874,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "IIWV4ysJPFPnTP7W",
|
||||
"sort": 2800000,
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -454,4 +456,4 @@
|
|||
}
|
||||
],
|
||||
"_key": "!actors!IIWV4ysJPFPnTP7W"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Giant Rat",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -23,7 +23,8 @@
|
|||
"experiences": {
|
||||
"G0iclPpoGwevQcTC": {
|
||||
"name": "Keen Senses",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -101,7 +102,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -109,12 +112,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784270,
|
||||
"modifiedTime": 1754236373924,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259636506,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "4PfLnaCrOcMdb4dK",
|
||||
"sort": 800000,
|
||||
|
|
@ -130,7 +133,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -344,4 +347,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!4PfLnaCrOcMdb4dK"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Giant Recruit",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -97,7 +97,8 @@
|
|||
"bonus": 1,
|
||||
"type": "attack"
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -105,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784271,
|
||||
"modifiedTime": 1754236373987,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462570,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "5s8wSvpyC5rxY5aD",
|
||||
"sort": 400000,
|
||||
|
|
@ -126,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -314,4 +315,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!5s8wSvpyC5rxY5aD"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Giant Scorpion",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"SZtO9UTincKiOlC4": {
|
||||
"name": "Camouflage",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784272,
|
||||
"modifiedTime": 1754236375100,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259666128,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "fmfntuJ8mHRCAktP",
|
||||
"sort": 4200000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -536,4 +539,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!fmfntuJ8mHRCAktP"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Glass Snake",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784273,
|
||||
"modifiedTime": 1754236374083,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462600,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "8KWVLWXFhlY2kYx0",
|
||||
"sort": 1400000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -659,4 +660,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!8KWVLWXFhlY2kYx0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Gorgon",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/bows/shortbow-recurve-yellow.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784274,
|
||||
"modifiedTime": 1754236374109,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462608,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "8mJYMpbLTb8qIOrr",
|
||||
"sort": 1000000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -622,4 +623,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!8mJYMpbLTb8qIOrr"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Greater Earth Elemental",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784275,
|
||||
"modifiedTime": 1754236375088,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462829,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "dsfB3YhoL5SudvS2",
|
||||
"sort": 3400000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -633,4 +634,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!dsfB3YhoL5SudvS2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Greater Water Elemental",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784278,
|
||||
"modifiedTime": 1754236375512,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462945,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "xIICT6tEdnA7dKDV",
|
||||
"sort": 3400000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -601,4 +602,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!xIICT6tEdnA7dKDV"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Green Ooze",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"Ti0QFAMro3FpetoT": {
|
||||
"name": "Camouflage",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784278,
|
||||
"modifiedTime": 1754236374705,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259726565,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "SHXedd9zZPVfUgUa",
|
||||
"sort": 3500000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -602,4 +605,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!SHXedd9zZPVfUgUa"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Hallowed Archer",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784279,
|
||||
"modifiedTime": 1754236375250,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462863,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "kabueAo6BALApWqp",
|
||||
"sort": 1500000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -372,4 +373,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!kabueAo6BALApWqp"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Hallowed Soldier",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -96,7 +96,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/skills/melee/sword-shield-stylized-white.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -104,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784279,
|
||||
"modifiedTime": 1754236374772,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266855456,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "VENwg7xEFcYObjmT",
|
||||
"sort": 1100000,
|
||||
|
|
@ -125,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -377,4 +379,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!VENwg7xEFcYObjmT"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Harrier",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/polearms/spear-hooked-rounded.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784281,
|
||||
"modifiedTime": 1754236375463,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462930,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "uRtghKE9mHlII4rs",
|
||||
"sort": 5000000,
|
||||
|
|
@ -138,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -379,4 +380,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!uRtghKE9mHlII4rs"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Head Guard",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,11 +40,13 @@
|
|||
"experiences": {
|
||||
"3B8vav5pEdBrxWXw": {
|
||||
"name": "Commander",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
},
|
||||
"DxLwVt9XFIUUhCAo": {
|
||||
"name": "Local Knowledge",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -112,7 +114,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -120,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784282,
|
||||
"modifiedTime": 1754236375275,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259874457,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "mK3A5FTx6k8iPU3F",
|
||||
"sort": 4600000,
|
||||
|
|
@ -141,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -389,4 +393,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!mK3A5FTx6k8iPU3F"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Head Vampire",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784283,
|
||||
"modifiedTime": 1754236375168,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266472641,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "i2UNbRvgyoSs07M6",
|
||||
"sort": 3400000,
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -443,7 +445,7 @@
|
|||
"includeBase": false
|
||||
},
|
||||
"target": {
|
||||
"type": "any",
|
||||
"type": "self",
|
||||
"amount": null
|
||||
},
|
||||
"effects": [],
|
||||
|
|
@ -464,7 +466,7 @@
|
|||
},
|
||||
"name": "Clear HP",
|
||||
"img": "icons/creatures/abilities/fang-tooth-blood-red.webp",
|
||||
"range": "melee"
|
||||
"range": "self"
|
||||
}
|
||||
},
|
||||
"originItemType": null,
|
||||
|
|
@ -484,12 +486,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754128497673,
|
||||
"modifiedTime": 1754128552831,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266523384,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!i2UNbRvgyoSs07M6.Oj6qkLG1N6uqQHcx"
|
||||
},
|
||||
|
|
@ -666,4 +668,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!i2UNbRvgyoSs07M6"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "High Seraph",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/skills/melee/strike-blade-hooked-orange-blue.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784283,
|
||||
"modifiedTime": 1754236375397,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462909,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "r1mbfSSwKWdcFdAU",
|
||||
"sort": 1800000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -612,4 +613,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!r1mbfSSwKWdcFdAU"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Huge Green Ooze",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784284,
|
||||
"modifiedTime": 1754236374016,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266545039,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "6hbqmxDXFOzZJDk4",
|
||||
"sort": 3400000,
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -573,4 +575,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!6hbqmxDXFOzZJDk4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Hydra",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784285,
|
||||
"modifiedTime": 1754236374476,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462679,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "MI126iMOOobQ1Obn",
|
||||
"sort": 3400000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -372,7 +373,7 @@
|
|||
},
|
||||
"name": "Spend Fear",
|
||||
"img": "icons/magic/life/cross-beam-green.webp",
|
||||
"range": ""
|
||||
"range": "self"
|
||||
}
|
||||
},
|
||||
"originItemType": null,
|
||||
|
|
@ -392,12 +393,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754129581504,
|
||||
"modifiedTime": 1754129633128,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266587320,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!MI126iMOOobQ1Obn.b2KflqWoOxHMQf97"
|
||||
},
|
||||
|
|
@ -603,4 +604,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!MI126iMOOobQ1Obn"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jagged Knife Bandit",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -39,7 +39,8 @@
|
|||
"experiences": {
|
||||
"ASrtgt4pTDvoXehG": {
|
||||
"name": "Thief",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/daggers/dagger-twin-green.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784290,
|
||||
"modifiedTime": 1754236373947,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259904640,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "5Lh1T0zaT8Pkr2U2",
|
||||
"sort": 900000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -350,4 +353,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!5Lh1T0zaT8Pkr2U2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jagged Knife Hexer",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784291,
|
||||
"modifiedTime": 1754236374521,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462688,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "MbBPIOxaxXYNApXz",
|
||||
"sort": 3000000,
|
||||
|
|
@ -138,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -444,4 +445,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!MbBPIOxaxXYNApXz"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jagged Knife Kneebreaker",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,11 +40,13 @@
|
|||
"experiences": {
|
||||
"VMCCn7A9eLU1PMz7": {
|
||||
"name": "Thief",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
},
|
||||
"HXPw1dnHO0ckLOBS": {
|
||||
"name": "Unveiled Threats",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -112,7 +114,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -120,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784292,
|
||||
"modifiedTime": 1754236374304,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259941370,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "CBKixLH3yhivZZuL",
|
||||
"sort": 2300000,
|
||||
|
|
@ -141,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -400,4 +404,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!CBKixLH3yhivZZuL"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jagged Knife Lackey",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -23,7 +23,8 @@
|
|||
"experiences": {
|
||||
"tNLKSFvNBTfjwujs": {
|
||||
"name": "Thief",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -93,7 +94,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
},
|
||||
"resources": {
|
||||
"hitPoints": {
|
||||
|
|
@ -109,12 +112,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784293,
|
||||
"modifiedTime": 1754236374283,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259961931,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "C0OMQqV7pN6t7ouR",
|
||||
"sort": 2100000,
|
||||
|
|
@ -130,7 +133,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -320,4 +323,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!C0OMQqV7pN6t7ouR"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jagged Knife Lieutenant",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784294,
|
||||
"modifiedTime": 1754236375013,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462803,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "aTljstqteGoLpCBq",
|
||||
"sort": 4000000,
|
||||
|
|
@ -138,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -503,4 +504,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!aTljstqteGoLpCBq"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jagged Knife Shadow",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"ZUMG6p8iB73HY73o": {
|
||||
"name": "Intrusion",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784295,
|
||||
"modifiedTime": 1754236374879,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755260040062,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "XF4tYTq9nPJAy2ox",
|
||||
"sort": 3700000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -341,7 +344,36 @@
|
|||
"system": {
|
||||
"description": "<p>Become <em>Hidden</em> until after the Shadow’s next attack. Attacks made while Hidden from this feature have advantage.</p>",
|
||||
"resource": null,
|
||||
"actions": {},
|
||||
"actions": {
|
||||
"s0X44RPg5hA8lVax": {
|
||||
"type": "effect",
|
||||
"_id": "s0X44RPg5hA8lVax",
|
||||
"systemPath": "actions",
|
||||
"description": "<p>Become <em>Hidden</em> until after the Shadow’s 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,
|
||||
"subType": null,
|
||||
"originId": null
|
||||
|
|
@ -349,9 +381,11 @@
|
|||
"effects": [
|
||||
{
|
||||
"name": "Cloaked",
|
||||
"type": "base",
|
||||
"_id": "9fZkdsHfyTskJk7r",
|
||||
"img": "icons/magic/perception/silhouette-stealth-shadow.webp",
|
||||
"origin": "Compendium.daggerheart.adversaries.Actor.XF4tYTq9nPJAy2ox.Item.ILIogeKbYioPutRw",
|
||||
"transfer": false,
|
||||
"_id": "w5VTwlHmUjl8XCQ4",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"rangeDependence": {
|
||||
"enabled": false,
|
||||
|
|
@ -360,8 +394,15 @@
|
|||
"range": "melee"
|
||||
}
|
||||
},
|
||||
"changes": [],
|
||||
"disabled": true,
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.advantageSources",
|
||||
"mode": 2,
|
||||
"value": "Attacks made while Hidden",
|
||||
"priority": null
|
||||
}
|
||||
],
|
||||
"disabled": false,
|
||||
"duration": {
|
||||
"startTime": null,
|
||||
"combat": null,
|
||||
|
|
@ -372,9 +413,7 @@
|
|||
"startTurn": null
|
||||
},
|
||||
"description": "<p>Become <em>Hidden</em> until after the Shadow’s next attack. Attacks made while Hidden from this feature have advantage.</p>",
|
||||
"origin": null,
|
||||
"tint": "#ffffff",
|
||||
"transfer": true,
|
||||
"statuses": [
|
||||
"hidden"
|
||||
],
|
||||
|
|
@ -384,14 +423,14 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1754049344935,
|
||||
"modifiedTime": 1754049371699,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1755263044332,
|
||||
"modifiedTime": 1755263071114,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items.effects!XF4tYTq9nPJAy2ox.ILIogeKbYioPutRw.9fZkdsHfyTskJk7r"
|
||||
"_key": "!actors.items.effects!XF4tYTq9nPJAy2ox.ILIogeKbYioPutRw.w5VTwlHmUjl8XCQ4"
|
||||
}
|
||||
],
|
||||
"folder": null,
|
||||
|
|
@ -405,16 +444,16 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754049306353,
|
||||
"modifiedTime": 1754049333765,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263044345,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!XF4tYTq9nPJAy2ox.ILIogeKbYioPutRw"
|
||||
}
|
||||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!XF4tYTq9nPJAy2ox"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jagged Knife Sniper",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -109,7 +109,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -117,12 +118,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784296,
|
||||
"modifiedTime": 1754236373855,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462527,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "1zuyof1XuIfi3aMG",
|
||||
"sort": 300000,
|
||||
|
|
@ -138,7 +139,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -337,4 +338,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!1zuyof1XuIfi3aMG"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Juvenile Flickerfly",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784297,
|
||||
"modifiedTime": 1754236374492,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462684,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "MYXmTx2FHcIjdfYZ",
|
||||
"sort": 1700000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -605,4 +606,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!MYXmTx2FHcIjdfYZ"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "Knight of the Realm",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
"difficulty": 17,
|
||||
"difficulty": 15,
|
||||
"damageThresholds": {
|
||||
"major": 13,
|
||||
"severe": 26
|
||||
|
|
@ -119,8 +119,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -128,12 +129,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784302,
|
||||
"modifiedTime": 1754236374063,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265352331,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "7ai2opemrclQe3VF",
|
||||
"sort": 700000,
|
||||
|
|
@ -149,7 +150,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -292,12 +293,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1754080622148,
|
||||
"modifiedTime": 1754080649583,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265361100,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items.effects!7ai2opemrclQe3VF.5ag5tOemPJToOoUq.w8wLcSsTiTU3mS7e"
|
||||
}
|
||||
|
|
@ -604,4 +605,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!7ai2opemrclQe3VF"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Kraken",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/tentacles/tentacles-octopus-black-pink.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784303,
|
||||
"modifiedTime": 1754236373932,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462553,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "4nqv3ZwJGjnmic8j",
|
||||
"sort": 600000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -569,4 +570,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!4nqv3ZwJGjnmic8j"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Masked Thief",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -109,8 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784304,
|
||||
"modifiedTime": 1754236375343,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265377045,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "niBpVU7yeo5ccskE",
|
||||
"sort": 3000000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -468,4 +469,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!niBpVU7yeo5ccskE"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Master Assassin",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -115,7 +115,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -123,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784305,
|
||||
"modifiedTime": 1754236375063,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462821,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "dNta0cUzr96xcFhf",
|
||||
"sort": 2500000,
|
||||
|
|
@ -144,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -429,4 +430,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!dNta0cUzr96xcFhf"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Merchant",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"5cbm0DMiWxo6300c": {
|
||||
"name": "Shrewd Negotiator",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/clubs/club-baton-blue.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784305,
|
||||
"modifiedTime": 1754236374230,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263103972,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "Al3w2CgjfdT3p9ma",
|
||||
"sort": 1900000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -349,4 +352,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!Al3w2CgjfdT3p9ma"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Merchant Baron",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -114,7 +114,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -122,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784306,
|
||||
"modifiedTime": 1754236374821,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265400782,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "Vy02IhGhkJLuezu4",
|
||||
"sort": 2100000,
|
||||
|
|
@ -143,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -404,4 +406,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!Vy02IhGhkJLuezu4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Minor Chaos Elemental",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
]
|
||||
},
|
||||
"range": "close",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784307,
|
||||
"modifiedTime": 1754236375428,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462919,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "sRn4bqerfARvhgSV",
|
||||
"sort": 4800000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -621,4 +622,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!sRn4bqerfARvhgSV"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Minor Demon",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -103,7 +103,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -111,12 +112,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784308,
|
||||
"modifiedTime": 1754236373911,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462544,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "3tqCjDwJAQ7JKqMb",
|
||||
"sort": 700000,
|
||||
|
|
@ -132,7 +133,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -559,4 +560,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!3tqCjDwJAQ7JKqMb"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Minor Fire Elemental",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784308,
|
||||
"modifiedTime": 1754236374357,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462650,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "DscWkNVoHak6P4hh",
|
||||
"sort": 2400000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -698,4 +699,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!DscWkNVoHak6P4hh"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Minor Treant",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -96,7 +96,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -104,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784309,
|
||||
"modifiedTime": 1754236374420,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263168654,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "G62k4oSkhkoXEs2D",
|
||||
"sort": 2600000,
|
||||
|
|
@ -125,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -315,4 +317,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!G62k4oSkhkoXEs2D"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Minotaur Wrecker",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/axes/axe-double.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784310,
|
||||
"modifiedTime": 1754236375407,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462912,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "rM9qCIYeWg9I0B4l",
|
||||
"sort": 3200000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -562,4 +563,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!rM9qCIYeWg9I0B4l"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Monarch",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -114,7 +114,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -122,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784312,
|
||||
"modifiedTime": 1754236375521,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266608082,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "yx0vK2yfNVZKWUUi",
|
||||
"sort": 3400000,
|
||||
|
|
@ -143,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -395,4 +397,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!yx0vK2yfNVZKWUUi"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Mortal Hunter",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784313,
|
||||
"modifiedTime": 1754236375305,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462879,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "mVV7a7KQAORoPMgZ",
|
||||
"sort": 2900000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -647,4 +648,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!mVV7a7KQAORoPMgZ"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Oak Treant",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "wTI7nZkPhKxl7Wwq",
|
||||
"system": {
|
||||
|
|
@ -84,7 +84,9 @@
|
|||
"enabled": false
|
||||
}
|
||||
},
|
||||
"type": ["physical"],
|
||||
"type": [
|
||||
"physical"
|
||||
],
|
||||
"applyTo": "hitPoints",
|
||||
"resultBased": false,
|
||||
"valueAlt": {
|
||||
|
|
@ -101,7 +103,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -109,12 +112,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784314,
|
||||
"modifiedTime": 1753922784314,
|
||||
"lastModifiedBy": "WafZqd6qLGpBRGTt"
|
||||
"modifiedTime": 1755259462770,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "XK78QUfY8c8Go8Uv",
|
||||
"sort": 3400000,
|
||||
|
|
@ -130,7 +133,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Oracle of Doom",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -110,7 +110,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784315,
|
||||
"modifiedTime": 1754236375025,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462807,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "befIqd5IYKg6eUz2",
|
||||
"sort": 1400000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -733,4 +734,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!befIqd5IYKg6eUz2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Outer Realms Abomination",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/tentacles/tentacle-earth-green.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784319,
|
||||
"modifiedTime": 1754236374220,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462626,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "A0SeeDzwjvqOsyof",
|
||||
"sort": 700000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -604,4 +605,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!A0SeeDzwjvqOsyof"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Outer Realms Corrupter",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784320,
|
||||
"modifiedTime": 1754236375331,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462889,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "ms6nuOl3NFkhPj1k",
|
||||
"sort": 1600000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -416,4 +417,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!ms6nuOl3NFkhPj1k"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Outer Realms Thrall",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -96,7 +96,9 @@
|
|||
"type": "attack"
|
||||
},
|
||||
"img": "icons/creatures/claws/claw-talons-yellow-red.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -104,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784321,
|
||||
"modifiedTime": 1754236375320,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755266968806,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "moJhHgKqTKPS2WYS",
|
||||
"sort": 1700000,
|
||||
|
|
@ -125,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -313,4 +315,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!moJhHgKqTKPS2WYS"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Patchwork Zombie Hulk",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -113,7 +113,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/commodities/biological/hand-clawed-blue.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -121,12 +122,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784322,
|
||||
"modifiedTime": 1754236374380,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462653,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "EQTOAOUrkIvS2z88",
|
||||
"sort": 2500000,
|
||||
|
|
@ -142,7 +143,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -397,7 +398,7 @@
|
|||
},
|
||||
"name": "Heal",
|
||||
"img": "icons/magic/death/skull-trio-badge-purple.webp",
|
||||
"range": ""
|
||||
"range": "self"
|
||||
}
|
||||
},
|
||||
"originItemType": null,
|
||||
|
|
@ -416,12 +417,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754051528475,
|
||||
"modifiedTime": 1754144642466,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263257032,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!EQTOAOUrkIvS2z88.gw1Z2VazlRXYCiCK"
|
||||
},
|
||||
|
|
@ -543,4 +544,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!EQTOAOUrkIvS2z88"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Perfected Zombie",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "7XHlANCPz18yvl5L",
|
||||
"system": {
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
"isReversed": true
|
||||
},
|
||||
"stress": {
|
||||
"value": 1,
|
||||
"value": 0,
|
||||
"max": 4,
|
||||
"isReversed": true
|
||||
}
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784323,
|
||||
"modifiedTime": 1754236374324,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755267137806,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "CP6iRfHdyFWniTHY",
|
||||
"sort": 800000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -566,4 +567,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!CP6iRfHdyFWniTHY"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Petty Noble",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -39,7 +39,8 @@
|
|||
"experiences": {
|
||||
"cATk1IILqCDA5pnb": {
|
||||
"name": "Aristocrat",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784324,
|
||||
"modifiedTime": 1754236375504,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263279700,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "wycLpvebWdUqRhpP",
|
||||
"sort": 5200000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -416,4 +419,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!wycLpvebWdUqRhpP"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Pirate Captain",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,11 +40,13 @@
|
|||
"experiences": {
|
||||
"ndSzzasQ0JcMPJ6W": {
|
||||
"name": "Commander",
|
||||
"value": 2
|
||||
"value": 2,
|
||||
"description": ""
|
||||
},
|
||||
"N0jWLtKmD5Cy6CjY": {
|
||||
"name": "Sailor",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -112,7 +114,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -120,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784325,
|
||||
"modifiedTime": 1754236374624,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263303289,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "OROJbjsqagVh7ECV",
|
||||
"sort": 3200000,
|
||||
|
|
@ -141,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -532,4 +536,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!OROJbjsqagVh7ECV"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Pirate Raiders",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"a2aFr2x2FEZp7dFx": {
|
||||
"name": "Sailor",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
"bonus": 1,
|
||||
"type": "attack"
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784326,
|
||||
"modifiedTime": 1754236373965,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263339105,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "5YgEajn0wa4i85kC",
|
||||
"sort": 1000000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -389,4 +392,4 @@
|
|||
}
|
||||
],
|
||||
"_key": "!actors!5YgEajn0wa4i85kC"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Pirate Tough",
|
||||
"type": "adversary",
|
||||
"_id": "mhcVkVFrzIJ18FDm",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"system": {
|
||||
"description": "<p>A thickly muscled and tattooed pirate with melon-sized fists.</p>",
|
||||
"resistance": {
|
||||
|
|
@ -154,7 +154,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -447,12 +447,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1754089855172,
|
||||
"modifiedTime": 1754089915784,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462883,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors!mhcVkVFrzIJ18FDm"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Red Ooze",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
"experiences": {
|
||||
"0QeViWJm5MdiJ9GL": {
|
||||
"name": "Camouflage",
|
||||
"value": 3
|
||||
"value": 3,
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
|
|
@ -108,7 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/slimes/slime-movement-dripping-pseudopods-green.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -116,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784338,
|
||||
"modifiedTime": 1754236374205,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263361677,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "9rVlbJVrDNn1x7PS",
|
||||
"sort": 1700000,
|
||||
|
|
@ -137,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -538,4 +541,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!9rVlbJVrDNn1x7PS"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Rotted Zombie",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -88,7 +88,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/abilities/mouth-teeth-sharp.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
},
|
||||
"resources": {
|
||||
"hitPoints": {
|
||||
|
|
@ -104,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784339,
|
||||
"modifiedTime": 1754236375111,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263398665,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "gP3fWTLzSFnpA8EJ",
|
||||
"sort": 4300000,
|
||||
|
|
@ -125,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -315,4 +317,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!gP3fWTLzSFnpA8EJ"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Royal Advisor",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -115,7 +115,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -123,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784339,
|
||||
"modifiedTime": 1754236374390,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462657,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "EtLJiTsilPPZvLUX",
|
||||
"sort": 1600000,
|
||||
|
|
@ -144,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -449,4 +450,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!EtLJiTsilPPZvLUX"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Secret-Keeper",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -115,7 +115,8 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/weapons/staves/staff-ornate-purple.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -123,12 +124,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784341,
|
||||
"modifiedTime": 1754236375419,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462915,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "sLAccjvCWfeedbpI",
|
||||
"sort": 3300000,
|
||||
|
|
@ -144,7 +145,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -532,8 +533,8 @@
|
|||
],
|
||||
"uses": {
|
||||
"value": null,
|
||||
"max": "",
|
||||
"recovery": null
|
||||
"max": "1",
|
||||
"recovery": "scene"
|
||||
},
|
||||
"effects": [],
|
||||
"target": {
|
||||
|
|
@ -562,16 +563,16 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1754083283890,
|
||||
"modifiedTime": 1754143114257,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265493498,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_key": "!actors.items!sLAccjvCWfeedbpI.Q28NPuSMccjzykib"
|
||||
}
|
||||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!sLAccjvCWfeedbpI"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Sellsword",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -96,7 +96,9 @@
|
|||
"type": "attack"
|
||||
},
|
||||
"img": "icons/weapons/swords/sword-guard.webp",
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -104,12 +106,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784341,
|
||||
"modifiedTime": 1754236375045,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263436436,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "bgreCaQ6ap2DVpCr",
|
||||
"sort": 4100000,
|
||||
|
|
@ -125,7 +127,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -315,4 +317,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!bgreCaQ6ap2DVpCr"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Shambling Zombie",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "sxvlEwi25uAoB2C5",
|
||||
"system": {
|
||||
|
|
@ -103,7 +103,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"range": "melee",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -111,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784342,
|
||||
"modifiedTime": 1754236373883,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755263464581,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "2nXz4ilAY4xuhKLm",
|
||||
"sort": 600000,
|
||||
|
|
@ -132,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -344,4 +346,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!2nXz4ilAY4xuhKLm"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Shark",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -104,7 +104,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"type": "attack"
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -112,12 +113,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1753922784342,
|
||||
"modifiedTime": 1754236374913,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755259462790,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "YmVAkdNsyuXWTtYp",
|
||||
"sort": 2200000,
|
||||
|
|
@ -133,7 +134,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -506,4 +507,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!YmVAkdNsyuXWTtYp"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Siren",
|
||||
"img": "icons/svg/mystery-man.svg",
|
||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"type": "adversary",
|
||||
"folder": "OgzrmfH1ZbpljX7k",
|
||||
"system": {
|
||||
|
|
@ -109,8 +109,9 @@
|
|||
]
|
||||
},
|
||||
"img": "icons/creatures/abilities/mouth-teeth-sharp.webp",
|
||||
"range": "",
|
||||
"type": "attack"
|
||||
"range": "melee",
|
||||
"type": "attack",
|
||||
"chatDisplay": false
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
|
|
@ -118,12 +119,12 @@
|
|||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.346",
|
||||
"coreVersion": "13.347",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"systemVersion": "1.0.4",
|
||||
"createdTime": 1753922784344,
|
||||
"modifiedTime": 1754236374255,
|
||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||
"modifiedTime": 1755265520298,
|
||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||
},
|
||||
"_id": "BK4jwyXSRx7IOQiO",
|
||||
"sort": 1400000,
|
||||
|
|
@ -139,7 +140,7 @@
|
|||
"width": 1,
|
||||
"height": 1,
|
||||
"texture": {
|
||||
"src": "icons/svg/mystery-man.svg",
|
||||
"src": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||
"anchorX": 0.5,
|
||||
"anchorY": 0.5,
|
||||
"offsetX": 0,
|
||||
|
|
@ -477,4 +478,4 @@
|
|||
],
|
||||
"effects": [],
|
||||
"_key": "!actors!BK4jwyXSRx7IOQiO"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue