mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
merge main to development (#1244)
* Fixed typo of defi ant to defiant (#1175) Co-authored-by: Chris Ryan <chrisr@blackhole> * Add dice value support to Advesaries and Environments (#1186) Co-authored-by: Chris Ryan <chrisr@blackhole> * Update Powerful Beast for Errata changes (#1185) Co-authored-by: Chris Ryan <chrisr@blackhole> * Remove unnecessary chatDisplay (#1171) * Remove dupe weapon (#1167) Co-authored-by: Chris Ryan <chrisr@blackhole> * Rune Ward reduces damage with flat 1d8 (#1191) Co-authored-by: Chris Ryan <chrisr@blackhole> * Fix adv hand crossbow to d6 damage, not d4 (#1208) Co-authored-by: Chris Ryan <chrisr@blackhole> * Fix advantages for Armored Sentry (#1210) Co-authored-by: Chris Ryan <chrisr@blackhole> * Change the damage to use d8 instead of d6 (#1211) Co-authored-by: Chris Ryan <chrisr@blackhole> * [PR] Compendium fixes and Typo checks - 26 Oct (#1233) * PR fixes and Typo checks - 26 Oct * removed dwarf tough skin action as it was unecessary * Fix the damage output of the Takedown Beastform feature (#1240) Co-authored-by: Chris Ryan <chrisr@blackhole> --------- Co-authored-by: Chris Ryan <chrisr@blackhole> Co-authored-by: UsernameIsInUse <49582925+UsernameIsInUse@users.noreply.github.com> Co-authored-by: Nikhil Nagarajan <potter.nikhil@gmail.com>
This commit is contained in:
parent
3aaae26ba1
commit
bccedffbca
88 changed files with 3270 additions and 559 deletions
|
|
@ -10,7 +10,9 @@ export default class AdversarySheet extends DHBaseActorSheet {
|
||||||
position: { width: 660, height: 766 },
|
position: { width: 660, height: 766 },
|
||||||
window: { resizable: true },
|
window: { resizable: true },
|
||||||
actions: {
|
actions: {
|
||||||
reactionRoll: AdversarySheet.#reactionRoll
|
reactionRoll: AdversarySheet.#reactionRoll,
|
||||||
|
toggleResourceDice: AdversarySheet.#toggleResourceDice,
|
||||||
|
handleResourceDice: AdversarySheet.#handleResourceDice
|
||||||
},
|
},
|
||||||
window: {
|
window: {
|
||||||
resizable: true,
|
resizable: true,
|
||||||
|
|
@ -173,6 +175,40 @@ export default class AdversarySheet extends DHBaseActorSheet {
|
||||||
this.actor.diceRoll(config);
|
this.actor.diceRoll(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggle the used state of a resource dice.
|
||||||
|
* @type {ApplicationClickAction}
|
||||||
|
*/
|
||||||
|
static async #toggleResourceDice(event, target) {
|
||||||
|
const item = await getDocFromElement(target);
|
||||||
|
|
||||||
|
const { dice } = event.target.closest('.item-resource').dataset;
|
||||||
|
const diceState = item.system.resource.diceStates[dice];
|
||||||
|
|
||||||
|
await item.update({
|
||||||
|
[`system.resource.diceStates.${dice}.used`]: diceState ? !diceState.used : true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the roll values of resource dice.
|
||||||
|
* @type {ApplicationClickAction}
|
||||||
|
*/
|
||||||
|
static async #handleResourceDice(_, target) {
|
||||||
|
const item = await getDocFromElement(target);
|
||||||
|
if (!item) return;
|
||||||
|
|
||||||
|
const rollValues = await game.system.api.applications.dialogs.ResourceDiceDialog.create(item, this.document);
|
||||||
|
if (!rollValues) return;
|
||||||
|
|
||||||
|
await item.update({
|
||||||
|
'system.resource.diceStates': rollValues.reduce((acc, state, index) => {
|
||||||
|
acc[index] = { value: state.value, used: state.used };
|
||||||
|
return acc;
|
||||||
|
}, {})
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
/* Application Listener Actions */
|
/* Application Listener Actions */
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
import { getDocFromElement } from '../../../helpers/utils.mjs';
|
||||||
import DHBaseActorSheet from '../api/base-actor.mjs';
|
import DHBaseActorSheet from '../api/base-actor.mjs';
|
||||||
|
|
||||||
/**@typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction */
|
/**@typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction */
|
||||||
|
|
@ -20,7 +21,10 @@ export default class DhpEnvironment extends DHBaseActorSheet {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
actions: {},
|
actions: {
|
||||||
|
toggleResourceDice: DhpEnvironment.#toggleResourceDice,
|
||||||
|
handleResourceDice: DhpEnvironment.#handleResourceDice
|
||||||
|
},
|
||||||
dragDrop: [{ dragSelector: '.action-section .inventory-item', dropSelector: null }]
|
dragDrop: [{ dragSelector: '.action-section .inventory-item', dropSelector: null }]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -134,4 +138,44 @@ export default class DhpEnvironment extends DHBaseActorSheet {
|
||||||
event.dataTransfer.setDragImage(item, 60, 0);
|
event.dataTransfer.setDragImage(item, 60, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
/* Application Clicks Actions */
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggle the used state of a resource dice.
|
||||||
|
* @type {ApplicationClickAction}
|
||||||
|
*/
|
||||||
|
static async #toggleResourceDice(event, target) {
|
||||||
|
const item = await getDocFromElement(target);
|
||||||
|
|
||||||
|
const { dice } = event.target.closest('.item-resource').dataset;
|
||||||
|
const diceState = item.system.resource.diceStates[dice];
|
||||||
|
|
||||||
|
await item.update({
|
||||||
|
[`system.resource.diceStates.${dice}.used`]: diceState ? !diceState.used : true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the roll values of resource dice.
|
||||||
|
* @type {ApplicationClickAction}
|
||||||
|
*/
|
||||||
|
static async #handleResourceDice(_, target) {
|
||||||
|
const item = await getDocFromElement(target);
|
||||||
|
if (!item) return;
|
||||||
|
|
||||||
|
const rollValues = await game.system.api.applications.dialogs.ResourceDiceDialog.create(item, this.document);
|
||||||
|
if (!rollValues) return;
|
||||||
|
|
||||||
|
await item.update({
|
||||||
|
'system.resource.diceStates': rollValues.reduce((acc, state, index) => {
|
||||||
|
acc[index] = { value: state.value, used: state.used };
|
||||||
|
return acc;
|
||||||
|
}, {})
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -271,7 +271,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Burrower can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Burrower can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"3lGGgkxnzgUwHGIp": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "3lGGgkxnzgUwHGIp",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Burrower can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": false,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "2",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -288,10 +321,11 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"lastModifiedBy": null
|
"lastModifiedBy": "fBcTgyTzoARBvohY",
|
||||||
|
"modifiedTime": 1760033015502
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!89yAh30vaNQOALlz.MFmGN6Tbf5GYxrQ9"
|
"_key": "!actors.items!89yAh30vaNQOALlz.MFmGN6Tbf5GYxrQ9"
|
||||||
},
|
},
|
||||||
|
|
@ -445,7 +479,7 @@
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"_id": "yd10HwK6Wa3OEvv2",
|
"_id": "yd10HwK6Wa3OEvv2",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "<p>Make an attack against all targets in front of the Burrower within Close range. Targets the Burrower succeeds against take <strong>2d6</strong> physical damage and must mark an Armor Slot without receiving its benefits (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP and you gain a Fear.</p><p>@Template[type:inFront|range:c]</p>",
|
"description": "<p>Make an attack against all targets in front of the Burrower within Close range. Targets the Burrower succeeds against take <strong>2d6</strong> physical damage and must mark an Armor Slot without receiving its benefi ts (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP and you gain a Fear.</p><p>@Template[type:inFront|range:c]</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
|
|
@ -557,11 +591,11 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.2",
|
"systemVersion": "1.1.2",
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg",
|
"lastModifiedBy": "fBcTgyTzoARBvohY",
|
||||||
"modifiedTime": 1756510879809
|
"modifiedTime": 1760019840573
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!89yAh30vaNQOALlz.UpFsnlbZkyvM2Ftv"
|
"_key": "!actors.items!89yAh30vaNQOALlz.UpFsnlbZkyvM2Ftv"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -233,7 +233,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Flickerfly can be spotlighted up to four times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Flickerfly can be spotlighted up to four times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"poUhJdSkhjiVL2Vp": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "poUhJdSkhjiVL2Vp",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Flickerfly can be spotlighted up to four times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "3",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -251,12 +284,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754121940551,
|
"createdTime": 1754121940551,
|
||||||
"modifiedTime": 1754121965558,
|
"modifiedTime": 1760381115291,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!G7jiltRjgvVhZewm.fFOhhMl4SDUnYNNO"
|
"_key": "!actors.items!G7jiltRjgvVhZewm.fFOhhMl4SDUnYNNO"
|
||||||
},
|
},
|
||||||
|
|
@ -273,7 +306,7 @@
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "<p>When the Flickerfly makes an attack, the target’s Evasion is halved against the attack.</p>",
|
"description": "<p>When the Flickerfly makes an attack, the target’s Evasion is halved against the attack.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "passive",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
"value": null,
|
"value": null,
|
||||||
|
|
@ -364,12 +397,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754121968284,
|
"createdTime": 1754121968284,
|
||||||
"modifiedTime": 1754122883213,
|
"modifiedTime": 1760381147421,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!G7jiltRjgvVhZewm.PrwC6RpsP12fPUwy"
|
"_key": "!actors.items!G7jiltRjgvVhZewm.PrwC6RpsP12fPUwy"
|
||||||
},
|
},
|
||||||
|
|
@ -719,7 +752,7 @@
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "<p>When the Flickerfly takes damage from an attack within Close range, you can mark a Stress to take half damage.</p>",
|
"description": "<p>When the Flickerfly takes damage from an attack within Close range, you can mark a Stress to take half damage.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "reaction",
|
||||||
"cost": [
|
"cost": [
|
||||||
{
|
{
|
||||||
"scalable": false,
|
"scalable": false,
|
||||||
|
|
@ -760,14 +793,47 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754122789186,
|
"createdTime": 1754122789186,
|
||||||
"modifiedTime": 1754122857220,
|
"modifiedTime": 1760381159787,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!G7jiltRjgvVhZewm.KLdLRKoJHBJlHwYe"
|
"_key": "!actors.items!G7jiltRjgvVhZewm.KLdLRKoJHBJlHwYe"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Deadly Flight",
|
||||||
|
"type": "feature",
|
||||||
|
"system": {
|
||||||
|
"description": "<p>While flying the Flickerfly can move up to Far range instead of Close range before taking an action.</p>",
|
||||||
|
"resource": null,
|
||||||
|
"actions": {},
|
||||||
|
"originItemType": null,
|
||||||
|
"multiclassOrigin": false
|
||||||
|
},
|
||||||
|
"_id": "WFRpSDZvqF0Upjoy",
|
||||||
|
"img": "icons/skills/movement/feet-winged-boots-blue.webp",
|
||||||
|
"effects": [],
|
||||||
|
"folder": null,
|
||||||
|
"sort": 0,
|
||||||
|
"ownership": {
|
||||||
|
"default": 0,
|
||||||
|
"fBcTgyTzoARBvohY": 3
|
||||||
|
},
|
||||||
|
"flags": {},
|
||||||
|
"_stats": {
|
||||||
|
"compendiumSource": null,
|
||||||
|
"duplicateSource": null,
|
||||||
|
"exportSource": null,
|
||||||
|
"coreVersion": "13.350",
|
||||||
|
"systemId": "daggerheart",
|
||||||
|
"systemVersion": "1.1.2",
|
||||||
|
"createdTime": 1760381172325,
|
||||||
|
"modifiedTime": 1760381302938,
|
||||||
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
|
},
|
||||||
|
"_key": "!actors.items!G7jiltRjgvVhZewm.WFRpSDZvqF0Upjoy"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"effects": [],
|
"effects": [],
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Box can be spotlighted up to two times times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Box can be spotlighted up to two times times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"2JfPSV3pw6pv0BXd": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "2JfPSV3pw6pv0BXd",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Box can be spotlighted up to two times times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -257,12 +290,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754073816379,
|
"createdTime": 1754073816379,
|
||||||
"modifiedTime": 1754073843197,
|
"modifiedTime": 1760211145763,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!dgH3fW9FTYLaIDvS.RSovCwuGrZ1mk5py"
|
"_key": "!actors.items!dgH3fW9FTYLaIDvS.RSovCwuGrZ1mk5py"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -447,7 +447,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Bear makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Bear makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"ZQHGR0IweeWBLokB": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "ZQHGR0IweeWBLokB",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Bear makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -464,12 +534,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754012330113,
|
"createdTime": 1754012330113,
|
||||||
"modifiedTime": 1754143729868,
|
"modifiedTime": 1760209165515,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!71qKDLKO3CsrNkdy.4hJbq9WCwJn78frt"
|
"_key": "!actors.items!71qKDLKO3CsrNkdy.4hJbq9WCwJn78frt"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,7 @@
|
||||||
"_id": "qEn4baWgkjKtmILp",
|
"_id": "qEn4baWgkjKtmILp",
|
||||||
"img": "icons/equipment/shield/shield-round-boss-wood-brown.webp",
|
"img": "icons/equipment/shield/shield-round-boss-wood-brown.webp",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>A creature who tries to move within Very Close range of the Guard must succeed on an Agility Roll. If additional Bladed Guards are standing in a line alongside the f i rst, and each is within Melee range of another guard in the line, the Diffi culty increases by the total number of guards in that line.</p>",
|
"description": "<p>A creature who tries to move within Very Close range of the Guard must succeed on an Agility Roll. If additional Bladed Guards are standing in a line alongside the first, and each is within Melee range of another guard in the line, the Difficulty increases by the total number of guards in that line.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {
|
"actions": {
|
||||||
"3lbeEeJdjzPn0MoG": {
|
"3lbeEeJdjzPn0MoG": {
|
||||||
|
|
@ -305,12 +305,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754012824140,
|
"createdTime": 1754012824140,
|
||||||
"modifiedTime": 1754143793947,
|
"modifiedTime": 1760021165250,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!B4LZcGuBAHzyVdzy.qEn4baWgkjKtmILp"
|
"_key": "!actors.items!B4LZcGuBAHzyVdzy.qEn4baWgkjKtmILp"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -235,7 +235,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Construct can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Construct can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"bay0pyPsCyDEZKuk": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "bay0pyPsCyDEZKuk",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Construct can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -252,12 +285,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754013727085,
|
"createdTime": 1754013727085,
|
||||||
"modifiedTime": 1754013745214,
|
"modifiedTime": 1760032979707,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!uOP5oT9QzXPlnf3p.y3oUmDLGkcSjOO5Q"
|
"_key": "!actors.items!uOP5oT9QzXPlnf3p.y3oUmDLGkcSjOO5Q"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -322,7 +322,7 @@
|
||||||
"difficulty": 14,
|
"difficulty": 14,
|
||||||
"damageMod": "none"
|
"damageMod": "none"
|
||||||
},
|
},
|
||||||
"name": "Use",
|
"name": "Mark Stress",
|
||||||
"img": "icons/magic/control/mouth-smile-deception-purple.webp",
|
"img": "icons/magic/control/mouth-smile-deception-purple.webp",
|
||||||
"range": "close"
|
"range": "close"
|
||||||
}
|
}
|
||||||
|
|
@ -390,12 +390,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754014295058,
|
"createdTime": 1754014295058,
|
||||||
"modifiedTime": 1754143921727,
|
"modifiedTime": 1760209255313,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!CBBuEXAlLKFMJdjg.LYNaKEYcYMgvF4Rf"
|
"_key": "!actors.items!CBBuEXAlLKFMJdjg.LYNaKEYcYMgvF4Rf"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -478,7 +478,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Demon makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Demon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"N0Xx6GnijLXIMGBw": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "N0Xx6GnijLXIMGBw",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Demon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -496,12 +566,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754125078956,
|
"createdTime": 1754125078956,
|
||||||
"modifiedTime": 1754125096421,
|
"modifiedTime": 1760381412185,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!kE4dfhqmIQpNd44e.7qjx1c4C1fUfvXnu"
|
"_key": "!actors.items!kE4dfhqmIQpNd44e.7qjx1c4C1fUfvXnu"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tier": 3,
|
"tier": 3,
|
||||||
"description": "<p>fickle creature of spindly limbs and insatiable desires.</p>",
|
"description": "<p>A fickle creature of spindly limbs and insatiable desires.</p>",
|
||||||
"attack": {
|
"attack": {
|
||||||
"name": "Psychic Assault",
|
"name": "Psychic Assault",
|
||||||
"roll": {
|
"roll": {
|
||||||
|
|
@ -124,12 +124,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753922784249,
|
"createdTime": 1753922784249,
|
||||||
"modifiedTime": 1755385392005,
|
"modifiedTime": 1760381460345,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_id": "SxSOkM4bcVOFyjbo",
|
"_id": "SxSOkM4bcVOFyjbo",
|
||||||
"sort": 3400000,
|
"sort": 3400000,
|
||||||
|
|
|
||||||
|
|
@ -358,7 +358,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Pack makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Pack makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"BApDkAKPfyBkqrKY": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "BApDkAKPfyBkqrKY",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Pack makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -376,12 +446,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754077119018,
|
"createdTime": 1754077119018,
|
||||||
"modifiedTime": 1754077139008,
|
"modifiedTime": 1760211234576,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!NoRZ1PqB8N5wcIw0.3mOBJE5c3cP2cGP1"
|
"_key": "!actors.items!NoRZ1PqB8N5wcIw0.3mOBJE5c3cP2cGP1"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -248,12 +248,13 @@
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "<p>If the Wolf makes a successful standard attack and another Dire Wolf is within Melee range of the target, deal <strong>1d6+5</strong> physical damage instead of their standard damage and you gain a Fear.</p>",
|
"description": "<p>If the Wolf makes a successful standard attack and another Dire Wolf is within Melee range of the target, deal <strong>1d6+5</strong> physical damage instead of their standard damage and you gain a Fear.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "passive",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
"value": null,
|
"value": null,
|
||||||
"max": "",
|
"max": "",
|
||||||
"recovery": null
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
},
|
},
|
||||||
"damage": {
|
"damage": {
|
||||||
"parts": [
|
"parts": [
|
||||||
|
|
@ -330,12 +331,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754044226022,
|
"createdTime": 1754044226022,
|
||||||
"modifiedTime": 1754143967972,
|
"modifiedTime": 1760209346410,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!wNzeuQLfLUMvgHlQ.wQXEnMqrl2jo91oy"
|
"_key": "!actors.items!wNzeuQLfLUMvgHlQ.wQXEnMqrl2jo91oy"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"folder": "7XHlANCPz18yvl5L",
|
"folder": "7XHlANCPz18yvl5L",
|
||||||
"name": "Fallen Warlord: Realm Breaker",
|
"name": "Fallen Warlord: Realm-Breaker",
|
||||||
"type": "adversary",
|
"type": "adversary",
|
||||||
"_id": "hxZ0sgoFJubh5aj6",
|
"_id": "hxZ0sgoFJubh5aj6",
|
||||||
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
"img": "systems/daggerheart/assets/icons/documents/actors/dragon-head.svg",
|
||||||
|
|
@ -263,7 +263,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Realm-Breaker can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Realm-Breaker can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"9IHzeKjP35M5jj3b": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "9IHzeKjP35M5jj3b",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Realm-Breaker can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -281,12 +314,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754134022685,
|
"createdTime": 1754134022685,
|
||||||
"modifiedTime": 1754134047203,
|
"modifiedTime": 1760382854734,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!hxZ0sgoFJubh5aj6.feb6vTfDsi1yQLpn"
|
"_key": "!actors.items!hxZ0sgoFJubh5aj6.feb6vTfDsi1yQLpn"
|
||||||
},
|
},
|
||||||
|
|
@ -744,12 +777,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.0.5",
|
||||||
"createdTime": 1753929378070,
|
"createdTime": 1753929378070,
|
||||||
"modifiedTime": 1755385644142,
|
"modifiedTime": 1760382818455,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors!hxZ0sgoFJubh5aj6"
|
"_key": "!actors!hxZ0sgoFJubh5aj6"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -264,7 +264,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Undefeated Champion can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Undefeated Champion can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"BoDTEH8Y6i9G1d4R": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "BoDTEH8Y6i9G1d4R",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Undefeated Champion can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "2",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -282,12 +315,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754135392829,
|
"createdTime": 1754135392829,
|
||||||
"modifiedTime": 1754135407562,
|
"modifiedTime": 1760382917596,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!RXkZTwBRi4dJ3JE5.ct5vhSsNP25arggo"
|
"_key": "!actors.items!RXkZTwBRi4dJ3JE5.ct5vhSsNP25arggo"
|
||||||
},
|
},
|
||||||
|
|
@ -677,7 +710,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Undefeated Champion makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Undefeated Champion makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"i1Wmh6Mok4Qsur00": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "i1Wmh6Mok4Qsur00",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Undefeated Champion makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -695,12 +798,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754135803929,
|
"createdTime": 1754135803929,
|
||||||
"modifiedTime": 1754135822414,
|
"modifiedTime": 1760382961713,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!RXkZTwBRi4dJ3JE5.ReWtcLE5akrSauI1"
|
"_key": "!actors.items!RXkZTwBRi4dJ3JE5.ReWtcLE5akrSauI1"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -460,7 +460,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Brawler makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Brawler makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"U2AfyadkJluHXA4r": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "U2AfyadkJluHXA4r",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Brawler makes a successful attack against a PC you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -478,12 +548,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754078789986,
|
"createdTime": 1754078789986,
|
||||||
"modifiedTime": 1754078804616,
|
"modifiedTime": 1760380456232,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!YnObCleGjPT7yqEc.B0EniYxyLvjJSqYb"
|
"_key": "!actors.items!YnObCleGjPT7yqEc.B0EniYxyLvjJSqYb"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -234,7 +234,7 @@
|
||||||
},
|
},
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"name": "Horde (1d4+1)",
|
"name": "Horde",
|
||||||
"type": "feature",
|
"type": "feature",
|
||||||
"_id": "9RduwBLYcBaiouYk",
|
"_id": "9RduwBLYcBaiouYk",
|
||||||
"img": "icons/creatures/magical/humanoid-silhouette-aliens-green.webp",
|
"img": "icons/creatures/magical/humanoid-silhouette-aliens-green.webp",
|
||||||
|
|
@ -258,12 +258,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754044549944,
|
"createdTime": 1754044549944,
|
||||||
"modifiedTime": 1754044591579,
|
"modifiedTime": 1760032064905,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!IIWV4ysJPFPnTP7W.9RduwBLYcBaiouYk"
|
"_key": "!actors.items!IIWV4ysJPFPnTP7W.9RduwBLYcBaiouYk"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -270,9 +270,11 @@
|
||||||
"cost": [
|
"cost": [
|
||||||
{
|
{
|
||||||
"scalable": false,
|
"scalable": false,
|
||||||
"key": "stress",
|
"key": "fear",
|
||||||
"value": 1,
|
"value": 1,
|
||||||
"step": null
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
@ -285,7 +287,7 @@
|
||||||
"type": "self",
|
"type": "self",
|
||||||
"amount": null
|
"amount": null
|
||||||
},
|
},
|
||||||
"name": "Mark Stress",
|
"name": "Spend Fear",
|
||||||
"img": "icons/creatures/abilities/tail-strike-bone-orange.webp",
|
"img": "icons/creatures/abilities/tail-strike-bone-orange.webp",
|
||||||
"range": ""
|
"range": ""
|
||||||
}
|
}
|
||||||
|
|
@ -307,12 +309,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754079291678,
|
"createdTime": 1754079291678,
|
||||||
"modifiedTime": 1754142639306,
|
"modifiedTime": 1760380537296,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!5s8wSvpyC5rxY5aD.FMgB28X1LammRInU"
|
"_key": "!actors.items!5s8wSvpyC5rxY5aD.FMgB28X1LammRInU"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -514,7 +514,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Scorpion makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Scorpion makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"1Fn4rvhueQoMXqFc": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "1Fn4rvhueQoMXqFc",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Scorpion makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -531,12 +601,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754047039345,
|
"createdTime": 1754047039345,
|
||||||
"modifiedTime": 1754047066840,
|
"modifiedTime": 1760032201996,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!fmfntuJ8mHRCAktP.TmDpAY5t3PjhEv9K"
|
"_key": "!actors.items!fmfntuJ8mHRCAktP.TmDpAY5t3PjhEv9K"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Gorgon can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Gorgon can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"GSYD7y0ywAqyKUfm": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "GSYD7y0ywAqyKUfm",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Gorgon can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -257,12 +290,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754079428160,
|
"createdTime": 1754079428160,
|
||||||
"modifiedTime": 1754079447238,
|
"modifiedTime": 1760380620538,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!8mJYMpbLTb8qIOrr.OqE6hBijxAkn5gIm"
|
"_key": "!actors.items!8mJYMpbLTb8qIOrr.OqE6hBijxAkn5gIm"
|
||||||
},
|
},
|
||||||
|
|
@ -597,7 +630,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Gorgon makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Gorgon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"V6tkBYSjOt1LZCkp": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "V6tkBYSjOt1LZCkp",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Gorgon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -615,12 +718,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754079744174,
|
"createdTime": 1754079744174,
|
||||||
"modifiedTime": 1754079759538,
|
"modifiedTime": 1760380666298,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!8mJYMpbLTb8qIOrr.IRIaFxFughjXVu0Y"
|
"_key": "!actors.items!8mJYMpbLTb8qIOrr.IRIaFxFughjXVu0Y"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -269,14 +269,14 @@
|
||||||
"name": "Crushing Blows",
|
"name": "Crushing Blows",
|
||||||
"type": "feature",
|
"type": "feature",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Elemental makes a successful attack, the target must mark an Armor Slot without receiving its benefits (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
"description": "<p>When the Elemental makes a successful attack, the target must mark an Armor Slot without receiving its benefi ts (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {
|
"actions": {
|
||||||
"0sXciTiPc30v8czv": {
|
"0sXciTiPc30v8czv": {
|
||||||
"type": "damage",
|
"type": "damage",
|
||||||
"_id": "0sXciTiPc30v8czv",
|
"_id": "0sXciTiPc30v8czv",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "<p>When the Elemental makes a successful attack, the target must mark an Armor Slot without receiving its benefits (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
"description": "<p>When the Elemental makes a successful attack, the target must mark an Armor Slot without receiving its benefi ts (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
|
|
@ -342,12 +342,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.346",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.2",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754127683751,
|
"createdTime": 1754127683751,
|
||||||
"modifiedTime": 1756511006257,
|
"modifiedTime": 1754127795809,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!dsfB3YhoL5SudvS2.NnCkXIuATO0s3tSR"
|
"_key": "!actors.items!dsfB3YhoL5SudvS2.NnCkXIuATO0s3tSR"
|
||||||
},
|
},
|
||||||
|
|
@ -608,7 +608,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"FPIpslusIeVQGdnb": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "FPIpslusIeVQGdnb",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -626,12 +696,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754127921154,
|
"createdTime": 1754127921154,
|
||||||
"modifiedTime": 1754127937379,
|
"modifiedTime": 1760381537218,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!dsfB3YhoL5SudvS2.ag7t5EW358M0qiSL"
|
"_key": "!actors.items!dsfB3YhoL5SudvS2.ag7t5EW358M0qiSL"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -332,7 +332,7 @@
|
||||||
"_id": "YeJ7eJVCKsRxG8mk",
|
"_id": "YeJ7eJVCKsRxG8mk",
|
||||||
"img": "icons/skills/ranged/target-bullseye-arrow-blue.webp",
|
"img": "icons/skills/ranged/target-bullseye-arrow-blue.webp",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>Countdown (5). When the Head Guard is in the spotlight for the fi rst time, activate the countdown. It ticks down when a PC makes an attack roll. When it triggers, all Archer Guards within Far range make a standard attack with advantage against the nearest target within their range. If any attacks succeed on the same target, combine their damage.</p><p>@Template[type:emanation|range:f]</p>",
|
"description": "<p>Countdown (5). When the Head Guard is in the spotlight for the first time, activate the countdown. It ticks down when a PC makes an attack roll. When it triggers, all Archer Guards within Far range make a standard attack with advantage against the nearest target within their range. If any attacks succeed on the same target, combine their damage.</p><p>@Template[type:emanation|range:f]</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
|
|
@ -351,12 +351,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754048119625,
|
"createdTime": 1754048119625,
|
||||||
"modifiedTime": 1754048254827,
|
"modifiedTime": 1760209562267,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!mK3A5FTx6k8iPU3F.YeJ7eJVCKsRxG8mk"
|
"_key": "!actors.items!mK3A5FTx6k8iPU3F.YeJ7eJVCKsRxG8mk"
|
||||||
},
|
},
|
||||||
|
|
@ -368,7 +368,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Head Guard makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Head Guard makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"tD1hAwP6scxXrouw": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "tD1hAwP6scxXrouw",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Head Guard makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -385,12 +455,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754048263819,
|
"createdTime": 1754048263819,
|
||||||
"modifiedTime": 1754048279307,
|
"modifiedTime": 1760209526360,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!mK3A5FTx6k8iPU3F.sd2OlhLchyoqeKke"
|
"_key": "!actors.items!mK3A5FTx6k8iPU3F.sd2OlhLchyoqeKke"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Seraph can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Seraph can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"7oqXSF66R2GlB17O": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "7oqXSF66R2GlB17O",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Seraph can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "2",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -257,12 +290,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754136398491,
|
"createdTime": 1754136398491,
|
||||||
"modifiedTime": 1754136414914,
|
"modifiedTime": 1760383034711,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!r1mbfSSwKWdcFdAU.jUu058IZwt4u2goM"
|
"_key": "!actors.items!r1mbfSSwKWdcFdAU.jUu058IZwt4u2goM"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -275,14 +275,14 @@
|
||||||
"name": "Acidic Form",
|
"name": "Acidic Form",
|
||||||
"type": "feature",
|
"type": "feature",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefits (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefi ts (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {
|
"actions": {
|
||||||
"gtT2oHSyZg9OHHJD": {
|
"gtT2oHSyZg9OHHJD": {
|
||||||
"type": "damage",
|
"type": "damage",
|
||||||
"_id": "gtT2oHSyZg9OHHJD",
|
"_id": "gtT2oHSyZg9OHHJD",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefits (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefi ts (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
|
|
@ -348,12 +348,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.346",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.2",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754129153649,
|
"createdTime": 1754129153649,
|
||||||
"modifiedTime": 1756510982337,
|
"modifiedTime": 1754129204931,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!6hbqmxDXFOzZJDk4.BQsVuuwFYByKwesR"
|
"_key": "!actors.items!6hbqmxDXFOzZJDk4.BQsVuuwFYByKwesR"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -269,7 +269,7 @@
|
||||||
"name": "Relentless (X)",
|
"name": "Relentless (X)",
|
||||||
"type": "feature",
|
"type": "feature",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Hydra can be spotlighted X times per GM turn, where X is the Hydra’s number of heads. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Hydra can be spotlighted X times per GM turn, where X is the Hydra’s number of heads. Spend Fear as usual to spotlight them. <br /><br />Note: Automation is not added so manually spend fear as per text.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
|
|
@ -289,12 +289,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754129556390,
|
"createdTime": 1754129556390,
|
||||||
"modifiedTime": 1754129579457,
|
"modifiedTime": 1760381891609,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!MI126iMOOobQ1Obn.nwIjDjpLGfuXNYvA"
|
"_key": "!actors.items!MI126iMOOobQ1Obn.nwIjDjpLGfuXNYvA"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -302,7 +302,7 @@
|
||||||
"_id": "Mo91w4ccffcmBPt5",
|
"_id": "Mo91w4ccffcmBPt5",
|
||||||
"img": "icons/magic/control/silhouette-hold-beam-blue.webp",
|
"img": "icons/magic/control/silhouette-hold-beam-blue.webp",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>Summon three Jagged Knife Lackeys, who appear at Far range.</p>",
|
"description": "<p>Summon three @Compendium[daggerheart.adversaries.Actor.C0OMQqV7pN6t7ouR], who appear at Far range.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
|
|
@ -321,12 +321,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754049041008,
|
"createdTime": 1754049041008,
|
||||||
"modifiedTime": 1754049075688,
|
"modifiedTime": 1760209967742,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!aTljstqteGoLpCBq.Mo91w4ccffcmBPt5"
|
"_key": "!actors.items!aTljstqteGoLpCBq.Mo91w4ccffcmBPt5"
|
||||||
},
|
},
|
||||||
|
|
@ -478,7 +478,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Lieutenant makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Lieutenant makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"GSjfSgBzyhbVcpbt": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "GSjfSgBzyhbVcpbt",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Lieutenant makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -495,12 +565,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754049157702,
|
"createdTime": 1754049157702,
|
||||||
"modifiedTime": 1754049175516,
|
"modifiedTime": 1760032394994,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!aTljstqteGoLpCBq.uelnRgGStjJ27VtO"
|
"_key": "!actors.items!aTljstqteGoLpCBq.uelnRgGStjJ27VtO"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,8 @@
|
||||||
"experiences": {
|
"experiences": {
|
||||||
"GLqSqPJcyKHQYMtO": {
|
"GLqSqPJcyKHQYMtO": {
|
||||||
"name": "Stealth",
|
"name": "Stealth",
|
||||||
"value": 2
|
"value": 2,
|
||||||
|
"description": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"bonuses": {
|
"bonuses": {
|
||||||
|
|
@ -70,7 +71,7 @@
|
||||||
},
|
},
|
||||||
"tier": 1,
|
"tier": 1,
|
||||||
"description": "<p>A lanky bandit striking from cover with a shortbow.</p>",
|
"description": "<p>A lanky bandit striking from cover with a shortbow.</p>",
|
||||||
"motivesAndTactics": "Ambush, hide, profi t, reposition",
|
"motivesAndTactics": "Ambush, hide, profit, reposition",
|
||||||
"attack": {
|
"attack": {
|
||||||
"name": "Shortbow",
|
"name": "Shortbow",
|
||||||
"img": "icons/weapons/bows/shortbow-leather.webp",
|
"img": "icons/weapons/bows/shortbow-leather.webp",
|
||||||
|
|
@ -123,12 +124,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753922784296,
|
"createdTime": 1753922784296,
|
||||||
"modifiedTime": 1755384539312,
|
"modifiedTime": 1760032469625,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_id": "1zuyof1XuIfi3aMG",
|
"_id": "1zuyof1XuIfi3aMG",
|
||||||
"sort": 300000,
|
"sort": 300000,
|
||||||
|
|
|
||||||
|
|
@ -233,7 +233,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Flickerfly can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Flickerfly can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"FgoP6tlMUxnv5k4Z": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "FgoP6tlMUxnv5k4Z",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Flickerfly can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "2",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -251,12 +284,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754080169421,
|
"createdTime": 1754080169421,
|
||||||
"modifiedTime": 1754080186529,
|
"modifiedTime": 1760380729020,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!MYXmTx2FHcIjdfYZ.6SnqNCeSEY7Q2tSI"
|
"_key": "!actors.items!MYXmTx2FHcIjdfYZ.6SnqNCeSEY7Q2tSI"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Kraken can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Kraken can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"420LQBs27zQTAXfY": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "420LQBs27zQTAXfY",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Kraken can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "2",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -257,12 +290,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754136773170,
|
"createdTime": 1754136773170,
|
||||||
"modifiedTime": 1754136792851,
|
"modifiedTime": 1760383087323,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!4nqv3ZwJGjnmic8j.1YxbPc8C0X64w1JN"
|
"_key": "!actors.items!4nqv3ZwJGjnmic8j.1YxbPc8C0X64w1JN"
|
||||||
},
|
},
|
||||||
|
|
@ -543,9 +576,79 @@
|
||||||
"name": "Momentum",
|
"name": "Momentum",
|
||||||
"type": "feature",
|
"type": "feature",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p> When the Kraken makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Kraken makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"hXQtIGmSaWKMOuFB": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "hXQtIGmSaWKMOuFB",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Kraken makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -563,12 +666,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754137017535,
|
"createdTime": 1754137017535,
|
||||||
"modifiedTime": 1754137033162,
|
"modifiedTime": 1760383121099,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!4nqv3ZwJGjnmic8j.m4aybzb8tXWHelDU"
|
"_key": "!actors.items!4nqv3ZwJGjnmic8j.m4aybzb8tXWHelDU"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -403,7 +403,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p> When the Assassin makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p> When the Assassin makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"7EP5X5kodzMCBQZO": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "7EP5X5kodzMCBQZO",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Assassin makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -421,12 +491,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754081711789,
|
"createdTime": 1754081711789,
|
||||||
"modifiedTime": 1754081721415,
|
"modifiedTime": 1760380850027,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!dNta0cUzr96xcFhf.PcNgHScmTd9l3exN"
|
"_key": "!actors.items!dNta0cUzr96xcFhf.PcNgHScmTd9l3exN"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -596,7 +596,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"zpQIB9z9kK2BlfqZ": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "zpQIB9z9kK2BlfqZ",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -613,12 +683,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754050010657,
|
"createdTime": 1754050010657,
|
||||||
"modifiedTime": 1754050027337,
|
"modifiedTime": 1760032579019,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!sRn4bqerfARvhgSV.JqRfb0IZ3aJrVazI"
|
"_key": "!actors.items!sRn4bqerfARvhgSV.JqRfb0IZ3aJrVazI"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -234,7 +234,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Demon can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Demon can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"lfYFbb71wWaR8DJs": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "lfYFbb71wWaR8DJs",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Demon can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -251,12 +284,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754050072926,
|
"createdTime": 1754050072926,
|
||||||
"modifiedTime": 1754050089194,
|
"modifiedTime": 1760032900622,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!3tqCjDwJAQ7JKqMb.4xoydX3YwsLujuaI"
|
"_key": "!actors.items!3tqCjDwJAQ7JKqMb.4xoydX3YwsLujuaI"
|
||||||
},
|
},
|
||||||
|
|
@ -534,7 +567,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Demon makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Demon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"Cmd4f2gfxgOZsN6f": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "Cmd4f2gfxgOZsN6f",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Demon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -551,12 +654,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754050318009,
|
"createdTime": 1754050318009,
|
||||||
"modifiedTime": 1754050337233,
|
"modifiedTime": 1760032781589,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!3tqCjDwJAQ7JKqMb.w400aHTlADxDihpt"
|
"_key": "!actors.items!3tqCjDwJAQ7JKqMb.w400aHTlADxDihpt"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -235,7 +235,31 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Elemental can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Elemental can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"oFsBEbdXCpX9XLQy": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "oFsBEbdXCpX9XLQy",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Elemental can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -252,12 +276,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754050392983,
|
"createdTime": 1754050392983,
|
||||||
"modifiedTime": 1754050410908,
|
"modifiedTime": 1760032886801,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!DscWkNVoHak6P4hh.c1jcZZD616J5Y4Mb"
|
"_key": "!actors.items!DscWkNVoHak6P4hh.c1jcZZD616J5Y4Mb"
|
||||||
},
|
},
|
||||||
|
|
@ -673,7 +697,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p> When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p> When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"rPj1Wf22Kai3eBCv": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "rPj1Wf22Kai3eBCv",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Elemental makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -690,12 +784,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754050716542,
|
"createdTime": 1754050716542,
|
||||||
"modifiedTime": 1754050733981,
|
"modifiedTime": 1760210142488,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!DscWkNVoHak6P4hh.kssnXljBaV31iX58"
|
"_key": "!actors.items!DscWkNVoHak6P4hh.kssnXljBaV31iX58"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -118,12 +118,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.2",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753922784314,
|
"createdTime": 1753922784314,
|
||||||
"modifiedTime": 1757057641714,
|
"modifiedTime": 1760382572320,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_id": "XK78QUfY8c8Go8Uv",
|
"_id": "XK78QUfY8c8Go8Uv",
|
||||||
"sort": 3400000,
|
"sort": 3400000,
|
||||||
|
|
@ -226,7 +226,263 @@
|
||||||
"appendNumber": false,
|
"appendNumber": false,
|
||||||
"prependAdjective": false
|
"prependAdjective": false
|
||||||
},
|
},
|
||||||
"items": [],
|
"items": [
|
||||||
|
{
|
||||||
|
"name": "Just a Tree",
|
||||||
|
"type": "feature",
|
||||||
|
"system": {
|
||||||
|
"description": "<p>Before they make their first attack in a fight or after they become Hidden the Treant is indistinguishable from other trees until they next act or a PC succeeds on an Instinct Roll to identify them.</p>",
|
||||||
|
"resource": null,
|
||||||
|
"actions": {},
|
||||||
|
"originItemType": null,
|
||||||
|
"multiclassOrigin": false
|
||||||
|
},
|
||||||
|
"_id": "ERco8urSuHgrtnzL",
|
||||||
|
"img": "icons/environment/wilderness/tree-spruce-green.webp",
|
||||||
|
"effects": [],
|
||||||
|
"folder": null,
|
||||||
|
"sort": 0,
|
||||||
|
"ownership": {
|
||||||
|
"default": 0,
|
||||||
|
"fBcTgyTzoARBvohY": 3
|
||||||
|
},
|
||||||
|
"flags": {},
|
||||||
|
"_stats": {
|
||||||
|
"compendiumSource": null,
|
||||||
|
"duplicateSource": null,
|
||||||
|
"exportSource": null,
|
||||||
|
"coreVersion": "13.350",
|
||||||
|
"systemId": "daggerheart",
|
||||||
|
"systemVersion": "1.1.2",
|
||||||
|
"createdTime": 1760381988359,
|
||||||
|
"modifiedTime": 1760382038663,
|
||||||
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
|
},
|
||||||
|
"_key": "!actors.items!XK78QUfY8c8Go8Uv.ERco8urSuHgrtnzL"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Seed Barrage",
|
||||||
|
"type": "feature",
|
||||||
|
"system": {
|
||||||
|
"description": "<p>Mark a Stress and make an attack against up to three targets within Close range pummeling them with giant acorns Targets the Treant succeeds against take <strong>2d10+5</strong> physical damage.</p>",
|
||||||
|
"resource": null,
|
||||||
|
"actions": {
|
||||||
|
"cM5BBUSFxOHBsV2G": {
|
||||||
|
"type": "damage",
|
||||||
|
"_id": "cM5BBUSFxOHBsV2G",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>Mark a Stress and make an attack against up to three targets within Close range pummeling them with giant acorns Targets the Treant succeeds against take <strong>2d10+5</strong> physical damage.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "stress",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
},
|
||||||
|
"flatMultiplier": 2,
|
||||||
|
"dice": "d10",
|
||||||
|
"bonus": 5,
|
||||||
|
"multiplier": "flat"
|
||||||
|
},
|
||||||
|
"applyTo": "hitPoints",
|
||||||
|
"type": [
|
||||||
|
"physical"
|
||||||
|
],
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": 3
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"name": "Mark Stress",
|
||||||
|
"img": "icons/consumables/nuts/nut-spiked-shell.webp",
|
||||||
|
"range": "close"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"originItemType": null,
|
||||||
|
"multiclassOrigin": false
|
||||||
|
},
|
||||||
|
"_id": "Q2slH9qkBO5SPw43",
|
||||||
|
"img": "icons/consumables/nuts/nut-spiked-shell.webp",
|
||||||
|
"effects": [],
|
||||||
|
"folder": null,
|
||||||
|
"sort": 0,
|
||||||
|
"ownership": {
|
||||||
|
"default": 0,
|
||||||
|
"fBcTgyTzoARBvohY": 3
|
||||||
|
},
|
||||||
|
"flags": {},
|
||||||
|
"_stats": {
|
||||||
|
"compendiumSource": null,
|
||||||
|
"duplicateSource": null,
|
||||||
|
"exportSource": null,
|
||||||
|
"coreVersion": "13.350",
|
||||||
|
"systemId": "daggerheart",
|
||||||
|
"systemVersion": "1.1.2",
|
||||||
|
"createdTime": 1760382060546,
|
||||||
|
"modifiedTime": 1760382297884,
|
||||||
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
|
},
|
||||||
|
"_key": "!actors.items!XK78QUfY8c8Go8Uv.Q2slH9qkBO5SPw43"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Take Root",
|
||||||
|
"type": "feature",
|
||||||
|
"system": {
|
||||||
|
"description": "<p><strong>Mark a Stress</strong> to Root the Treant in place. The Treant is Restrained while Rooted and can end this effect instead of moving while they are spotlighted. While Rooted the Treant has resistance to physical damage.</p>",
|
||||||
|
"resource": null,
|
||||||
|
"actions": {
|
||||||
|
"008EelRlcs6CKGvM": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "008EelRlcs6CKGvM",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p><strong>Mark a Stress</strong> to Root the Treant in place. The Treant is Restrained while Rooted and can end this effect instead of moving while they are spotlighted. While Rooted the Treant has resistance to physical damage.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "stress",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [
|
||||||
|
{
|
||||||
|
"_id": "3PY5KIG6d3dr3dty",
|
||||||
|
"onSave": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Mark Stress",
|
||||||
|
"img": "icons/consumables/plants/thorned-stem-brown.webp",
|
||||||
|
"range": "self"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"originItemType": null,
|
||||||
|
"multiclassOrigin": false
|
||||||
|
},
|
||||||
|
"_id": "sqkgw26P2KiQVtXT",
|
||||||
|
"img": "icons/consumables/plants/thorned-stem-brown.webp",
|
||||||
|
"effects": [
|
||||||
|
{
|
||||||
|
"name": "Take Root",
|
||||||
|
"img": "icons/consumables/plants/thorned-stem-brown.webp",
|
||||||
|
"origin": "Compendium.daggerheart.adversaries.Actor.XK78QUfY8c8Go8Uv.Item.sqkgw26P2KiQVtXT",
|
||||||
|
"transfer": false,
|
||||||
|
"_id": "3PY5KIG6d3dr3dty",
|
||||||
|
"type": "base",
|
||||||
|
"system": {
|
||||||
|
"rangeDependence": {
|
||||||
|
"enabled": false,
|
||||||
|
"type": "withinRange",
|
||||||
|
"target": "any",
|
||||||
|
"range": "self"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"changes": [
|
||||||
|
{
|
||||||
|
"key": "system.resistance.physical.resistance",
|
||||||
|
"mode": 2,
|
||||||
|
"value": "1",
|
||||||
|
"priority": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"disabled": false,
|
||||||
|
"duration": {
|
||||||
|
"startTime": null,
|
||||||
|
"combat": null,
|
||||||
|
"seconds": null,
|
||||||
|
"rounds": null,
|
||||||
|
"turns": null,
|
||||||
|
"startRound": null,
|
||||||
|
"startTurn": null
|
||||||
|
},
|
||||||
|
"description": "<p><strong>Mark a Stress</strong> to Root the Treant in place. The Treant is Restrained while Rooted and can end this effect instead of moving while they are spotlighted. While Rooted the Treant has resistance to physical damage.</p>",
|
||||||
|
"tint": "#ffffff",
|
||||||
|
"statuses": [],
|
||||||
|
"sort": 0,
|
||||||
|
"flags": {},
|
||||||
|
"_stats": {
|
||||||
|
"compendiumSource": null,
|
||||||
|
"duplicateSource": null,
|
||||||
|
"exportSource": null,
|
||||||
|
"coreVersion": "13.350",
|
||||||
|
"systemId": "daggerheart",
|
||||||
|
"systemVersion": "1.1.2",
|
||||||
|
"createdTime": 1760382462603,
|
||||||
|
"modifiedTime": 1760382500728,
|
||||||
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
|
},
|
||||||
|
"_key": "!actors.items.effects!XK78QUfY8c8Go8Uv.sqkgw26P2KiQVtXT.3PY5KIG6d3dr3dty"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"folder": null,
|
||||||
|
"sort": 0,
|
||||||
|
"ownership": {
|
||||||
|
"default": 0,
|
||||||
|
"fBcTgyTzoARBvohY": 3
|
||||||
|
},
|
||||||
|
"flags": {},
|
||||||
|
"_stats": {
|
||||||
|
"compendiumSource": null,
|
||||||
|
"duplicateSource": null,
|
||||||
|
"exportSource": null,
|
||||||
|
"coreVersion": "13.350",
|
||||||
|
"systemId": "daggerheart",
|
||||||
|
"systemVersion": "1.1.2",
|
||||||
|
"createdTime": 1760382346850,
|
||||||
|
"modifiedTime": 1760382517980,
|
||||||
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
|
},
|
||||||
|
"_key": "!actors.items!XK78QUfY8c8Go8Uv.sqkgw26P2KiQVtXT"
|
||||||
|
}
|
||||||
|
],
|
||||||
"effects": [],
|
"effects": [],
|
||||||
"_key": "!actors!XK78QUfY8c8Go8Uv"
|
"_key": "!actors!XK78QUfY8c8Go8Uv"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -244,7 +244,64 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Zombie takes Major or greater damage, they mark an additional HP.</p>",
|
"description": "<p>When the Zombie takes Major or greater damage, they mark an additional HP.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"Y8LQe5TzbdK2mOG9": {
|
||||||
|
"type": "damage",
|
||||||
|
"_id": "Y8LQe5TzbdK2mOG9",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "hitPoints",
|
||||||
|
"type": [
|
||||||
|
"physical"
|
||||||
|
],
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"name": "Mark HP",
|
||||||
|
"img": "icons/commodities/biological/hand-clawed-tan.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -261,12 +318,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754051427428,
|
"createdTime": 1754051427428,
|
||||||
"modifiedTime": 1754051450294,
|
"modifiedTime": 1760208951573,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!EQTOAOUrkIvS2z88.rEJ1kAfhHQZWhrZj"
|
"_key": "!actors.items!EQTOAOUrkIvS2z88.rEJ1kAfhHQZWhrZj"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -510,7 +510,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Captain makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Captain makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"78Qphxjbs7cOYsNf": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "78Qphxjbs7cOYsNf",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Captain makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "action",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -527,12 +597,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754052246000,
|
"createdTime": 1754052246000,
|
||||||
"modifiedTime": 1754052257935,
|
"modifiedTime": 1760033187578,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!OROJbjsqagVh7ECV.V4EcsqMd70BTrDNu"
|
"_key": "!actors.items!OROJbjsqagVh7ECV.V4EcsqMd70BTrDNu"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -234,7 +234,7 @@
|
||||||
},
|
},
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"name": "Horde (1d4+1)",
|
"name": "Horde",
|
||||||
"type": "feature",
|
"type": "feature",
|
||||||
"_id": "Q7DRbWjHl64CNwag",
|
"_id": "Q7DRbWjHl64CNwag",
|
||||||
"img": "icons/creatures/magical/humanoid-silhouette-aliens-green.webp",
|
"img": "icons/creatures/magical/humanoid-silhouette-aliens-green.webp",
|
||||||
|
|
@ -258,12 +258,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754052315770,
|
"createdTime": 1754052315770,
|
||||||
"modifiedTime": 1754052347985,
|
"modifiedTime": 1760033213944,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!5YgEajn0wa4i85kC.Q7DRbWjHl64CNwag"
|
"_key": "!actors.items!5YgEajn0wa4i85kC.Q7DRbWjHl64CNwag"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -480,7 +480,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Captain makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Captain makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"tZKpqKdehnPxRsOc": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "tZKpqKdehnPxRsOc",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Captain makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -498,12 +568,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754084396019,
|
"createdTime": 1754084396019,
|
||||||
"modifiedTime": 1754084409095,
|
"modifiedTime": 1760380981818,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!65cSO3EQEh6ZH6Xk.b9wn9oVMne8E1OYx"
|
"_key": "!actors.items!65cSO3EQEh6ZH6Xk.b9wn9oVMne8E1OYx"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -455,7 +455,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Spellblade makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Spellblade makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"f4AulN6MeMaEvqbk": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "f4AulN6MeMaEvqbk",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Spellblade makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -472,12 +542,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754054217134,
|
"createdTime": 1754054217134,
|
||||||
"modifiedTime": 1754054233931,
|
"modifiedTime": 1760210893024,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!ldbWEL7uZs84vyrR.P9nD5K2ztkZGo2I8"
|
"_key": "!actors.items!ldbWEL7uZs84vyrR.P9nD5K2ztkZGo2I8"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -535,12 +535,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754085059319,
|
"createdTime": 1754085059319,
|
||||||
"modifiedTime": 1756256613353,
|
"modifiedTime": 1761503879335,
|
||||||
"lastModifiedBy": "CEZZA7TXd7uT8O2c"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!3aAS2Qm3R6cgaYfE.9Z0i0uURfBMVIapJ"
|
"_key": "!actors.items!3aAS2Qm3R6cgaYfE.9Z0i0uURfBMVIapJ"
|
||||||
},
|
},
|
||||||
|
|
@ -550,7 +550,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Stonewraith makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Stonewraith makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"IIZPctjF4MJkWs4b": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "IIZPctjF4MJkWs4b",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Stonewraith makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -568,12 +638,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754085161530,
|
"createdTime": 1754085161530,
|
||||||
"modifiedTime": 1754085176471,
|
"modifiedTime": 1760381032018,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!3aAS2Qm3R6cgaYfE.faM1UzclP0X3ZrkJ"
|
"_key": "!actors.items!3aAS2Qm3R6cgaYfE.faM1UzclP0X3ZrkJ"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -229,14 +229,14 @@
|
||||||
"_id": "WpOh5kHHx7lcTvEY",
|
"_id": "WpOh5kHHx7lcTvEY",
|
||||||
"img": "icons/magic/acid/dissolve-drip-droplet-smoke.webp",
|
"img": "icons/magic/acid/dissolve-drip-droplet-smoke.webp",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefits (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefi ts (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {
|
"actions": {
|
||||||
"HfK0u0c7NRppuF1Q": {
|
"HfK0u0c7NRppuF1Q": {
|
||||||
"type": "damage",
|
"type": "damage",
|
||||||
"_id": "HfK0u0c7NRppuF1Q",
|
"_id": "HfK0u0c7NRppuF1Q",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefits (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
"description": "<p>When the Ooze makes a successful attack, the target must mark an Armor Slot without receiving its benefi ts (they can still use armor to reduce the damage). If they can’t mark an Armor Slot, they must mark an additional HP.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
|
|
@ -301,12 +301,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.346",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.2",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754055148507,
|
"createdTime": 1754055148507,
|
||||||
"modifiedTime": 1756510967769,
|
"modifiedTime": 1754145130460,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!aLkLFuVoKz2NLoBK.WpOh5kHHx7lcTvEY"
|
"_key": "!actors.items!aLkLFuVoKz2NLoBK.WpOh5kHHx7lcTvEY"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -500,7 +500,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Sentinel makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Sentinel makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"AtXg38fItOgiYUee": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "AtXg38fItOgiYUee",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Sentinel makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -518,12 +588,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754130991279,
|
"createdTime": 1754130991279,
|
||||||
"modifiedTime": 1754131007959,
|
"modifiedTime": 1760382661323,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!FVgYb28fhxlVcGwA.N4446BxubUanUQHH"
|
"_key": "!actors.items!FVgYb28fhxlVcGwA.N4446BxubUanUQHH"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -253,7 +253,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Ashen Tyrant can be spotlighted up to four times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Ashen Tyrant can be spotlighted up to four times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"cvhKUhLycuEeloKH": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "cvhKUhLycuEeloKH",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Ashen Tyrant can be spotlighted up to four times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "3",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -271,12 +304,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754139608923,
|
"createdTime": 1754139608923,
|
||||||
"modifiedTime": 1754139627030,
|
"modifiedTime": 1760383226391,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!pMuXGCSOQaxpi5tb.saz3Vr0xgfAl10tU"
|
"_key": "!actors.items!pMuXGCSOQaxpi5tb.saz3Vr0xgfAl10tU"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -253,7 +253,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Molten Scourge can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Molten Scourge can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"ngzXlah4Lv3eK6i5": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "ngzXlah4Lv3eK6i5",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Molten Scourge can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "2",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -271,12 +304,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754140232475,
|
"createdTime": 1754140232475,
|
||||||
"modifiedTime": 1754140255711,
|
"modifiedTime": 1760383290639,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!eArAPuB38CNR0ZIM.DVtxHnbvNDz2POSD"
|
"_key": "!actors.items!eArAPuB38CNR0ZIM.DVtxHnbvNDz2POSD"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -251,9 +251,42 @@
|
||||||
"name": "Relentless (2)",
|
"name": "Relentless (2)",
|
||||||
"type": "feature",
|
"type": "feature",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Molten Scourge marks their last HP, replace them with the Ashen Tyrant and immediately spotlight them.</p>",
|
"description": "<p>The Obsidian Predator can be spotlighted up to two times per GM turn Spend Fear as usual to spotlight them</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"XuhmupOVJj8ae6q0": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "XuhmupOVJj8ae6q0",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Obsidian Predator can be spotlighted up to two times per GM turn Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -271,12 +304,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754140957019,
|
"createdTime": 1754140957019,
|
||||||
"modifiedTime": 1754140976241,
|
"modifiedTime": 1760383384636,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!ladm7wykhZczYzrQ.hnr2drwGFJAXRJLo"
|
"_key": "!actors.items!ladm7wykhZczYzrQ.hnr2drwGFJAXRJLo"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
},
|
},
|
||||||
"tier": 1,
|
"tier": 1,
|
||||||
"description": "<p>A master-at-arms wielding a sword twice their size.</p>",
|
"description": "<p>A master-at-arms wielding a sword twice their size.</p>",
|
||||||
"motivesAndTactics": "Act fi rst, aim for the weakest, intimidate",
|
"motivesAndTactics": "Act first, aim for the weakest, intimidate",
|
||||||
"attack": {
|
"attack": {
|
||||||
"roll": {
|
"roll": {
|
||||||
"bonus": 2,
|
"bonus": 2,
|
||||||
|
|
@ -118,12 +118,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753922784373,
|
"createdTime": 1753922784373,
|
||||||
"modifiedTime": 1755384941263,
|
"modifiedTime": 1760210942230,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_id": "ZNbQ2jg35LG4t9eH",
|
"_id": "ZNbQ2jg35LG4t9eH",
|
||||||
"sort": 3800000,
|
"sort": 3800000,
|
||||||
|
|
@ -542,7 +542,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Weaponmaster makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Weaponmaster makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"jeKcXbdw8gPF4OQA": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "jeKcXbdw8gPF4OQA",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Weaponmaster makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -559,12 +629,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754055804370,
|
"createdTime": 1754055804370,
|
||||||
"modifiedTime": 1754055820896,
|
"modifiedTime": 1760210973953,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!ZNbQ2jg35LG4t9eH.oYNVPQOy5oQli5Il"
|
"_key": "!actors.items!ZNbQ2jg35LG4t9eH.oYNVPQOy5oQli5Il"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -445,7 +445,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Dryad makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Dryad makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"9MGyAjWtLbDz8Znu": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "9MGyAjWtLbDz8Znu",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Dryad makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"subType": null,
|
"subType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
|
|
@ -462,12 +532,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754056082977,
|
"createdTime": 1754056082977,
|
||||||
"modifiedTime": 1754056099954,
|
"modifiedTime": 1760211015186,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!8yUj2Mzvnifhxegm.4f79icB7Dd1xLEZQ"
|
"_key": "!actors.items!8yUj2Mzvnifhxegm.4f79icB7Dd1xLEZQ"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Dragon can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Dragon can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"cmZsrUJa9FJ8gZKP": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "cmZsrUJa9FJ8gZKP",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Dragon can be spotlighted up to three times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "2",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -257,12 +290,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754131459641,
|
"createdTime": 1754131459641,
|
||||||
"modifiedTime": 1754131476300,
|
"modifiedTime": 1760382728777,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!UGPiPLJsPvMTSKEF.lsHoXHZ452axhyEr"
|
"_key": "!actors.items!UGPiPLJsPvMTSKEF.lsHoXHZ452axhyEr"
|
||||||
},
|
},
|
||||||
|
|
@ -681,12 +714,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754131703390,
|
"createdTime": 1754131703390,
|
||||||
"modifiedTime": 1756256581072,
|
"modifiedTime": 1761503909714,
|
||||||
"lastModifiedBy": "CEZZA7TXd7uT8O2c"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!UGPiPLJsPvMTSKEF.CcRTxCDCJskiu3fI"
|
"_key": "!actors.items!UGPiPLJsPvMTSKEF.CcRTxCDCJskiu3fI"
|
||||||
},
|
},
|
||||||
|
|
@ -839,7 +872,77 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>When the Dragon makes a successful attack against a PC, you gain a Fear.</p>",
|
"description": "<p>When the Dragon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"5V5SDnUBg9dQOkLW": {
|
||||||
|
"type": "healing",
|
||||||
|
"_id": "5V5SDnUBg9dQOkLW",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>When the Dragon makes a successful attack against a PC, you gain a Fear.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "reaction",
|
||||||
|
"cost": [],
|
||||||
|
"uses": {
|
||||||
|
"value": null,
|
||||||
|
"max": "",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "fear",
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"roll": {
|
||||||
|
"type": null,
|
||||||
|
"trait": null,
|
||||||
|
"difficulty": null,
|
||||||
|
"bonus": null,
|
||||||
|
"advState": "neutral",
|
||||||
|
"diceRolling": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"compare": null,
|
||||||
|
"treshold": null
|
||||||
|
},
|
||||||
|
"useDefault": false
|
||||||
|
},
|
||||||
|
"name": "Gain Fear",
|
||||||
|
"img": "icons/skills/melee/strike-weapons-orange.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -857,12 +960,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754131943438,
|
"createdTime": 1754131943438,
|
||||||
"modifiedTime": 1754131956104,
|
"modifiedTime": 1760382767009,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!UGPiPLJsPvMTSKEF.QHdJgT2fvwqquyf7"
|
"_key": "!actors.items!UGPiPLJsPvMTSKEF.QHdJgT2fvwqquyf7"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -351,7 +351,40 @@
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>The Legion can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
"description": "<p>The Legion can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {
|
||||||
|
"IACoLeO6VmnK0qkW": {
|
||||||
|
"type": "effect",
|
||||||
|
"_id": "IACoLeO6VmnK0qkW",
|
||||||
|
"systemPath": "actions",
|
||||||
|
"description": "<p>The Legion can be spotlighted up to two times per GM turn. Spend Fear as usual to spotlight them.</p>",
|
||||||
|
"chatDisplay": true,
|
||||||
|
"actionType": "passive",
|
||||||
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "fear",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uses": {
|
||||||
|
"value": 0,
|
||||||
|
"max": "1",
|
||||||
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"effects": [],
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": null
|
||||||
|
},
|
||||||
|
"name": "Spotlight: Relentless",
|
||||||
|
"img": "icons/magic/unholy/silhouette-evil-horned-giant.webp",
|
||||||
|
"range": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
"originId": null
|
"originId": null
|
||||||
},
|
},
|
||||||
|
|
@ -369,12 +402,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754132968589,
|
"createdTime": 1754132968589,
|
||||||
"modifiedTime": 1754132983591,
|
"modifiedTime": 1760383453524,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!YhJrP7rTBiRdX5Fp.fCYLZKeTn0YSpVDI"
|
"_key": "!actors.items!YhJrP7rTBiRdX5Fp.fCYLZKeTn0YSpVDI"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "D7EE2L2Y96nfrfTW",
|
"_id": "D7EE2L2Y96nfrfTW",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>When you fail a roll that utilized one of your Experiences, you can <strong>mark a Stress</strong> to reroll.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753997402776,
|
"createdTime": 1753997402776,
|
||||||
"modifiedTime": 1755394506059,
|
"modifiedTime": 1761138322948,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!BNofV1UC4ZbdFTkb"
|
"_key": "!items!BNofV1UC4ZbdFTkb"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@
|
||||||
"startRound": null,
|
"startRound": null,
|
||||||
"startTurn": null
|
"startTurn": null
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "<p>During a rest, you can drop into a trance to choose an additional downtime move.</p>",
|
||||||
"origin": null,
|
"origin": null,
|
||||||
"tint": "#ffffff",
|
"tint": "#ffffff",
|
||||||
"transfer": true,
|
"transfer": true,
|
||||||
|
|
@ -66,12 +66,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753994586602,
|
"createdTime": 1753994586602,
|
||||||
"modifiedTime": 1753994613702,
|
"modifiedTime": 1761137891643,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!TfolXWFG2W2hx6sK.LqQvZJJLNMnFkt1D"
|
"_key": "!items.effects!TfolXWFG2W2hx6sK.LqQvZJJLNMnFkt1D"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "damage",
|
"type": "damage",
|
||||||
"_id": "KLg0T6I1w24sfIbH",
|
"_id": "KLg0T6I1w24sfIbH",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>When you succeed on an Agility Roll to move from Far or Very Far range into Melee range with one or more targets, you can <strong>mark a Stress</strong> to deal <strong>1d12</strong> physical damage to all targets within Melee range.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -64,7 +64,7 @@
|
||||||
"amount": null
|
"amount": null
|
||||||
},
|
},
|
||||||
"effects": [],
|
"effects": [],
|
||||||
"name": "Damage",
|
"name": "Deal Damage",
|
||||||
"img": "icons/magic/movement/trail-streak-impact-blue.webp",
|
"img": "icons/magic/movement/trail-streak-impact-blue.webp",
|
||||||
"range": ""
|
"range": ""
|
||||||
}
|
}
|
||||||
|
|
@ -89,12 +89,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753995559143,
|
"createdTime": 1753995559143,
|
||||||
"modifiedTime": 1755394400787,
|
"modifiedTime": 1761138130084,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!AA2CZlJSWW8GPhrR"
|
"_key": "!items!AA2CZlJSWW8GPhrR"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "V2K3pMWOCVwBUnjq",
|
"_id": "V2K3pMWOCVwBUnjq",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>Once per rest, <strong>mark a Stress</strong> to force an adversary to reroll an attack against you or an ally within Very Close range.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753997061290,
|
"createdTime": 1753997061290,
|
||||||
"modifiedTime": 1755394466678,
|
"modifiedTime": 1761138260496,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!AXqcoxnRoWBbbKpK"
|
"_key": "!items!AXqcoxnRoWBbbKpK"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "0RdKeWfbPRTHcAMf",
|
"_id": "0RdKeWfbPRTHcAMf",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>While touching a corpse that died recently, you can <strong>mark a Stress</strong> to extract one memory from the corpse related to a specific emotion or sensation of your choice.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753996213198,
|
"createdTime": 1753996213198,
|
||||||
"modifiedTime": 1755394413905,
|
"modifiedTime": 1761138171389,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!WuwXH2r2uM9sDJtj"
|
"_key": "!items!WuwXH2r2uM9sDJtj"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
{
|
{
|
||||||
"key": "system.advantageSources",
|
"key": "system.advantageSources",
|
||||||
"mode": 2,
|
"mode": 2,
|
||||||
"value": "Rolls to intimidate hostile creatures",
|
"value": "Dread Visage: Rolls to intimidate hostile creatures",
|
||||||
"priority": null
|
"priority": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -60,12 +60,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754000031619,
|
"createdTime": 1754000031619,
|
||||||
"modifiedTime": 1754000179466,
|
"modifiedTime": 1761138386730,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!i92lYjDhVB0LyPid.2Gd6iHQX521aAZqC"
|
"_key": "!items.effects!i92lYjDhVB0LyPid.2Gd6iHQX521aAZqC"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@
|
||||||
"startRound": null,
|
"startRound": null,
|
||||||
"startTurn": null
|
"startTurn": null
|
||||||
},
|
},
|
||||||
"description": "<p><span style=\"color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;display:inline !important;float:none\">When you take a short rest, you can choose a long rest move instead of a short rest move.</span></p>",
|
"description": "<p>When you take a short rest, you can choose a long rest move instead of a short rest move.</p>",
|
||||||
"origin": null,
|
"origin": null,
|
||||||
"tint": "#ffffff",
|
"tint": "#ffffff",
|
||||||
"transfer": true,
|
"transfer": true,
|
||||||
|
|
@ -66,12 +66,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753993852553,
|
"createdTime": 1753993852553,
|
||||||
"modifiedTime": 1753993889097,
|
"modifiedTime": 1761137607063,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!2xlqKOkDxWHbuj4t.EEryWN2nE33ppGHi"
|
"_key": "!items.effects!2xlqKOkDxWHbuj4t.EEryWN2nE33ppGHi"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
},
|
},
|
||||||
"effects": [
|
"effects": [
|
||||||
{
|
{
|
||||||
"name": "Base",
|
"name": "Endurance",
|
||||||
"type": "base",
|
"type": "base",
|
||||||
"_id": "db8W2Q0Qty84XV0x",
|
"_id": "db8W2Q0Qty84XV0x",
|
||||||
"img": "icons/magic/control/buff-strength-muscle-damage.webp",
|
"img": "icons/magic/control/buff-strength-muscle-damage.webp",
|
||||||
|
|
@ -60,12 +60,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753996768847,
|
"createdTime": 1753996768847,
|
||||||
"modifiedTime": 1754310930764,
|
"modifiedTime": 1761138203999,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!tXWEMdLXafUSZTbK.db8W2Q0Qty84XV0x"
|
"_key": "!items.effects!tXWEMdLXafUSZTbK.db8W2Q0Qty84XV0x"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "G1H7k5RdvS1EJgFu",
|
"_id": "G1H7k5RdvS1EJgFu",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>When you roll with Fear, you can <strong>mark 2 Stress</strong> to change it into a roll with Hope instead.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753999842518,
|
"createdTime": 1753999842518,
|
||||||
"modifiedTime": 1755394522944,
|
"modifiedTime": 1761138348732,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!IlWvn5kCqCBMuUJn"
|
"_key": "!items!IlWvn5kCqCBMuUJn"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "ALsGHOy0q5THGxz5",
|
"_id": "ALsGHOy0q5THGxz5",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>When you make an Agility Roll, you can <strong>spend 2 Hope</strong> to reroll your Hope Die.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754000245487,
|
"createdTime": 1754000245487,
|
||||||
"modifiedTime": 1755394539445,
|
"modifiedTime": 1761138403613,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!lNgbbYnCKgrdvA85"
|
"_key": "!items!lNgbbYnCKgrdvA85"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"_id": "ZYfigAyUdDUteczO",
|
"_id": "ZYfigAyUdDUteczO",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>Make an <strong>Instinct Roll (12)</strong> to use your mycelial array to speak with others of your ancestry. On a success, you can communicate across any distance.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
|
|
@ -75,12 +75,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753996087513,
|
"createdTime": 1753996087513,
|
||||||
"modifiedTime": 1755394420289,
|
"modifiedTime": 1761138154960,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!9tmeXm623hl4Qnws"
|
"_key": "!items!9tmeXm623hl4Qnws"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "pFPbjyexOPx5gog6",
|
"_id": "pFPbjyexOPx5gog6",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p><strong>Spend 3 Hope</strong> to halve incoming physical damage.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753994395837,
|
"createdTime": 1753994395837,
|
||||||
"modifiedTime": 1755394316666,
|
"modifiedTime": 1761137852259,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!0RN0baBxh95GT1cm"
|
"_key": "!items!0RN0baBxh95GT1cm"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,19 @@
|
||||||
"type": "damage",
|
"type": "damage",
|
||||||
"_id": "bXbQ57CB1Hfj5XrS",
|
"_id": "bXbQ57CB1Hfj5XrS",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>When you succeed on an attack against a target within Melee range, you can <strong>mark a Stress</strong> to kick yourself off them, dealing an extra <strong>2d6</strong> damage and knocking back either yourself or the target to Very Close range.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "stress",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"uses": {
|
"uses": {
|
||||||
"value": null,
|
"value": null,
|
||||||
"max": "",
|
"max": "",
|
||||||
|
|
@ -26,11 +35,11 @@
|
||||||
{
|
{
|
||||||
"value": {
|
"value": {
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": true,
|
"enabled": false,
|
||||||
"formula": "2d6"
|
"formula": ""
|
||||||
},
|
},
|
||||||
"multiplier": "prof",
|
"multiplier": "flat",
|
||||||
"flatMultiplier": 1,
|
"flatMultiplier": 2,
|
||||||
"dice": "d6",
|
"dice": "d6",
|
||||||
"bonus": null
|
"bonus": null
|
||||||
},
|
},
|
||||||
|
|
@ -44,7 +53,8 @@
|
||||||
"dice": "d6",
|
"dice": "d6",
|
||||||
"bonus": null,
|
"bonus": null,
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": false
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -56,7 +66,7 @@
|
||||||
"amount": null
|
"amount": null
|
||||||
},
|
},
|
||||||
"effects": [],
|
"effects": [],
|
||||||
"name": "Damage",
|
"name": "Deal Damage",
|
||||||
"img": "icons/skills/melee/shield-damaged-broken-gold.webp",
|
"img": "icons/skills/melee/shield-damaged-broken-gold.webp",
|
||||||
"range": "melee"
|
"range": "melee"
|
||||||
}
|
}
|
||||||
|
|
@ -81,12 +91,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753995249173,
|
"createdTime": 1753995249173,
|
||||||
"modifiedTime": 1755394376321,
|
"modifiedTime": 1761139310352,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!gpW19TfJk0WWFh1S"
|
"_key": "!items!gpW19TfJk0WWFh1S"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"_id": "MhAWv7tuvkfOf7wQ",
|
"_id": "MhAWv7tuvkfOf7wQ",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>You can use your long tongue to grab onto things within Close range. <strong>Mark a Stress</strong> to use your tongue as a Finesse Close weapon that deals <strong>d12</strong> physical damage using your Proficiency.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -82,7 +82,7 @@
|
||||||
"difficulty": null,
|
"difficulty": null,
|
||||||
"damageMod": "none"
|
"damageMod": "none"
|
||||||
},
|
},
|
||||||
"name": "Attack",
|
"name": "Mark Stress",
|
||||||
"img": "icons/commodities/biological/tongue-violet.webp",
|
"img": "icons/commodities/biological/tongue-violet.webp",
|
||||||
"range": "close"
|
"range": "close"
|
||||||
}
|
}
|
||||||
|
|
@ -107,12 +107,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754000791839,
|
"createdTime": 1754000791839,
|
||||||
"modifiedTime": 1755394583397,
|
"modifiedTime": 1761138622800,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!oWbdlh51ajn1Q5kL"
|
"_key": "!items!oWbdlh51ajn1Q5kL"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "l1wUmqMzG8YF9sqb",
|
"_id": "l1wUmqMzG8YF9sqb",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>Once per session, after you or a willing ally within Close range makes an action roll, you can <strong>spend 3 Hope</strong> to reroll the Duality Dice.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"type": "friendly",
|
"type": "friendly",
|
||||||
"amount": null
|
"amount": null
|
||||||
},
|
},
|
||||||
"name": "Use",
|
"name": "Spend Hope",
|
||||||
"img": "icons/magic/control/buff-luck-fortune-green-gold.webp",
|
"img": "icons/magic/control/buff-luck-fortune-green-gold.webp",
|
||||||
"range": "close"
|
"range": "close"
|
||||||
}
|
}
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753994658436,
|
"createdTime": 1753994658436,
|
||||||
"modifiedTime": 1755394357635,
|
"modifiedTime": 1761138006341,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!U6iFjZgLYawlOlQZ"
|
"_key": "!items!U6iFjZgLYawlOlQZ"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "healing",
|
"type": "healing",
|
||||||
"_id": "8sK3t73bFkpb999C",
|
"_id": "8sK3t73bFkpb999C",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>At the start of each session, everyone in your party gains a Hope.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
|
|
@ -96,12 +96,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753997164653,
|
"createdTime": 1753997164653,
|
||||||
"modifiedTime": 1755394482641,
|
"modifiedTime": 1761138289388,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!8O6SQQMxKWr430QA"
|
"_key": "!items!8O6SQQMxKWr430QA"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
"_id": "g6I4tRUQNgL4vZ6H",
|
"_id": "g6I4tRUQNgL4vZ6H",
|
||||||
"img": "icons/tools/scribal/lens-blue.webp",
|
"img": "icons/tools/scribal/lens-blue.webp",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p>Decide who made you and for what purpose. At character creation, choose one of your Experiences that best aligns with this purpose and gain a permanent +1 bonus to it.</p>",
|
"description": "<p><strong>Note: Automation not implemented for permanent bonus. Manually increase the experience in the respective editing field.</strong> </p><p><br />Decide who made you and for what purpose. At character creation, choose one of your Experiences that best aligns with this purpose and gain a permanent +1 bonus to it.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {},
|
"actions": {},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
|
|
@ -28,12 +28,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753993755899,
|
"createdTime": 1753993755899,
|
||||||
"modifiedTime": 1755394275281,
|
"modifiedTime": 1761137758590,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!g6I4tRUQNgL4vZ6H"
|
"_key": "!items!g6I4tRUQNgL4vZ6H"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "6Av1Y8JXWDkteLhc",
|
"_id": "6Av1Y8JXWDkteLhc",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p><strong>Mark a Stress</strong> to gain advantage on a reaction roll.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -58,12 +58,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753994522468,
|
"createdTime": 1753994522468,
|
||||||
"modifiedTime": 1755394348185,
|
"modifiedTime": 1761137904802,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!0NSPSuB8KSEYTJIP"
|
"_key": "!items!0NSPSuB8KSEYTJIP"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
"_id": "UFR67BUOhNGLFyg9",
|
"_id": "UFR67BUOhNGLFyg9",
|
||||||
"img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp",
|
"img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp",
|
||||||
"system": {
|
"system": {
|
||||||
"description": "<p><strong>Mark a Stress</strong> to retract into your shell. While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.</p>",
|
"description": "<p><strong>Mark a Stress</strong> to retract into your shell. While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.<br /><br />(When marked, manually enable the retract effect in effects tab and mark disadvantage when doing any action rolls)</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {
|
"actions": {
|
||||||
"HfiAg14hrYt7Yvnj": {
|
"HfiAg14hrYt7Yvnj": {
|
||||||
|
|
@ -15,13 +15,27 @@
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [
|
||||||
|
{
|
||||||
|
"scalable": false,
|
||||||
|
"key": "stress",
|
||||||
|
"value": 1,
|
||||||
|
"keyIsID": false,
|
||||||
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"uses": {
|
"uses": {
|
||||||
"value": null,
|
"value": null,
|
||||||
"max": "",
|
"max": "",
|
||||||
"recovery": null
|
"recovery": null
|
||||||
},
|
},
|
||||||
"effects": [],
|
"effects": [
|
||||||
|
{
|
||||||
|
"_id": "3V4FPoyjJUnFP9WS",
|
||||||
|
"onSave": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"target": {
|
"target": {
|
||||||
"type": "self",
|
"type": "self",
|
||||||
"amount": null
|
"amount": null
|
||||||
|
|
@ -42,10 +56,12 @@
|
||||||
},
|
},
|
||||||
"effects": [
|
"effects": [
|
||||||
{
|
{
|
||||||
"name": "Base",
|
"name": "Retract",
|
||||||
"type": "base",
|
|
||||||
"_id": "KoHQg8KurugHlga0",
|
|
||||||
"img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp",
|
"img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp",
|
||||||
|
"origin": "Compendium.daggerheart.ancestries.Item.UFR67BUOhNGLFyg9",
|
||||||
|
"transfer": false,
|
||||||
|
"_id": "3V4FPoyjJUnFP9WS",
|
||||||
|
"type": "base",
|
||||||
"system": {
|
"system": {
|
||||||
"rangeDependence": {
|
"rangeDependence": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
|
|
@ -64,11 +80,11 @@
|
||||||
{
|
{
|
||||||
"key": "system.disadvantageSources",
|
"key": "system.disadvantageSources",
|
||||||
"mode": 2,
|
"mode": 2,
|
||||||
"value": "Action Rolls",
|
"value": "Retract",
|
||||||
"priority": null
|
"priority": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"disabled": true,
|
"disabled": false,
|
||||||
"duration": {
|
"duration": {
|
||||||
"startTime": null,
|
"startTime": null,
|
||||||
"combat": null,
|
"combat": null,
|
||||||
|
|
@ -78,10 +94,8 @@
|
||||||
"startRound": null,
|
"startRound": null,
|
||||||
"startTurn": null
|
"startTurn": null
|
||||||
},
|
},
|
||||||
"description": "<p><span style=\"color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;display:inline !important;float:none\">While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.</span></p>",
|
"description": "<p>While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.</p>",
|
||||||
"origin": null,
|
|
||||||
"tint": "#ffffff",
|
"tint": "#ffffff",
|
||||||
"transfer": true,
|
|
||||||
"statuses": [],
|
"statuses": [],
|
||||||
"sort": 0,
|
"sort": 0,
|
||||||
"flags": {},
|
"flags": {},
|
||||||
|
|
@ -89,14 +103,14 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.347",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753996568678,
|
"createdTime": 1759960447341,
|
||||||
"modifiedTime": 1753996633306,
|
"modifiedTime": 1759961484642,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!UFR67BUOhNGLFyg9.KoHQg8KurugHlga0"
|
"_key": "!items.effects!UFR67BUOhNGLFyg9.3V4FPoyjJUnFP9WS"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"sort": 0,
|
"sort": 0,
|
||||||
|
|
@ -111,10 +125,10 @@
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.347",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.0",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753996513763,
|
"createdTime": 1753996513763,
|
||||||
"modifiedTime": 1756040910699,
|
"modifiedTime": 1759961925987,
|
||||||
"lastModifiedBy": "vUIbuan0U50nfKBE"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!UFR67BUOhNGLFyg9"
|
"_key": "!items!UFR67BUOhNGLFyg9"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"_id": "LcFhDb3sJk8sraAc",
|
"_id": "LcFhDb3sJk8sraAc",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>Make an <strong>Agility Roll</strong> to scratch a target within Melee range. On a success, they become temporarily Vulnerable.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
|
|
@ -127,12 +127,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754000306620,
|
"createdTime": 1754000306620,
|
||||||
"modifiedTime": 1755394546895,
|
"modifiedTime": 1761138426560,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!Zj69cAeb3NjIa8Hn"
|
"_key": "!items!Zj69cAeb3NjIa8Hn"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
},
|
},
|
||||||
"effects": [
|
"effects": [
|
||||||
{
|
{
|
||||||
"name": "Base",
|
"name": "Scales",
|
||||||
"type": "base",
|
"type": "base",
|
||||||
"_id": "b6Pkwwk7pgBeeUTe",
|
"_id": "b6Pkwwk7pgBeeUTe",
|
||||||
"img": "icons/commodities/leather/scales-brown.webp",
|
"img": "icons/commodities/leather/scales-brown.webp",
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"startRound": null,
|
"startRound": null,
|
||||||
"startTurn": null
|
"startTurn": null
|
||||||
},
|
},
|
||||||
"description": "<p><span style=\"color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;display:inline !important;float:none\">When you would take Severe damage, you can </span><span style=\"box-sizing:border-box;scrollbar-width:thin;scrollbar-color:rgb(93, 20, 43) rgba(0, 0, 0, 0);color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial\">mark a Stress</span><span style=\"color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;display:inline !important;float:none\"> to mark 1 fewer Hit Points.</span></p>",
|
"description": "<p>When you would take Severe damage, you can mark a Stress to mark 1 fewer Hit Points.</p>",
|
||||||
"origin": null,
|
"origin": null,
|
||||||
"tint": "#ffffff",
|
"tint": "#ffffff",
|
||||||
"transfer": true,
|
"transfer": true,
|
||||||
|
|
@ -60,12 +60,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753993993682,
|
"createdTime": 1753993993682,
|
||||||
"modifiedTime": 1753994027257,
|
"modifiedTime": 1761137949459,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!u8ZhV962rNmUlzkp.b6Pkwwk7pgBeeUTe"
|
"_key": "!items.effects!u8ZhV962rNmUlzkp.b6Pkwwk7pgBeeUTe"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"startRound": null,
|
"startRound": null,
|
||||||
"startTurn": null
|
"startTurn": null
|
||||||
},
|
},
|
||||||
"description": "<p><span style=\"color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;display:inline !important;float:none\">When you take Minor damage, you can </span><span style=\"box-sizing:border-box;scrollbar-width:thin;scrollbar-color:rgb(93, 20, 43) rgba(0, 0, 0, 0);color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial\">mark 2 Stress</span><span style=\"color:rgb(239, 230, 216);font-family:Montserrat, sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;orphans:2;text-align:start;text-indent:0px;text-transform:none;widows:2;word-spacing:0px;-webkit-text-stroke-width:0px;white-space:normal;background-color:rgba(24, 22, 46, 0.376);text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;display:inline !important;float:none\"> instead of marking a Hit Point.</span></p>",
|
"description": "<p>When you take Minor damage, you can mark 2 Stress instead of marking a Hit Point.</p>",
|
||||||
"origin": null,
|
"origin": null,
|
||||||
"tint": "#ffffff",
|
"tint": "#ffffff",
|
||||||
"transfer": true,
|
"transfer": true,
|
||||||
|
|
@ -60,12 +60,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753994342724,
|
"createdTime": 1753994342724,
|
||||||
"modifiedTime": 1753994373197,
|
"modifiedTime": 1761137921157,
|
||||||
"lastModifiedBy": "MQSznptE5yLT7kj8"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!S0Ww7pYOSREt8qKg.4Lc40mNnRInTKMC5"
|
"_key": "!items.effects!S0Ww7pYOSREt8qKg.4Lc40mNnRInTKMC5"
|
||||||
}
|
}
|
||||||
|
|
@ -80,12 +80,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753994247261,
|
"createdTime": 1753994247261,
|
||||||
"modifiedTime": 1755394307516,
|
"modifiedTime": 1761506267107,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!S0Ww7pYOSREt8qKg"
|
"_key": "!items!S0Ww7pYOSREt8qKg"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,11 +8,11 @@
|
||||||
"description": "<p>When you succeed on an attack against a target within Melee range, you can <strong>spend a Hope</strong> to gore the target with your tusks, dealing an extra <strong>1d6</strong> damage.</p>",
|
"description": "<p>When you succeed on an attack against a target within Melee range, you can <strong>spend a Hope</strong> to gore the target with your tusks, dealing an extra <strong>1d6</strong> damage.</p>",
|
||||||
"resource": null,
|
"resource": null,
|
||||||
"actions": {
|
"actions": {
|
||||||
"1n4ZsA6s2iBAL1tG": {
|
"ytSFDCONRi5L4THz": {
|
||||||
"type": "effect",
|
"type": "damage",
|
||||||
"_id": "1n4ZsA6s2iBAL1tG",
|
"_id": "ytSFDCONRi5L4THz",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>When you succeed on an attack against a target within Melee range, you can <strong>spend a Hope</strong> to gore the target with your tusks, dealing an extra <strong>1d6</strong> damage.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -20,22 +20,55 @@
|
||||||
"key": "hope",
|
"key": "hope",
|
||||||
"value": 1,
|
"value": 1,
|
||||||
"scalable": false,
|
"scalable": false,
|
||||||
"step": null
|
"step": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"uses": {
|
"uses": {
|
||||||
"value": null,
|
"value": null,
|
||||||
"max": "",
|
"max": "",
|
||||||
"recovery": null
|
"recovery": null,
|
||||||
|
"consumeOnSuccess": false
|
||||||
|
},
|
||||||
|
"damage": {
|
||||||
|
"parts": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"flatMultiplier": 1
|
||||||
|
},
|
||||||
|
"applyTo": "hitPoints",
|
||||||
|
"type": [],
|
||||||
|
"base": false,
|
||||||
|
"resultBased": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includeBase": false
|
||||||
|
},
|
||||||
|
"target": {
|
||||||
|
"type": "any",
|
||||||
|
"amount": 1
|
||||||
},
|
},
|
||||||
"effects": [],
|
"effects": [],
|
||||||
"target": {
|
|
||||||
"type": "self",
|
|
||||||
"amount": null
|
|
||||||
},
|
|
||||||
"name": "Spend Hope",
|
"name": "Spend Hope",
|
||||||
"img": "icons/creatures/abilities/fang-tooth-blood-red.webp",
|
"img": "icons/creatures/abilities/fang-tooth-blood-red.webp",
|
||||||
"range": ""
|
"range": "melee"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"originItemType": null,
|
"originItemType": null,
|
||||||
|
|
@ -116,12 +149,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754000611682,
|
"createdTime": 1754000611682,
|
||||||
"modifiedTime": 1755394557399,
|
"modifiedTime": 1761138569638,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!YhxD1ujZpftPu19w"
|
"_key": "!items!YhxD1ujZpftPu19w"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "effect",
|
"type": "effect",
|
||||||
"_id": "dpKxkDSjXsP8kHMI",
|
"_id": "dpKxkDSjXsP8kHMI",
|
||||||
"systemPath": "actions",
|
"systemPath": "actions",
|
||||||
"description": "",
|
"description": "<p>You can fly. While flying, you can <strong>mark a Stress</strong> after an adversary makes an attack against you to gain a +2 bonus to your Evasion against that attack.</p>",
|
||||||
"chatDisplay": true,
|
"chatDisplay": true,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [
|
"cost": [
|
||||||
|
|
@ -110,12 +110,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.0",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753994723305,
|
"createdTime": 1753994723305,
|
||||||
"modifiedTime": 1756040981649,
|
"modifiedTime": 1761138022348,
|
||||||
"lastModifiedBy": "vUIbuan0U50nfKBE"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!WquAjoOcso8lwySW"
|
"_key": "!items!WquAjoOcso8lwySW"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,14 +13,14 @@
|
||||||
},
|
},
|
||||||
"mainTrait": "strength",
|
"mainTrait": "strength",
|
||||||
"advantageOn": {
|
"advantageOn": {
|
||||||
"mX0DbTDuWAIpAGYq": {
|
"4AbCgOZvyUFH9Pug": {
|
||||||
"value": "Armadillo"
|
"value": "Dig"
|
||||||
},
|
},
|
||||||
"0VGGQOhVOoNpZfdJ": {
|
"8GsRyXaQnfsGNGW6": {
|
||||||
"value": "Pangolin"
|
"value": "Locate"
|
||||||
},
|
},
|
||||||
"6v6bkfKevJrn3YHf": {
|
"0ut15QizNIG254Vw": {
|
||||||
"value": "Turtle"
|
"value": "Protect"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"features": [
|
"features": [
|
||||||
|
|
@ -130,12 +130,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753580987168,
|
"createdTime": 1753580987168,
|
||||||
"modifiedTime": 1755395295538,
|
"modifiedTime": 1761502671010,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_id": "8pUHJv3BYdjA4Qdf",
|
"_id": "8pUHJv3BYdjA4Qdf",
|
||||||
"sort": 100000,
|
"sort": 100000,
|
||||||
|
|
|
||||||
|
|
@ -62,13 +62,13 @@
|
||||||
{
|
{
|
||||||
"key": "system.traits.strength.value",
|
"key": "system.traits.strength.value",
|
||||||
"mode": 2,
|
"mode": 2,
|
||||||
"value": "1",
|
"value": "3",
|
||||||
"priority": null
|
"priority": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "system.evasion",
|
"key": "system.evasion",
|
||||||
"mode": 2,
|
"mode": 2,
|
||||||
"value": "3",
|
"value": "1",
|
||||||
"priority": null
|
"priority": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -111,11 +111,11 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"lastModifiedBy": "FecEtPuoQh6MpjQ0",
|
"lastModifiedBy": "fBcTgyTzoARBvohY",
|
||||||
"modifiedTime": 1753636973034
|
"modifiedTime": 1761503222813
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!m8BVTuJI1wCvzTcf.AZGTvqzFVHa4wS1a"
|
"_key": "!items.effects!m8BVTuJI1wCvzTcf.AZGTvqzFVHa4wS1a"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -32,16 +32,18 @@
|
||||||
"resultBased": false,
|
"resultBased": false,
|
||||||
"value": {
|
"value": {
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": true,
|
"enabled": false,
|
||||||
"formula": "(@prof+2)@basicAttackDamageDice"
|
"formula": ""
|
||||||
},
|
},
|
||||||
"multiplier": "prof",
|
"multiplier": "prof",
|
||||||
"flatMultiplier": 1,
|
"dice": "d8",
|
||||||
"dice": "d6",
|
"bonus": 6,
|
||||||
"bonus": null
|
"flatMultiplier": 1
|
||||||
},
|
},
|
||||||
"applyTo": "hitPoints",
|
"applyTo": "hitPoints",
|
||||||
"type": [],
|
"type": [
|
||||||
|
"physical"
|
||||||
|
],
|
||||||
"base": false,
|
"base": false,
|
||||||
"valueAlt": {
|
"valueAlt": {
|
||||||
"multiplier": "prof",
|
"multiplier": "prof",
|
||||||
|
|
@ -49,9 +51,64 @@
|
||||||
"dice": "d6",
|
"dice": "d6",
|
||||||
"bonus": null,
|
"bonus": null,
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": false
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"resultBased": false,
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
},
|
||||||
|
"multiplier": "flat",
|
||||||
|
"flatMultiplier": 2,
|
||||||
|
"dice": "d8",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "hitPoints",
|
||||||
|
"type": [
|
||||||
|
"physical"
|
||||||
|
],
|
||||||
|
"base": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"resultBased": false,
|
||||||
|
"value": {
|
||||||
|
"custom": {
|
||||||
|
"enabled": true,
|
||||||
|
"formula": "1"
|
||||||
|
},
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null
|
||||||
|
},
|
||||||
|
"applyTo": "stress",
|
||||||
|
"base": false,
|
||||||
|
"valueAlt": {
|
||||||
|
"multiplier": "prof",
|
||||||
|
"flatMultiplier": 1,
|
||||||
|
"dice": "d6",
|
||||||
|
"bonus": null,
|
||||||
|
"custom": {
|
||||||
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
|
|
@ -150,12 +207,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.0",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753621786000,
|
"createdTime": 1753621786000,
|
||||||
"modifiedTime": 1756041242273,
|
"modifiedTime": 1762341337917,
|
||||||
"lastModifiedBy": "vUIbuan0U50nfKBE"
|
"lastModifiedBy": "9HOfUKAXuCu7hUPY"
|
||||||
},
|
},
|
||||||
"_id": "0ey4kM9ssj2otHvb",
|
"_id": "0ey4kM9ssj2otHvb",
|
||||||
"sort": 600000,
|
"sort": 600000,
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
},
|
},
|
||||||
"effects": [],
|
"effects": [],
|
||||||
"folder": null,
|
"folder": null,
|
||||||
"sort": 0,
|
"sort": 737500,
|
||||||
"ownership": {
|
"ownership": {
|
||||||
"default": 0,
|
"default": 0,
|
||||||
"Q9NoTaEarn3VMS6Z": 3
|
"Q9NoTaEarn3VMS6Z": 3
|
||||||
|
|
@ -83,12 +83,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.2",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754351482530,
|
"createdTime": 1754351482530,
|
||||||
"modifiedTime": 1756398795596,
|
"modifiedTime": 1760018751908,
|
||||||
"lastModifiedBy": "gbAAZWyczKwejDNh"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!5ZnlJ5bEoyOTkUJv"
|
"_key": "!items!5ZnlJ5bEoyOTkUJv"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
},
|
},
|
||||||
"effects": [],
|
"effects": [],
|
||||||
"folder": null,
|
"folder": null,
|
||||||
"sort": 0,
|
"sort": 743750,
|
||||||
"ownership": {
|
"ownership": {
|
||||||
"default": 0,
|
"default": 0,
|
||||||
"Q9NoTaEarn3VMS6Z": 3
|
"Q9NoTaEarn3VMS6Z": 3
|
||||||
|
|
@ -91,12 +91,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.2",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1754349743129,
|
"createdTime": 1754349743129,
|
||||||
"modifiedTime": 1756398741027,
|
"modifiedTime": 1760018753854,
|
||||||
"lastModifiedBy": "gbAAZWyczKwejDNh"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!DchOzHcWIJE9FKcR"
|
"_key": "!items!DchOzHcWIJE9FKcR"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -124,11 +124,12 @@
|
||||||
"resultBased": false,
|
"resultBased": false,
|
||||||
"value": {
|
"value": {
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": false
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
},
|
},
|
||||||
"multiplier": "flat",
|
"multiplier": "flat",
|
||||||
"flatMultiplier": 2,
|
"flatMultiplier": 2,
|
||||||
"dice": "d6",
|
"dice": "d8",
|
||||||
"bonus": 3
|
"bonus": 3
|
||||||
},
|
},
|
||||||
"applyTo": "hitPoints",
|
"applyTo": "hitPoints",
|
||||||
|
|
@ -142,7 +143,8 @@
|
||||||
"dice": "d6",
|
"dice": "d6",
|
||||||
"bonus": null,
|
"bonus": null,
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": false
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -190,12 +192,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.1.0",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753922784438,
|
"createdTime": 1753922784438,
|
||||||
"modifiedTime": 1756038512929,
|
"modifiedTime": 1761502767190,
|
||||||
"lastModifiedBy": "vUIbuan0U50nfKBE"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_id": "rZPH0BY8Sznc9sFG",
|
"_id": "rZPH0BY8Sznc9sFG",
|
||||||
"sort": 3400000,
|
"sort": 3400000,
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
"bonus": null,
|
"bonus": null,
|
||||||
"advState": "neutral",
|
"advState": "neutral",
|
||||||
"diceRolling": {
|
"diceRolling": {
|
||||||
"multiplier": "prof",
|
"multiplier": "flat",
|
||||||
"flatMultiplier": 1,
|
"flatMultiplier": 1,
|
||||||
"dice": "d8",
|
"dice": "d8",
|
||||||
"compare": null,
|
"compare": null,
|
||||||
|
|
@ -75,12 +75,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753922784506,
|
"createdTime": 1753922784506,
|
||||||
"modifiedTime": 1755427506566,
|
"modifiedTime": 1761502476899,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_id": "GEhBUmv9Bj7oJfHk",
|
"_id": "GEhBUmv9Bj7oJfHk",
|
||||||
"sort": 3400000,
|
"sort": 3400000,
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@
|
||||||
},
|
},
|
||||||
"changes": [
|
"changes": [
|
||||||
{
|
{
|
||||||
"key": "system.resources.hitPoints",
|
"key": "system.resources.hitPoints.max",
|
||||||
"mode": 2,
|
"mode": 2,
|
||||||
"value": "1",
|
"value": "1",
|
||||||
"priority": null
|
"priority": null
|
||||||
|
|
@ -110,12 +110,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754245866724,
|
"createdTime": 1754245866724,
|
||||||
"modifiedTime": 1754246004543,
|
"modifiedTime": 1761502808129,
|
||||||
"lastModifiedBy": "l5jB3XmcVXOTQpRZ"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!sWUlSPOJEaXyQLCj.1jtgIyFvDpTb0asZ"
|
"_key": "!items.effects!sWUlSPOJEaXyQLCj.1jtgIyFvDpTb0asZ"
|
||||||
},
|
},
|
||||||
|
|
@ -136,7 +136,7 @@
|
||||||
},
|
},
|
||||||
"changes": [
|
"changes": [
|
||||||
{
|
{
|
||||||
"key": "system.resources.stress",
|
"key": "system.resources.stress.max",
|
||||||
"mode": 2,
|
"mode": 2,
|
||||||
"value": "1",
|
"value": "1",
|
||||||
"priority": null
|
"priority": null
|
||||||
|
|
@ -161,12 +161,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.346",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754245912530,
|
"createdTime": 1754245912530,
|
||||||
"modifiedTime": 1754245972468,
|
"modifiedTime": 1761502816888,
|
||||||
"lastModifiedBy": "l5jB3XmcVXOTQpRZ"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!sWUlSPOJEaXyQLCj.vj9rm1tLqqsSFOXF"
|
"_key": "!items.effects!sWUlSPOJEaXyQLCj.vj9rm1tLqqsSFOXF"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -257,12 +257,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1754217019442,
|
"createdTime": 1754217019442,
|
||||||
"modifiedTime": 1756256534443,
|
"modifiedTime": 1761503937038,
|
||||||
"lastModifiedBy": "CEZZA7TXd7uT8O2c"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!actors.items!acMu9wJrMZZzLSTJ.jkm03DXYYajsRk2j"
|
"_key": "!actors.items!acMu9wJrMZZzLSTJ.jkm03DXYYajsRk2j"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -43,12 +43,13 @@
|
||||||
"parts": [
|
"parts": [
|
||||||
{
|
{
|
||||||
"value": {
|
"value": {
|
||||||
"dice": "d4",
|
"dice": "d6",
|
||||||
"bonus": 5,
|
"bonus": 5,
|
||||||
"multiplier": "prof",
|
"multiplier": "prof",
|
||||||
"flatMultiplier": 1,
|
"flatMultiplier": 1,
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": false
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type": [
|
"type": [
|
||||||
|
|
@ -62,7 +63,8 @@
|
||||||
"dice": "d6",
|
"dice": "d6",
|
||||||
"bonus": null,
|
"bonus": null,
|
||||||
"custom": {
|
"custom": {
|
||||||
"enabled": false
|
"enabled": false,
|
||||||
|
"formula": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"base": false
|
"base": false
|
||||||
|
|
@ -110,12 +112,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.1.2",
|
||||||
"createdTime": 1753795089792,
|
"createdTime": 1753795089792,
|
||||||
"modifiedTime": 1755430416538,
|
"modifiedTime": 1761503058944,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items!Lsvocst8aGqkBj7g"
|
"_key": "!items!Lsvocst8aGqkBj7g"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -143,12 +143,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753794875150,
|
"createdTime": 1753794875150,
|
||||||
"modifiedTime": 1756682958806,
|
"modifiedTime": 1761503813916,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!hiEOGF2reabGLUoi.i5HfkF5aKQuUCTEG"
|
"_key": "!items.effects!hiEOGF2reabGLUoi.i5HfkF5aKQuUCTEG"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -143,12 +143,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753794098464,
|
"createdTime": 1753794098464,
|
||||||
"modifiedTime": 1756682973559,
|
"modifiedTime": 1761503800669,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!DlinEBGZfIlvreO3.cXWSV50apzaNQkdA"
|
"_key": "!items.effects!DlinEBGZfIlvreO3.cXWSV50apzaNQkdA"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -143,12 +143,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753796983285,
|
"createdTime": 1753796983285,
|
||||||
"modifiedTime": 1756682777682,
|
"modifiedTime": 1761503825366,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!A28WL9E2lJ3iLZHW.Z2p00q5h6x6seXys"
|
"_key": "!items.effects!A28WL9E2lJ3iLZHW.Z2p00q5h6x6seXys"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@
|
||||||
"effects": [
|
"effects": [
|
||||||
{
|
{
|
||||||
"name": "Protective",
|
"name": "Protective",
|
||||||
"description": "<p>Add the item's Tier to your Armor Score.</p>",
|
"description": "<p>Add the item's Tier to your Armor Score</p>",
|
||||||
"img": "icons/skills/melee/shield-block-gray-orange.webp",
|
"img": "icons/skills/melee/shield-block-gray-orange.webp",
|
||||||
"changes": [
|
"changes": [
|
||||||
{
|
{
|
||||||
|
|
@ -143,12 +143,12 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.348",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "0.0.1",
|
||||||
"createdTime": 1753794114980,
|
"createdTime": 1753794114980,
|
||||||
"modifiedTime": 1756682994216,
|
"modifiedTime": 1761503774632,
|
||||||
"lastModifiedBy": "mdk78Q6pOyHh6aBg"
|
"lastModifiedBy": "fBcTgyTzoARBvohY"
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!mxwWKDujgsRcZWPT.M70a81e0Mg66jHRL"
|
"_key": "!items.effects!mxwWKDujgsRcZWPT.M70a81e0Mg66jHRL"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -101,8 +101,8 @@
|
||||||
"rangeDependence": {
|
"rangeDependence": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"type": "withinRange",
|
"type": "withinRange",
|
||||||
"target": "hostile",
|
"target": "any",
|
||||||
"range": "melee"
|
"range": "self"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"changes": [
|
"changes": [
|
||||||
|
|
@ -132,11 +132,11 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"lastModifiedBy": "vUIbuan0U50nfKBE",
|
"lastModifiedBy": "fBcTgyTzoARBvohY",
|
||||||
"modifiedTime": 1756035533156
|
"modifiedTime": 1761503576186
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!dPcqKN5NeDkjB1HW.EY87mY6ULfIt3XC8"
|
"_key": "!items.effects!dPcqKN5NeDkjB1HW.EY87mY6ULfIt3XC8"
|
||||||
},
|
},
|
||||||
|
|
@ -151,8 +151,8 @@
|
||||||
"rangeDependence": {
|
"rangeDependence": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"type": "withinRange",
|
"type": "withinRange",
|
||||||
"target": "hostile",
|
"target": "any",
|
||||||
"range": "melee"
|
"range": "self"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"changes": [
|
"changes": [
|
||||||
|
|
@ -188,11 +188,11 @@
|
||||||
"compendiumSource": null,
|
"compendiumSource": null,
|
||||||
"duplicateSource": null,
|
"duplicateSource": null,
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.350",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "0.0.1",
|
"systemVersion": "1.1.2",
|
||||||
"lastModifiedBy": "vUIbuan0U50nfKBE",
|
"lastModifiedBy": "fBcTgyTzoARBvohY",
|
||||||
"modifiedTime": 1756035536128
|
"modifiedTime": 1761503563924
|
||||||
},
|
},
|
||||||
"_key": "!items.effects!dPcqKN5NeDkjB1HW.WwibpgaO6Kkks7aZ"
|
"_key": "!items.effects!dPcqKN5NeDkjB1HW.WwibpgaO6Kkks7aZ"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue