Merge branch 'main' into feature/beastform-compendium

This commit is contained in:
WBHarry 2025-07-27 19:26:59 +02:00
commit f5a4d8cf94
98 changed files with 4329 additions and 1065 deletions

View file

@ -80,8 +80,8 @@ Hooks.once('init', () => {
Items.registerSheet(SYSTEM.id, applications.sheets.items.Subclass, { types: ['subclass'], makeDefault: true }); Items.registerSheet(SYSTEM.id, applications.sheets.items.Subclass, { types: ['subclass'], makeDefault: true });
Items.registerSheet(SYSTEM.id, applications.sheets.items.Feature, { types: ['feature'], makeDefault: true }); Items.registerSheet(SYSTEM.id, applications.sheets.items.Feature, { types: ['feature'], makeDefault: true });
Items.registerSheet(SYSTEM.id, applications.sheets.items.DomainCard, { types: ['domainCard'], makeDefault: true }); Items.registerSheet(SYSTEM.id, applications.sheets.items.DomainCard, { types: ['domainCard'], makeDefault: true });
Items.registerSheet(SYSTEM.id, applications.sheets.items.Miscellaneous, { Items.registerSheet(SYSTEM.id, applications.sheets.items.Loot, {
types: ['miscellaneous'], types: ['loot'],
makeDefault: true makeDefault: true
}); });
Items.registerSheet(SYSTEM.id, applications.sheets.items.Consumable, { types: ['consumable'], makeDefault: true }); Items.registerSheet(SYSTEM.id, applications.sheets.items.Consumable, { types: ['consumable'], makeDefault: true });

View file

@ -8,7 +8,7 @@
"feature": "Feature", "feature": "Feature",
"domainCard": "Domain Card", "domainCard": "Domain Card",
"consumable": "Consumable", "consumable": "Consumable",
"miscellaneous": "Miscellaneous", "loot": "Loot",
"weapon": "Weapon", "weapon": "Weapon",
"armor": "Armor", "armor": "Armor",
"beastform": "Beastform" "beastform": "Beastform"

View file

@ -110,6 +110,7 @@ export default class DHActionConfig extends DaggerheartSheet(ApplicationV2) {
context.costOptions = this.getCostOptions(); context.costOptions = this.getCostOptions();
context.disableOption = this.disableOption.bind(this); context.disableOption = this.disableOption.bind(this);
context.isNPC = this.action.actor?.isNPC; context.isNPC = this.action.actor?.isNPC;
context.baseSaveDifficulty = this.action.actor?.baseSaveDifficulty;
context.hasRoll = this.action.hasRoll; context.hasRoll = this.action.hasRoll;
const settingsTiers = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers).tiers; const settingsTiers = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers).tiers;

View file

@ -55,7 +55,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
}, },
{ {
handler: CharacterSheet.#getItemContextOptions, handler: CharacterSheet.#getItemContextOptions,
selector: '[data-item-uuid][data-type="consumable"], [data-item-uuid][data-type="miscellaneous"]', selector: '[data-item-uuid][data-type="consumable"], [data-item-uuid][data-type="loot"]',
options: { options: {
parentClassHooks: false, parentClassHooks: false,
fixed: true fixed: true
@ -311,7 +311,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
icon: 'fa-solid fa-hands', icon: 'fa-solid fa-hands',
condition: target => { condition: target => {
const doc = getDocFromElementSync(target); const doc = getDocFromElementSync(target);
return doc && system.equipped; return doc && doc.system.equipped;
}, },
callback: (target, event) => CharacterSheet.#toggleEquipItem.call(this, event, target) callback: (target, event) => CharacterSheet.#toggleEquipItem.call(this, event, target)
} }
@ -325,7 +325,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
} }
/** /**
* Get the set of ContextMenu options for Consumable and Miscellaneous. * Get the set of ContextMenu options for Consumable and Loot.
* @returns {import('@client/applications/ux/context-menu.mjs').ContextMenuEntry[]} - The Array of context options passed to the ContextMenu instance * @returns {import('@client/applications/ux/context-menu.mjs').ContextMenuEntry[]} - The Array of context options passed to the ContextMenu instance
* @this {CharacterSheet} * @this {CharacterSheet}
* @protected * @protected

View file

@ -6,6 +6,6 @@ export { default as Community } from './community.mjs';
export { default as Consumable } from './consumable.mjs'; export { default as Consumable } from './consumable.mjs';
export { default as DomainCard } from './domainCard.mjs'; export { default as DomainCard } from './domainCard.mjs';
export { default as Feature } from './feature.mjs'; export { default as Feature } from './feature.mjs';
export { default as Miscellaneous } from './miscellaneous.mjs'; export { default as Loot } from './loot.mjs';
export { default as Subclass } from './subclass.mjs'; export { default as Subclass } from './subclass.mjs';
export { default as Weapon } from './weapon.mjs'; export { default as Weapon } from './weapon.mjs';

View file

@ -132,14 +132,14 @@ export default class ClassSheet extends DHBaseItemSheet {
}); });
} }
} else if (target.classList.contains('choice-a-section')) { } else if (target.classList.contains('choice-a-section')) {
if (item.type === 'miscellaneous' || item.type === 'consumable') { if (item.type === 'loot' || item.type === 'consumable') {
const filteredChoiceA = this.document.system.inventory.choiceA; const filteredChoiceA = this.document.system.inventory.choiceA;
if (filteredChoiceA.length < 2) if (filteredChoiceA.length < 2)
await this.document.update({ await this.document.update({
'system.inventory.choiceA': [...filteredChoiceA.map(x => x.uuid), item.uuid] 'system.inventory.choiceA': [...filteredChoiceA.map(x => x.uuid), item.uuid]
}); });
} }
} else if (item.type === 'miscellaneous') { } else if (item.type === 'loot') {
if (target.classList.contains('take-section')) { if (target.classList.contains('take-section')) {
const filteredTake = this.document.system.inventory.take.filter(x => x); const filteredTake = this.document.system.inventory.take.filter(x => x);
if (filteredTake.length < 3) if (filteredTake.length < 3)

View file

@ -1,15 +1,15 @@
import DHBaseItemSheet from '../api/base-item.mjs'; import DHBaseItemSheet from '../api/base-item.mjs';
export default class MiscellaneousSheet extends DHBaseItemSheet { export default class LootSheet extends DHBaseItemSheet {
/**@inheritdoc */ /**@inheritdoc */
static DEFAULT_OPTIONS = { static DEFAULT_OPTIONS = {
classes: ['miscellaneous'], classes: ['loot'],
position: { width: 550 } position: { width: 550 }
}; };
/**@override */ /**@override */
static PARTS = { static PARTS = {
header: { template: 'systems/daggerheart/templates/sheets/items/miscellaneous/header.hbs' }, header: { template: 'systems/daggerheart/templates/sheets/items/loot/header.hbs' },
tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' }, tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' },
description: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-description.hbs' }, description: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-description.hbs' },
actions: { actions: {
@ -17,7 +17,7 @@ export default class MiscellaneousSheet extends DHBaseItemSheet {
scrollable: ['.actions'] scrollable: ['.actions']
}, },
settings: { settings: {
template: 'systems/daggerheart/templates/sheets/items/miscellaneous/settings.hbs', template: 'systems/daggerheart/templates/sheets/items/loot/settings.hbs',
scrollable: ['.settings'] scrollable: ['.settings']
}, },
effects: { effects: {

View file

@ -1301,9 +1301,9 @@ export const featureTypes = {
id: 'consumable', id: 'consumable',
label: 'TYPES.Item.consumable' label: 'TYPES.Item.consumable'
}, },
miscellaneous: { loot: {
id: 'miscellaneous', id: 'loot',
label: 'TYPES.Item.miscellaneous' label: 'TYPES.Item.loot'
}, },
beastform: { beastform: {
if: 'beastform', if: 'beastform',

View file

@ -307,7 +307,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
title: 'Roll Save', title: 'Roll Save',
roll: { roll: {
trait: this.save.trait, trait: this.save.trait,
difficulty: this.save.difficulty, difficulty: this.save.difficulty ?? this.actor?.baseSaveDifficulty,
type: 'reaction' type: 'reaction'
}, },
data: target.actor.getRollData() data: target.actor.getRollData()

View file

@ -8,7 +8,7 @@ export default class SaveField extends fields.SchemaField {
initial: null, initial: null,
choices: CONFIG.DH.ACTOR.abilities choices: CONFIG.DH.ACTOR.abilities
}), }),
difficulty: new fields.NumberField({ nullable: true, initial: 10, integer: true, min: 0 }), difficulty: new fields.NumberField({ nullable: true, initial: null, integer: true, min: 0 }),
damageMod: new fields.StringField({ damageMod: new fields.StringField({
initial: CONFIG.DH.ACTIONS.damageOnSave.none.id, initial: CONFIG.DH.ACTIONS.damageOnSave.none.id,
choices: CONFIG.DH.ACTIONS.damageOnSave choices: CONFIG.DH.ACTIONS.damageOnSave

View file

@ -6,8 +6,7 @@ export default class TargetField extends fields.SchemaField {
type: new fields.StringField({ type: new fields.StringField({
choices: CONFIG.DH.ACTIONS.targetTypes, choices: CONFIG.DH.ACTIONS.targetTypes,
initial: CONFIG.DH.ACTIONS.targetTypes.any.id, initial: CONFIG.DH.ACTIONS.targetTypes.any.id,
nullable: true, nullable: true
initial: null
}), }),
amount: new fields.NumberField({ nullable: true, initial: null, integer: true, min: 0 }) amount: new fields.NumberField({ nullable: true, initial: null, integer: true, min: 0 })
}; };

View file

@ -6,7 +6,7 @@ import DHCommunity from './community.mjs';
import DHConsumable from './consumable.mjs'; import DHConsumable from './consumable.mjs';
import DHDomainCard from './domainCard.mjs'; import DHDomainCard from './domainCard.mjs';
import DHFeature from './feature.mjs'; import DHFeature from './feature.mjs';
import DHMiscellaneous from './miscellaneous.mjs'; import DHLoot from './loot.mjs';
import DHSubclass from './subclass.mjs'; import DHSubclass from './subclass.mjs';
import DHWeapon from './weapon.mjs'; import DHWeapon from './weapon.mjs';
import DHBeastform from './beastform.mjs'; import DHBeastform from './beastform.mjs';
@ -20,7 +20,7 @@ export {
DHConsumable, DHConsumable,
DHDomainCard, DHDomainCard,
DHFeature, DHFeature,
DHMiscellaneous, DHLoot,
DHSubclass, DHSubclass,
DHWeapon, DHWeapon,
DHBeastform DHBeastform
@ -35,7 +35,7 @@ export const config = {
consumable: DHConsumable, consumable: DHConsumable,
domainCard: DHDomainCard, domainCard: DHDomainCard,
feature: DHFeature, feature: DHFeature,
miscellaneous: DHMiscellaneous, loot: DHLoot,
subclass: DHSubclass, subclass: DHSubclass,
weapon: DHWeapon, weapon: DHWeapon,
beastform: DHBeastform beastform: DHBeastform

View file

@ -1,12 +1,11 @@
import BaseDataItem from './base.mjs'; import BaseDataItem from './base.mjs';
import { ActionField } from '../fields/actionField.mjs';
export default class DHMiscellaneous extends BaseDataItem { export default class DHLoot extends BaseDataItem {
/** @inheritDoc */ /** @inheritDoc */
static get metadata() { static get metadata() {
return foundry.utils.mergeObject(super.metadata, { return foundry.utils.mergeObject(super.metadata, {
label: 'TYPES.Item.miscellaneous', label: 'TYPES.Item.loot',
type: 'miscellaneous', type: 'loot',
hasDescription: true, hasDescription: true,
isQuantifiable: true, isQuantifiable: true,
isInventoryItem: true, isInventoryItem: true,

View file

@ -385,6 +385,10 @@ export default class DhpActor extends Actor {
return CONFIG.Dice.daggerheart[['character', 'companion'].includes(this.type) ? 'DualityRoll' : 'D20Roll']; return CONFIG.Dice.daggerheart[['character', 'companion'].includes(this.type) ? 'DualityRoll' : 'D20Roll'];
} }
get baseSaveDifficulty() {
return this.system.difficulty ?? 10;
}
getRollData() { getRollData() {
const rollData = super.getRollData(); const rollData = super.getRollData();
rollData.system = this.system.getRollData(); rollData.system = this.system.getRollData();

View file

@ -1,160 +0,0 @@
{
"name": "Agile Scout",
"type": "beastform",
"img": "icons/creatures/mammals/goat-horned-blue.webp",
"system": {
"beastformType": "normal",
"tier": 1,
"tokenImg": "icons/creatures/mammals/goat-horned-blue.webp",
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {
"height": null,
"width": null
},
"mainTrait": "agility",
"advantageOn": {
"tXlf8FvWrgGqfaJu": {
"value": "deceit"
},
"lp1gv9iNUCpC2Fli": {
"value": "locate"
},
"GxDMKUpOeDHzyhAT": {
"value": "sneak"
}
},
"features": [
"Compendium.daggerheart.beastforms.Item.sef9mwD2eRLZ64oV",
"Compendium.daggerheart.beastforms.Item.9ryNrYWjNtOT6DXN"
],
"evolved": {
"mainTraitBonus": 0
},
"hybrid": {
"beastformOptions": 2,
"advantages": 2,
"features": 2
},
"examples": "Fox, Mouse, Weasel, etc."
},
"effects": [
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "m098fyKkAjTFZ6UJ",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "1",
"priority": null
},
{
"key": "system.evasion",
"mode": 2,
"value": "2",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"lastModifiedBy": null
},
"_key": "!items.effects!6tr99y6wHaJJYy3J.m098fyKkAjTFZ6UJ"
},
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "5mi9ku2R4paP579i",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [],
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976985351,
"modifiedTime": 1752976985351,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_key": "!items.effects!6tr99y6wHaJJYy3J.5mi9ku2R4paP579i"
}
],
"folder": null,
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976985346,
"modifiedTime": 1752976987362,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "6tr99y6wHaJJYy3J",
"sort": 100000,
"_key": "!items!6tr99y6wHaJJYy3J"
}

View file

@ -1,166 +0,0 @@
{
"name": "Household Friend",
"type": "beastform",
"img": "icons/creatures/mammals/cat-hunched-glowing-red.webp",
"system": {
"beastformType": "normal",
"tier": 1,
"tokenImg": "icons/creatures/mammals/cat-hunched-glowing-red.webp",
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {
"height": null,
"width": null
},
"mainTrait": "instinct",
"advantageOn": {
"u0mzlWihDHITgh1x": {
"value": "climb"
},
"m53oFXA2SA5jAjWc": {
"value": "locate"
},
"XLPn5Egg9mIuLyVP": {
"value": "protect"
}
},
"features": [
"Compendium.daggerheart.beastforms.Item.0tlnxIxlIw2hl1UE",
"Compendium.daggerheart.beastforms.Item.9ryNrYWjNtOT6DXN"
],
"evolved": {
"mainTraitBonus": 0
},
"hybrid": {
"beastformOptions": 2,
"advantages": 2,
"features": 2
},
"examples": "Cat, Dog, Rabbit, etc."
},
"effects": [
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "d25tcdgssnDvekKR",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [
{
"key": "system.rules.attack.trait",
"mode": 5,
"value": "instinct",
"priority": null
},
{
"key": "system.rules.attack.range",
"mode": 5,
"value": "melee",
"priority": null
},
{
"key": "system.rules.attack.damage.value",
"mode": 5,
"value": "1d8",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"lastModifiedBy": null
},
"_key": "!items.effects!uxBugKULjn7O1KQc.d25tcdgssnDvekKR"
},
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "idqGh9sm1zBLME1O",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [],
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976986453,
"modifiedTime": 1752976986453,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_key": "!items.effects!uxBugKULjn7O1KQc.idqGh9sm1zBLME1O"
}
],
"folder": null,
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976986449,
"modifiedTime": 1752976987362,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "uxBugKULjn7O1KQc",
"sort": 300000,
"_key": "!items!uxBugKULjn7O1KQc"
}

View file

@ -1,154 +0,0 @@
{
"name": "Legendary Beast",
"type": "beastform",
"img": "icons/creatures/magical/spirit-undead-horned-blue.webp",
"system": {
"beastformType": "evolved",
"tier": 3,
"tokenImg": "icons/creatures/magical/spirit-undead-horned-blue.webp",
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {
"height": null,
"width": null
},
"mainTrait": "agility",
"advantageOn": {},
"features": [],
"evolved": {
"mainTraitBonus": 1,
"maximumTier": 1
},
"hybrid": {
"beastformOptions": 2,
"advantages": 2,
"features": 2
},
"examples": ""
},
"effects": [
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "cKAoI5JqYOtGBscd",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [
{
"key": "system.bonuses.damage.physical.bonus",
"mode": 2,
"value": "6",
"priority": null
},
{
"key": "system.bonuses.damage.magical.bonus",
"mode": 2,
"value": "6",
"priority": null
},
{
"key": "system.evasion",
"mode": 2,
"value": "2",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "<p>Pick a Tier 1 Beastform option and become a larger, more powerful version of that creature. While youre in this form, you retain all traits and features from the original form and gain the following bonuses:</p><ul><li><p>- A +6 bonus to damage rolls</p></li><li><p>- A +1 bonus to the trait used by this form</p></li><li><p>- A +2 bonus to evasion</p></li></ul>",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"lastModifiedBy": null
},
"_key": "!items.effects!mERwC7aMDoIKfZTf.cKAoI5JqYOtGBscd"
},
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "LltLvTqjhk9RseV8",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [],
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976989252,
"modifiedTime": 1752976989252,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_key": "!items.effects!mERwC7aMDoIKfZTf.LltLvTqjhk9RseV8"
}
],
"folder": null,
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976989245,
"modifiedTime": 1752976989245,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "mERwC7aMDoIKfZTf",
"sort": 0,
"_key": "!items!mERwC7aMDoIKfZTf"
}

View file

@ -1,166 +0,0 @@
{
"name": "Mighty Strider",
"type": "beastform",
"img": "icons/creatures/mammals/bull-horned-blue.webp",
"system": {
"beastformType": "normal",
"tier": 2,
"tokenImg": "icons/creatures/mammals/bull-horned-blue.webp",
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {
"height": null,
"width": null
},
"mainTrait": "agility",
"advantageOn": {
"Xxr01TwSerOS8qsd": {
"value": "leap"
},
"cASut9AUij2Uf4zm": {
"value": "navigate"
},
"XJie4FhCSwUCg9uN": {
"value": "sprint"
}
},
"features": [
"Compendium.daggerheart.beastforms.Item.YSolAjtv6Sfnai98",
"Compendium.daggerheart.beastforms.Item.P6tWFIZzXWyekw6r"
],
"evolved": {
"mainTraitBonus": 0
},
"hybrid": {
"beastformOptions": 2,
"advantages": 2,
"features": 2
},
"examples": "Camel, Horse, Zebra, etc."
},
"effects": [
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "1KdhXARm6rg2fg22",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [
{
"key": "system.rules.attack.damage.value",
"mode": 5,
"value": "d8 + 1",
"priority": null
},
{
"key": "system.rules.attack.trait",
"mode": 5,
"value": "agility",
"priority": null
},
{
"key": "system.rules.attack.range",
"mode": 5,
"value": "melee",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"lastModifiedBy": null
},
"_key": "!items.effects!LF68kGAcOTZQ81GB.1KdhXARm6rg2fg22"
},
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "ngEREmS8hzNyshak",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [],
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976987358,
"modifiedTime": 1752976987358,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_key": "!items.effects!LF68kGAcOTZQ81GB.ngEREmS8hzNyshak"
}
],
"folder": null,
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976987354,
"modifiedTime": 1752976987362,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "LF68kGAcOTZQ81GB",
"sort": 200000,
"_key": "!items!LF68kGAcOTZQ81GB"
}

View file

@ -1,148 +0,0 @@
{
"name": "Mythic Hybrid",
"type": "beastform",
"img": "icons/creatures/magical/humanoid-silhouette-glowing-pink.webp",
"system": {
"beastformType": "hybrid",
"tier": 4,
"tokenImg": "icons/creatures/magical/humanoid-silhouette-glowing-pink.webp",
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {
"height": null,
"width": null
},
"mainTrait": "strength",
"advantageOn": {},
"features": [],
"evolved": {
"mainTraitBonus": 0
},
"hybrid": {
"beastformOptions": 3,
"advantages": 5,
"features": 3,
"maximumTier": 3
},
"examples": ""
},
"effects": [
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "dvqS0a0ur8xM2swY",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [
{
"key": "system.traits.strength.value",
"mode": 2,
"value": "3",
"priority": null
},
{
"key": "system.evasion",
"mode": 2,
"value": "2",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "<p>To transform into this creature, mark 2 additional Stress. Choose any three Beastform options from Tiers 13. Choose a total of five advantages and three features from those options.</p>",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"lastModifiedBy": null
},
"_key": "!items.effects!VI1DyowECDCDdsC1.dvqS0a0ur8xM2swY"
},
{
"type": "beastform",
"name": "Beastform Transformation",
"img": "icons/creatures/abilities/paw-print-pair-purple.webp",
"_id": "xSMy4BO5PuqASEKW",
"system": {
"characterTokenData": {
"tokenImg": null,
"tokenRingImg": "icons/svg/mystery-man.svg",
"tokenSize": {}
},
"advantageOn": [],
"featureIds": [],
"effectIds": []
},
"changes": [],
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"description": "",
"origin": null,
"tint": "#ffffff",
"transfer": true,
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976990470,
"modifiedTime": 1752976990470,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_key": "!items.effects!VI1DyowECDCDdsC1.xSMy4BO5PuqASEKW"
}
],
"folder": null,
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976990466,
"modifiedTime": 1752976990466,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "VI1DyowECDCDdsC1",
"sort": 0,
"_key": "!items!VI1DyowECDCDdsC1"
}

View file

@ -1,34 +0,0 @@
{
"type": "feature",
"name": "Agile",
"img": "icons/skills/movement/arrow-upward-blue.webp",
"system": {
"description": "<p>Your movement is silent, and you can spend a Hope to move up to Far range without rolling.</p>",
"resource": null,
"originItemType": null,
"subType": null,
"originId": null,
"actions": []
},
"effects": [],
"folder": "uU8bIoZvXge0rLaU",
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976877948,
"modifiedTime": 1752976906072,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "sef9mwD2eRLZ64oV",
"sort": 100000,
"_key": "!items!sef9mwD2eRLZ64oV"
}

View file

@ -1,34 +0,0 @@
{
"type": "feature",
"name": "Carrier",
"img": "icons/creatures/abilities/bull-head-horns-glowing.webp",
"system": {
"description": "<p>You can carry up to two willing allies with you when you move.</p>",
"resource": null,
"originItemType": null,
"subType": null,
"originId": null,
"actions": []
},
"effects": [],
"folder": "uU8bIoZvXge0rLaU",
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976866309,
"modifiedTime": 1752976907469,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "YSolAjtv6Sfnai98",
"sort": 200000,
"_key": "!items!YSolAjtv6Sfnai98"
}

View file

@ -1,34 +0,0 @@
{
"type": "feature",
"name": "Companion",
"img": "icons/magic/life/heart-hand-gold-green-light.webp",
"system": {
"description": "<p>When you Help an Ally, you can roll a d8 as your advantage die.</p>",
"resource": null,
"originItemType": null,
"subType": null,
"originId": null,
"actions": []
},
"effects": [],
"folder": "uU8bIoZvXge0rLaU",
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976848672,
"modifiedTime": 1752976908157,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "0tlnxIxlIw2hl1UE",
"sort": 0,
"_key": "!items!0tlnxIxlIw2hl1UE"
}

View file

@ -1,34 +0,0 @@
{
"type": "feature",
"name": "Evolved",
"img": "icons/creatures/abilities/dragon-breath-purple.webp",
"system": {
"description": "<p>Pick a Tier 1 Beastform option and become a larger, more powerful version of that creature. While youre in this form, you retain all traits and features from the original form and gain the following bonuses:</p><ul><li>A +6 bonus to damage rolls</li><li>A +1 bonus to the trait used by this form</li><li>A +2 bonus to Evasion</li></ul>",
"resource": null,
"originItemType": null,
"subType": null,
"originId": null,
"actions": []
},
"effects": [],
"folder": "uU8bIoZvXge0rLaU",
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976852417,
"modifiedTime": 1752976908700,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "MG21w4u5wXSGZ5WB",
"sort": 50000,
"_key": "!items!MG21w4u5wXSGZ5WB"
}

View file

@ -1,34 +0,0 @@
{
"type": "feature",
"name": "Fragile",
"img": "icons/magic/life/heart-broken-red.webp",
"system": {
"description": "<p>When you take Major or greater damage, you drop out of Beastform.</p>",
"resource": null,
"originItemType": null,
"subType": null,
"originId": null,
"actions": []
},
"effects": [],
"folder": "uU8bIoZvXge0rLaU",
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976855944,
"modifiedTime": 1752976909267,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "9ryNrYWjNtOT6DXN",
"sort": 150000,
"_key": "!items!9ryNrYWjNtOT6DXN"
}

View file

@ -1,34 +0,0 @@
{
"type": "feature",
"name": "Trample",
"img": "icons/creatures/mammals/ox-bull-horned-glowing-orange.webp",
"system": {
"description": "<p><strong>Mark a Stress</strong> to move up to Close range in a straight line and make an attack against all targets within Melee range of the line. Targets you succeed against take [[/r d8+1]] physical damage using your Proficiency and are temporarily Vulnerable.</p>",
"resource": null,
"originItemType": null,
"subType": null,
"originId": null,
"actions": []
},
"effects": [],
"folder": "uU8bIoZvXge0rLaU",
"ownership": {
"default": 0,
"k0gmQFlvrPvlTtbh": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976867812,
"modifiedTime": 1752976976609,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_id": "P6tWFIZzXWyekw6r",
"sort": -100000,
"_key": "!items!P6tWFIZzXWyekw6r"
}

View file

@ -1,23 +0,0 @@
{
"type": "Item",
"folder": null,
"name": "Beastform Features",
"color": null,
"sorting": "a",
"_id": "uU8bIoZvXge0rLaU",
"description": "",
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1752976835537,
"modifiedTime": 1752976835537,
"lastModifiedBy": "k0gmQFlvrPvlTtbh"
},
"_key": "!folders!uU8bIoZvXge0rLaU"
}

View file

@ -0,0 +1,55 @@
{
"name": "Acidpaste",
"type": "consumable",
"_id": "cfVFmS8vT9dbq9s1",
"img": "icons/commodities/materials/bowl-powder-teal.webp",
"system": {
"description": "<p>This paste eats away walls and other surfaces in bright flashes.</p>",
"quantity": 1,
"actions": {
"FQ2Ty0pP3z6JrBr6": {
"type": "effect",
"_id": "FQ2Ty0pP3z6JrBr6",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/materials/bowl-powder-teal.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590344700,
"modifiedTime": 1753590379629,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!cfVFmS8vT9dbq9s1"
}

View file

@ -0,0 +1,32 @@
{
"name": "Armor Stitcher",
"type": "consumable",
"_id": "VlbsCjvvLNfTzNXb",
"img": "icons/skills/trades/textiles-stitching-leather-brown.webp",
"system": {
"description": "<p>You can use this stitcher to spend any number of Hope and clear that many Armor Slots.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588973384,
"modifiedTime": 1753623129674,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!VlbsCjvvLNfTzNXb"
}

View file

@ -0,0 +1,105 @@
{
"name": "Attune Potion",
"type": "consumable",
"_id": "JGD3M9hBHtVAA8XP",
"img": "icons/consumables/potions/bottle-conical-corked-purple.webp",
"system": {
"description": "<p>You gain a +1 bonus to your next Instinct Roll.</p>",
"quantity": 1,
"actions": {
"aiyNOQZbVpTDagXy": {
"type": "effect",
"_id": "aiyNOQZbVpTDagXy",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "I5vgALTNDVApxy9d",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/bottle-conical-corked-purple.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Attune Potion",
"img": "icons/consumables/potions/bottle-conical-corked-purple.webp",
"origin": "Compendium.daggerheart.consumables.Item.JGD3M9hBHtVAA8XP",
"transfer": false,
"_id": "I5vgALTNDVApxy9d",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.instinct.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587072840,
"modifiedTime": 1753587081602,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!JGD3M9hBHtVAA8XP.I5vgALTNDVApxy9d"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587033468,
"modifiedTime": 1753587890614,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!JGD3M9hBHtVAA8XP"
}

View file

@ -0,0 +1,100 @@
{
"name": "Blinding Orb",
"type": "consumable",
"_id": "eAXHdzA5qNPldOpn",
"img": "icons/magic/light/explosion-star-large-blue-yellow.webp",
"system": {
"description": "<p>You can activate this orb to create a flash of bright light. All targets within Close range become Vulnerable until they mark HP.</p>",
"quantity": 1,
"actions": {
"vk4dE0C8bjNdTwAF": {
"type": "effect",
"_id": "vk4dE0C8bjNdTwAF",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "nryJhrF26hyFQUxH",
"onSave": false
}
],
"target": {
"type": "any",
"amount": null
},
"name": "Activate",
"img": "icons/magic/light/explosion-star-large-blue-yellow.webp",
"range": "close"
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Blinding Orb",
"img": "icons/magic/light/explosion-star-large-blue-yellow.webp",
"origin": "Compendium.daggerheart.consumables.Item.eAXHdzA5qNPldOpn",
"transfer": false,
"_id": "nryJhrF26hyFQUxH",
"type": "base",
"system": {},
"changes": [],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [
"vulnerable"
],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592689854,
"modifiedTime": 1753592707034,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!eAXHdzA5qNPldOpn.nryJhrF26hyFQUxH"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592512731,
"modifiedTime": 1753592689875,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!eAXHdzA5qNPldOpn"
}

View file

@ -0,0 +1,55 @@
{
"name": "Blood of the Yorgi",
"type": "consumable",
"_id": "pDGzmczoTlKGmKgd",
"img": "icons/consumables/potions/potion-tube-corked-bat-gold-red.webp",
"system": {
"description": "<p>You can drink this blood to disappear from where you are and immediately reappear at a point you can see within Very Far range.</p>",
"quantity": 1,
"actions": {
"6QGfkGkFqqzuVOOY": {
"type": "effect",
"_id": "6QGfkGkFqqzuVOOY",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-tube-corked-bat-gold-red.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589954973,
"modifiedTime": 1753589985716,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!pDGzmczoTlKGmKgd"
}

View file

@ -0,0 +1,105 @@
{
"name": "Bolster Potion",
"type": "consumable",
"_id": "FOPQNqXbiVO0ilYL",
"img": "icons/consumables/potions/potion-vial-tube-yellow.webp",
"system": {
"description": "<p>You gain a +1 bonus to your next Strength Roll.</p>",
"quantity": 1,
"actions": {
"YqbQKTgblItoZOm8": {
"type": "effect",
"_id": "YqbQKTgblItoZOm8",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "HVCJp9Tkhr1i4Oc1",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-vial-tube-yellow.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Bolster Potion",
"img": "icons/consumables/potions/potion-vial-tube-yellow.webp",
"origin": "Compendium.daggerheart.consumables.Item.FOPQNqXbiVO0ilYL",
"transfer": false,
"_id": "HVCJp9Tkhr1i4Oc1",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.strength.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753586918808,
"modifiedTime": 1753586928363,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!FOPQNqXbiVO0ilYL.HVCJp9Tkhr1i4Oc1"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753586850134,
"modifiedTime": 1753587920117,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!FOPQNqXbiVO0ilYL"
}

View file

@ -0,0 +1,55 @@
{
"name": "Bonding Honey",
"type": "consumable",
"_id": "PfQvqopXgvroBklL",
"img": "icons/consumables/food/soup-broth-bowl-wooden-yellow.webp",
"system": {
"description": "<p>This honey can be used to glue two objects together permanently.</p>",
"quantity": 1,
"actions": {
"SWrgUGHIWCXpED1b": {
"type": "effect",
"_id": "SWrgUGHIWCXpED1b",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/consumables/food/soup-broth-bowl-wooden-yellow.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592033119,
"modifiedTime": 1753592067178,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!PfQvqopXgvroBklL"
}

View file

@ -0,0 +1,55 @@
{
"name": "Bridge Seed",
"type": "consumable",
"_id": "RrIasiMCt6mqVTps",
"img": "icons/consumables/plants/leaf-old-dried-curled-green.webp",
"system": {
"description": "<p>Thick vines grow from your location to a point of your choice within Far range, allowing you to climb up or across them. The vines dissipate on your next short rest.</p>",
"quantity": 1,
"actions": {
"dk7fhkfA4m5lqNWB": {
"type": "effect",
"_id": "dk7fhkfA4m5lqNWB",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Plant",
"img": "icons/consumables/plants/leaf-old-dried-curled-green.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591685990,
"modifiedTime": 1753591826807,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!RrIasiMCt6mqVTps"
}

View file

@ -0,0 +1,55 @@
{
"name": "Channelstone",
"type": "consumable",
"_id": "IKMVQ6VwtapwoUim",
"img": "icons/commodities/stone/engraved-symbol-water-grey.webp",
"system": {
"description": "<p>You can use this stone to take a spell or grimoire from your vault, use it once, and return it to your vault.</p>",
"quantity": 1,
"actions": {
"X4KtBG5Uve09hRoj": {
"type": "effect",
"_id": "X4KtBG5Uve09hRoj",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/stone/engraved-symbol-water-grey.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590192533,
"modifiedTime": 1753590231535,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!IKMVQ6VwtapwoUim"
}

View file

@ -0,0 +1,105 @@
{
"name": "Charm Potion",
"type": "consumable",
"_id": "CVBbFfOY75YwyQsp",
"img": "icons/consumables/potions/potion-tube-corked-blue.webp",
"system": {
"description": "<p>You gain a +1 bonus to your next Presence Roll.</p>",
"quantity": 1,
"actions": {
"2trd3JYIb527LIrn": {
"type": "effect",
"_id": "2trd3JYIb527LIrn",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "COrKb7gBin4Ro6r6",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-tube-corked-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Charm Potion",
"img": "icons/consumables/potions/potion-tube-corked-blue.webp",
"origin": "Compendium.daggerheart.consumables.Item.CVBbFfOY75YwyQsp",
"transfer": false,
"_id": "COrKb7gBin4Ro6r6",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.presence.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587164842,
"modifiedTime": 1753587173489,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!CVBbFfOY75YwyQsp.COrKb7gBin4Ro6r6"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587097370,
"modifiedTime": 1753587932738,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!CVBbFfOY75YwyQsp"
}

View file

@ -0,0 +1,63 @@
{
"name": "Circle of the Void",
"type": "consumable",
"_id": "elsyP6VhHw1JjGSl",
"img": "icons/magic/unholy/orb-glowing-purple.webp",
"system": {
"description": "<p>Mark a Stress to create a void that extends up to Far range. No magic can be cast inside the void, and creatures within the void are immune to magic damage.</p>",
"quantity": 1,
"actions": {
"ovR11FWCpXaFMPVx": {
"type": "effect",
"_id": "ovR11FWCpXaFMPVx",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [
{
"scalable": false,
"key": "stress",
"value": 1,
"keyIsID": false,
"step": null
}
],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/magic/unholy/orb-glowing-purple.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590692159,
"modifiedTime": 1753590776732,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!elsyP6VhHw1JjGSl"
}

View file

@ -0,0 +1,105 @@
{
"name": "Control Potion",
"type": "consumable",
"_id": "eeBhZSGLjuNZuJuI",
"img": "icons/consumables/potions/flask-corked-blue.webp",
"system": {
"description": "<p>You gain a +1 bonus to your next Finesse Roll.</p>",
"quantity": 1,
"actions": {
"l5dx5uYsH0btLDJq": {
"type": "effect",
"_id": "l5dx5uYsH0btLDJq",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "1VAQYZ1YYc9ew9UR",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/flask-corked-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Control Potion",
"img": "icons/consumables/potions/flask-corked-blue.webp",
"origin": "Compendium.daggerheart.consumables.Item.eeBhZSGLjuNZuJuI",
"transfer": false,
"_id": "1VAQYZ1YYc9ew9UR",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.finesse.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587008395,
"modifiedTime": 1753587017580,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!eeBhZSGLjuNZuJuI.1VAQYZ1YYc9ew9UR"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753586944889,
"modifiedTime": 1753587943049,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!eeBhZSGLjuNZuJuI"
}

View file

@ -0,0 +1,55 @@
{
"name": "Death Tea",
"type": "consumable",
"_id": "xDnJeF1grkmKck8Q",
"img": "icons/consumables/drinks/wine-amphora-clay-gray.webp",
"system": {
"description": "<p>After you drink this tea, you instantly kill your target when you critically succeed on an attack. If you dont critically succeed on an attack before your next long rest, you die.</p>",
"quantity": 1,
"actions": {
"U7da5R4pgVkEQJVj": {
"type": "effect",
"_id": "U7da5R4pgVkEQJVj",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/drinks/wine-amphora-clay-gray.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592717630,
"modifiedTime": 1753592777582,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!xDnJeF1grkmKck8Q"
}

View file

@ -0,0 +1,104 @@
{
"name": "Dragonbloom Tea",
"type": "consumable",
"_id": "wM18PWWW2Ami4fBG",
"img": "icons/consumables/drinks/tea-jug-gourd-brown.webp",
"system": {
"description": "<p>You can drink this tea to unleash a fiery breath attack. Make an Instinct Roll against all adversaries in front of you within Close range. Targets you succeed against take d20 physical damage using your Proficiency.</p>",
"quantity": 1,
"actions": {
"rcHEz3ImUDwo6lPC": {
"type": "attack",
"_id": "rcHEz3ImUDwo6lPC",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"resultBased": false,
"value": {
"custom": {
"enabled": false
},
"multiplier": "prof",
"dice": "d20",
"bonus": null,
"flatMultiplier": 1
},
"applyTo": "hitPoints",
"type": [],
"base": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": "hostile",
"amount": null
},
"effects": [],
"roll": {
"type": "trait",
"trait": "instinct",
"difficulty": null,
"bonus": null,
"advState": "neutral",
"diceRolling": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"compare": "above",
"treshold": 1
},
"useDefault": false
},
"save": {
"trait": null,
"difficulty": 10,
"damageMod": "none"
},
"name": "Drink",
"img": "icons/consumables/drinks/tea-jug-gourd-brown.webp",
"range": "close"
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591525829,
"modifiedTime": 1753591674720,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!wM18PWWW2Ami4fBG"
}

View file

@ -0,0 +1,86 @@
{
"name": "Dripfang Poison",
"type": "consumable",
"_id": "eU8VpbWB2NHIL47n",
"img": "icons/consumables/potions/potion-jug-corked-skull-poison-brown-green.webp",
"system": {
"description": "<p>A creature who consumes this poison takes 8d10 direct magic damage.</p>",
"quantity": 1,
"actions": {
"F8CUhhCuZMnXVCrw": {
"type": "damage",
"_id": "F8CUhhCuZMnXVCrw",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 8,
"dice": "d10",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"magical"
],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": null,
"amount": null
},
"effects": [],
"name": "Consume",
"img": "icons/consumables/potions/potion-jug-corked-skull-poison-brown-green.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590938047,
"modifiedTime": 1753591027903,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!eU8VpbWB2NHIL47n"
}

View file

@ -0,0 +1,105 @@
{
"name": "Enlighten Potion",
"type": "consumable",
"_id": "aWHSO2AqDufi7nL4",
"img": "icons/consumables/potions/vial-cork-empty.webp",
"system": {
"description": "<p>You gain a +1 bonus to your next Knowledge Roll.</p>",
"quantity": 1,
"actions": {
"F3K719gxEwQH697e": {
"type": "effect",
"_id": "F3K719gxEwQH697e",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "QNzVrDW73jF1d5wE",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/vial-cork-empty.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Enlighten Potion",
"img": "icons/consumables/potions/vial-cork-empty.webp",
"origin": "Compendium.daggerheart.consumables.Item.aWHSO2AqDufi7nL4",
"transfer": false,
"_id": "QNzVrDW73jF1d5wE",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.knowledge.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588649848,
"modifiedTime": 1753588661474,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!aWHSO2AqDufi7nL4.QNzVrDW73jF1d5wE"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587185754,
"modifiedTime": 1753588649868,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!aWHSO2AqDufi7nL4"
}

View file

@ -0,0 +1,32 @@
{
"name": "Feast of Xuria",
"type": "consumable",
"_id": "aX6NyxkNzu0LcJpt",
"img": "icons/consumables/food/bowl-stew-tofu-potato-red.webp",
"system": {
"description": "<p>You can eat this meal to clear all HP and Stress and gain 1d4 Hope.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591925502,
"modifiedTime": 1753623203098,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!aX6NyxkNzu0LcJpt"
}

View file

@ -0,0 +1,55 @@
{
"name": "Featherbone",
"type": "consumable",
"_id": "DpxEMpwfasEBpORU",
"img": "icons/commodities/bones/bones-stack-worn-brown.webp",
"system": {
"description": "<p>You can use this bone to control your falling speed for a number of minutes equal to your level.</p>",
"quantity": 1,
"actions": {
"MC0EA6TDZpEHMz11": {
"type": "effect",
"_id": "MC0EA6TDZpEHMz11",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/bones/bones-stack-worn-brown.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590624634,
"modifiedTime": 1753590684567,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!DpxEMpwfasEBpORU"
}

View file

@ -0,0 +1,55 @@
{
"name": "Gill Salve",
"type": "consumable",
"_id": "Nvbb9mze6o5D0AEg",
"img": "icons/commodities/materials/bowl-powder-blue.webp",
"system": {
"description": "<p>You can apply this salve to your neck to breathe underwater for a number of minutes equal to your level.</p>",
"quantity": 1,
"actions": {
"57IIcyhEs2ByoENx": {
"type": "effect",
"_id": "57IIcyhEs2ByoENx",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Apply",
"img": "icons/commodities/materials/bowl-powder-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589241094,
"modifiedTime": 1753589295204,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!Nvbb9mze6o5D0AEg"
}

View file

@ -0,0 +1,86 @@
{
"name": "Grindletooth Venom",
"type": "consumable",
"_id": "8WkhvSzeOmLdnoLJ",
"img": "icons/consumables/potions/bottle-conical-corked-labeled-skull-poison-green.webp",
"system": {
"description": "<p>You can apply this venom to a weapon that deals physical damage to add a d6 to your next damage roll with that weapon.</p>",
"quantity": 1,
"actions": {
"PxLGZBoJCS0L4QZl": {
"type": "damage",
"_id": "PxLGZBoJCS0L4QZl",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"physical"
],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": null,
"amount": null
},
"effects": [],
"name": "Apply Venom",
"img": "icons/consumables/potions/bottle-conical-corked-labeled-skull-poison-green.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587386639,
"modifiedTime": 1753587966903,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!8WkhvSzeOmLdnoLJ"
}

View file

@ -0,0 +1,111 @@
{
"name": "Growing Potion",
"type": "consumable",
"_id": "fl2f3ees8RFMze9t",
"img": "icons/consumables/potions/potion-bottle-corked-labeled-green.webp",
"system": {
"description": "<p>You can drink this potion to double your size until you choose to drop this form or your next rest. While in this form, you have a +2 bonus to Strength and a +1 bonus to your Proficiency.</p>",
"quantity": 1,
"actions": {
"A8wHvMnKnewQ2J3m": {
"type": "effect",
"_id": "A8wHvMnKnewQ2J3m",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "YEGd74Lssj7rCmpF",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-bottle-corked-labeled-green.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Growing Potion",
"img": "icons/consumables/potions/potion-bottle-corked-labeled-green.webp",
"origin": "Compendium.daggerheart.consumables.Item.fl2f3ees8RFMze9t",
"transfer": false,
"_id": "YEGd74Lssj7rCmpF",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.strength.value",
"mode": 2,
"value": "2",
"priority": null
},
{
"key": "system.proficiency",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592211848,
"modifiedTime": 1753592229488,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!fl2f3ees8RFMze9t.YEGd74Lssj7rCmpF"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592174440,
"modifiedTime": 1753592211868,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!fl2f3ees8RFMze9t"
}

View file

@ -0,0 +1,32 @@
{
"name": "Health Potion",
"type": "consumable",
"_id": "Aruc2NLutWuVIjP1",
"img": "icons/consumables/potions/bottle-corked-red.webp",
"system": {
"description": "<p>Clear 1d4+1 HP.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588839527,
"modifiedTime": 1753623230976,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!Aruc2NLutWuVIjP1"
}

View file

@ -0,0 +1,55 @@
{
"name": "Homets Secret Potion",
"type": "consumable",
"_id": "VSwa1LpQ9PjZKsWF",
"img": "icons/consumables/potions/conical-ornate-purple.webp",
"system": {
"description": "<p>After drinking this potion, the next successful attack you make critically succeeds.</p>",
"quantity": 1,
"actions": {
"NCcqIcPhEsUnFh7S": {
"type": "effect",
"_id": "NCcqIcPhEsUnFh7S",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/conical-ornate-purple.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589998065,
"modifiedTime": 1753590051364,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!VSwa1LpQ9PjZKsWF"
}

View file

@ -0,0 +1,55 @@
{
"name": "Hopehold Flare",
"type": "consumable",
"_id": "EhaQCPJ8oiqpRIwB",
"img": "icons/commodities/tech/smoke-bomb-purple.webp",
"system": {
"description": "<p>When you use this flare, allies within Close range roll a d6 when they spend a Hope. On a result of 6, they gain the effect of that Hope without spending it. The flare lasts until the end of the scene.</p>",
"quantity": 1,
"actions": {
"hTF2K4uWcrUypLbs": {
"type": "effect",
"_id": "hTF2K4uWcrUypLbs",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/tech/smoke-bomb-purple.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590388618,
"modifiedTime": 1753590501578,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!EhaQCPJ8oiqpRIwB"
}

View file

@ -0,0 +1,106 @@
{
"name": "Improved Arcane Shard",
"type": "consumable",
"_id": "nQTo6mNoPTEVBtkm",
"img": "icons/commodities/gems/gem-faceted-teardrop-blue.webp",
"system": {
"description": "<p>You can make a Finesse Roll to throw this shard at a group of adversaries within Far range. Targets you succeed against take 2d20 magic damage.</p>",
"quantity": 1,
"actions": {
"g3sQoxS6sL3mut3u": {
"type": "attack",
"_id": "g3sQoxS6sL3mut3u",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"resultBased": false,
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 2,
"dice": "d20",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"magical"
],
"base": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": "hostile",
"amount": null
},
"effects": [],
"roll": {
"type": "trait",
"trait": "finesse",
"difficulty": null,
"bonus": null,
"advState": "neutral",
"diceRolling": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"compare": "above",
"treshold": 1
},
"useDefault": false
},
"save": {
"trait": null,
"difficulty": 10,
"damageMod": "none"
},
"name": "Throw",
"img": "icons/commodities/gems/gem-faceted-teardrop-blue.webp",
"range": "far"
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589403341,
"modifiedTime": 1753589489112,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!nQTo6mNoPTEVBtkm"
}

View file

@ -0,0 +1,86 @@
{
"name": "Improved Grindletooth Venom",
"type": "consumable",
"_id": "BqBWXXe9T07AMV4u",
"img": "icons/consumables/potions/potion-jar-corked-labeled-poison-skull-green.webp",
"system": {
"description": "<p>You can apply this venom to a weapon that deals physical damage to add a d8 to your next damage roll with that weapon.</p>",
"quantity": 1,
"actions": {
"qCr94sRkuODpywiZ": {
"type": "damage",
"_id": "qCr94sRkuODpywiZ",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 1,
"dice": "d8",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"physical"
],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": null,
"amount": null
},
"effects": [],
"name": "Apply Venom",
"img": "icons/consumables/potions/potion-jar-corked-labeled-poison-skull-green.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588170670,
"modifiedTime": 1753588234520,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!BqBWXXe9T07AMV4u"
}

View file

@ -0,0 +1,86 @@
{
"name": "Jar of Lost Voices",
"type": "consumable",
"_id": "yUol6M5b8jsbk9za",
"img": "icons/containers/kitchenware/jug-wrapped-red.webp",
"system": {
"description": "<p>You can open this jar to release a deafening echo of voices for a number of minutes equal to your Instinct. Creatures within Far range unprepared for the sound take 6d8 magic damage.</p>",
"quantity": 1,
"actions": {
"QEk4TaJeN9FX8cZN": {
"type": "damage",
"_id": "QEk4TaJeN9FX8cZN",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 6,
"dice": "d8",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"magical"
],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": null,
"amount": null
},
"effects": [],
"name": "Open",
"img": "icons/containers/kitchenware/jug-wrapped-red.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591372075,
"modifiedTime": 1753591514408,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!yUol6M5b8jsbk9za"
}

View file

@ -0,0 +1,55 @@
{
"name": "Jumping Root",
"type": "consumable",
"_id": "c2putn9apuurJhWX",
"img": "icons/consumables/plants/dried-bundle-wrapped-stems-sticks-brown.webp",
"system": {
"description": "<p>Eat this root to leap up to Far range once without needing to roll.</p>",
"quantity": 1,
"actions": {
"TT4jzve7o2ykPcQO": {
"type": "effect",
"_id": "TT4jzve7o2ykPcQO",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Eat",
"img": "icons/consumables/plants/dried-bundle-wrapped-stems-sticks-brown.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588566489,
"modifiedTime": 1753588625439,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!c2putn9apuurJhWX"
}

View file

@ -0,0 +1,55 @@
{
"name": "Knowledge Stone",
"type": "consumable",
"_id": "nL9IALzm9BNi5oSt",
"img": "icons/commodities/treasure/token-engraved-blue-glowing.webp",
"system": {
"description": "<p>If you die while holding this stone, an ally can take a card from your loadout to place in their loadout or vault. After they take this knowledge, the stone crumbles.</p>",
"quantity": 1,
"actions": {
"We38aIuxBrv8zhfr": {
"type": "effect",
"_id": "We38aIuxBrv8zhfr",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/treasure/token-engraved-blue-glowing.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592240392,
"modifiedTime": 1753592383492,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!nL9IALzm9BNi5oSt"
}

View file

@ -0,0 +1,104 @@
{
"name": "Major Arcane Shard",
"type": "consumable",
"_id": "AA7bmiwv00lshPrC",
"img": "icons/commodities/gems/gem-rough-round-blue.webp",
"system": {
"description": "<p>You can make a Finesse Roll to throw this shard at a group of adversaries within Far range. Targets you succeed against take 4d20 magic damage.</p>",
"quantity": 1,
"actions": {
"8JHqtEYD0uOGwHdd": {
"type": "attack",
"_id": "8JHqtEYD0uOGwHdd",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"resultBased": false,
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 4,
"dice": "d20",
"bonus": null
},
"applyTo": "hitPoints",
"type": [],
"base": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": "hostile",
"amount": null
},
"effects": [],
"roll": {
"type": "trait",
"trait": "finesse",
"difficulty": null,
"bonus": null,
"advState": "neutral",
"diceRolling": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"compare": "above",
"treshold": 1
},
"useDefault": false
},
"save": {
"trait": null,
"difficulty": 10,
"damageMod": "none"
},
"name": "Throw",
"img": "icons/commodities/gems/gem-rough-round-blue.webp",
"range": "far"
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590515261,
"modifiedTime": 1753590588765,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!AA7bmiwv00lshPrC"
}

View file

@ -0,0 +1,105 @@
{
"name": "Major Attune Potion",
"type": "consumable",
"_id": "CCPFm5iXXwvyYYwR",
"img": "icons/consumables/potions/bottle-round-corked-pink.webp",
"system": {
"description": "<p>You gain a +1 bonus to your Instinct until your next rest.</p>",
"quantity": 1,
"actions": {
"zerWKpcBvtiaUfaw": {
"type": "effect",
"_id": "zerWKpcBvtiaUfaw",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "v2EXGXbJaewaMxFC",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/bottle-round-corked-pink.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Major Attune Potion",
"img": "icons/consumables/potions/bottle-round-corked-pink.webp",
"origin": "Compendium.daggerheart.consumables.Item.CCPFm5iXXwvyYYwR",
"transfer": false,
"_id": "v2EXGXbJaewaMxFC",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.instinct.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589791269,
"modifiedTime": 1753589801620,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!CCPFm5iXXwvyYYwR.v2EXGXbJaewaMxFC"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589747286,
"modifiedTime": 1753589806499,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!CCPFm5iXXwvyYYwR"
}

View file

@ -0,0 +1,105 @@
{
"name": "Major Bolster Potion",
"type": "consumable",
"_id": "mnyQDRtngWWQeRXF",
"img": "icons/consumables/potions/potion-jar-corked-orange.webp",
"system": {
"description": "<p>You gain a +1 bonus to your Strength until your next rest.</p>",
"quantity": 1,
"actions": {
"Z7ehTbRegQvq74tl": {
"type": "effect",
"_id": "Z7ehTbRegQvq74tl",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "3PfXBJy0ZjLBDAIn",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-jar-corked-orange.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Major Bolster Potion",
"img": "icons/consumables/potions/potion-jar-corked-orange.webp",
"origin": "Compendium.daggerheart.consumables.Item.mnyQDRtngWWQeRXF",
"transfer": false,
"_id": "3PfXBJy0ZjLBDAIn",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.strength.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589654978,
"modifiedTime": 1753589663303,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!mnyQDRtngWWQeRXF.3PfXBJy0ZjLBDAIn"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589623872,
"modifiedTime": 1753589654996,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!mnyQDRtngWWQeRXF"
}

View file

@ -0,0 +1,105 @@
{
"name": "Major Charm Potion",
"type": "consumable",
"_id": "IJLAUlQymbSjzsri",
"img": "icons/consumables/potions/potion-bottle-corked-blue.webp",
"system": {
"description": "<p>You gain a +1 bonus to your Presence until your next rest.</p>",
"quantity": 1,
"actions": {
"Bz6oZUN317mLvQSk": {
"type": "effect",
"_id": "Bz6oZUN317mLvQSk",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "3iXv9QiuLGOfDCi2",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-bottle-corked-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Major Charm Potion",
"img": "icons/consumables/potions/potion-bottle-corked-blue.webp",
"origin": "Compendium.daggerheart.consumables.Item.IJLAUlQymbSjzsri",
"transfer": false,
"_id": "3iXv9QiuLGOfDCi2",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.presence.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589854495,
"modifiedTime": 1753589862607,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!IJLAUlQymbSjzsri.3iXv9QiuLGOfDCi2"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589816684,
"modifiedTime": 1753589854510,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!IJLAUlQymbSjzsri"
}

View file

@ -0,0 +1,105 @@
{
"name": "Major Control Potion",
"type": "consumable",
"_id": "80s1FLmTLtohZ5GH",
"img": "icons/consumables/potions/bottle-round-corked-blue.webp",
"system": {
"description": "<p>You gain a +1 bonus to your Finesse until your next rest.</p>",
"quantity": 1,
"actions": {
"fk272mE2zHIHq8qR": {
"type": "effect",
"_id": "fk272mE2zHIHq8qR",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "YOgojNdjARXUUrky",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/bottle-round-corked-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Major Control Potion",
"img": "icons/consumables/potions/bottle-round-corked-blue.webp",
"origin": "Compendium.daggerheart.consumables.Item.80s1FLmTLtohZ5GH",
"transfer": false,
"_id": "YOgojNdjARXUUrky",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.finesse.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589723372,
"modifiedTime": 1753589738716,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!80s1FLmTLtohZ5GH.YOgojNdjARXUUrky"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589675185,
"modifiedTime": 1753589723393,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!80s1FLmTLtohZ5GH"
}

View file

@ -0,0 +1,105 @@
{
"name": "Major Enlighten Potion",
"type": "consumable",
"_id": "SDdv1G2veMLKrxcJ",
"img": "icons/consumables/potions/bottle-corked-empty.webp",
"system": {
"description": "<p>You gain a +1 bonus to your Knowledge until your next rest.</p>",
"quantity": 1,
"actions": {
"cZL1A3hNXHbjfwi3": {
"type": "effect",
"_id": "cZL1A3hNXHbjfwi3",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "Ul5brgnx88npVGNj",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/bottle-corked-empty.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Major Enlighten Potion",
"img": "icons/consumables/potions/bottle-corked-empty.webp",
"origin": "Compendium.daggerheart.consumables.Item.SDdv1G2veMLKrxcJ",
"transfer": false,
"_id": "Ul5brgnx88npVGNj",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.knowledge.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589930774,
"modifiedTime": 1753589937684,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!SDdv1G2veMLKrxcJ.Ul5brgnx88npVGNj"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589874661,
"modifiedTime": 1753589930795,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!SDdv1G2veMLKrxcJ"
}

View file

@ -0,0 +1,32 @@
{
"name": "Major Health Potion",
"type": "consumable",
"_id": "cM7pHe8bBAxSZ2xR",
"img": "icons/consumables/potions/bottle-round-label-cork-red.webp",
"system": {
"description": "<p>Clear 1d4+2 HP.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591046168,
"modifiedTime": 1753623266522,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!cM7pHe8bBAxSZ2xR"
}

View file

@ -0,0 +1,32 @@
{
"name": "Major Stamina Potion",
"type": "consumable",
"_id": "I4cQ03xbxnc81EGa",
"img": "icons/consumables/potions/bottle-round-label-cork-green.webp",
"system": {
"description": "<p>Clear 1d4+2 Stress.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591113317,
"modifiedTime": 1753623276997,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!I4cQ03xbxnc81EGa"
}

View file

@ -0,0 +1,105 @@
{
"name": "Major Stride Potion",
"type": "consumable",
"_id": "yK6eEDUrsPbZA8G0",
"img": "icons/consumables/potions/potion-jar-capped-teal.webp",
"system": {
"description": "<p>You gain a +1 bonus to your Agility until your next rest.</p>",
"quantity": 1,
"actions": {
"UIVnvI726LJnlK86": {
"type": "effect",
"_id": "UIVnvI726LJnlK86",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "L9dAw8pws1o02XkE",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-jar-capped-teal.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Major Stride Potion",
"img": "icons/consumables/potions/potion-jar-capped-teal.webp",
"origin": "Compendium.daggerheart.consumables.Item.yK6eEDUrsPbZA8G0",
"transfer": false,
"_id": "L9dAw8pws1o02XkE",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589592477,
"modifiedTime": 1753589609592,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!yK6eEDUrsPbZA8G0.L9dAw8pws1o02XkE"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589545730,
"modifiedTime": 1753589592499,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!yK6eEDUrsPbZA8G0"
}

View file

@ -0,0 +1,32 @@
{
"name": "Minor Health Potion",
"type": "consumable",
"_id": "tPfKtKRRjv8qdSqy",
"img": "icons/consumables/potions/potion-tube-corked-red.webp",
"system": {
"description": "<p>Clear 1d4 HP.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587253431,
"modifiedTime": 1753623289863,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!tPfKtKRRjv8qdSqy"
}

View file

@ -0,0 +1,32 @@
{
"name": "Minor Stamina Potion",
"type": "consumable",
"_id": "b6vGSPFWOlzZZDLO",
"img": "icons/consumables/potions/potion-tube-corked-green.webp",
"system": {
"description": "<p>Clear 1d4 Stress.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587324465,
"modifiedTime": 1753623297325,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!b6vGSPFWOlzZZDLO"
}

View file

@ -0,0 +1,63 @@
{
"name": "Mirror of Marigold",
"type": "consumable",
"_id": "UFQVwgYOUZ88UxcH",
"img": "icons/commodities/treasure/token-silver-blue.webp",
"system": {
"description": "<p>When you take damage, you can spend a Hope to negate that damage, after which the mirror shatters.</p>",
"quantity": 1,
"actions": {
"EPN43cQmNC97cCw9": {
"type": "effect",
"_id": "EPN43cQmNC97cCw9",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [
{
"keyIsID": false,
"key": "hope",
"value": 1,
"scalable": false,
"step": null
}
],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/treasure/token-silver-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592792213,
"modifiedTime": 1753592919887,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!UFQVwgYOUZ88UxcH"
}

View file

@ -0,0 +1,63 @@
{
"name": "Morphing Clay",
"type": "consumable",
"_id": "f1NHVSIHJJCIOaBl",
"img": "icons/commodities/stone/ore-chunk-brown.webp",
"system": {
"description": "<p>You can spend a Hope to use this clay, altering your face enough to make you unrecognizable until your next rest.</p>",
"quantity": 1,
"actions": {
"S4wEG1RzfLNtvcg7": {
"type": "effect",
"_id": "S4wEG1RzfLNtvcg7",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [
{
"keyIsID": false,
"key": "hope",
"value": 1,
"scalable": false,
"step": null
}
],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/stone/ore-chunk-brown.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588254032,
"modifiedTime": 1753588327474,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!f1NHVSIHJJCIOaBl"
}

View file

@ -0,0 +1,86 @@
{
"name": "Mythic Dust",
"type": "consumable",
"_id": "Zsh2AvZr8EkGtLyw",
"img": "icons/commodities/materials/bowl-powder-grey.webp",
"system": {
"description": "<p>You can apply this dust to a weapon that deals magic damage to add a d12 to your next damage roll with that weapon.</p>",
"quantity": 1,
"actions": {
"yAE40wCrWg0qC3z0": {
"type": "damage",
"_id": "yAE40wCrWg0qC3z0",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 1,
"dice": "d12",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"magical"
],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": null,
"amount": null
},
"effects": [],
"name": "Apply",
"img": "icons/commodities/materials/bowl-powder-grey.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590241722,
"modifiedTime": 1753590307682,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!Zsh2AvZr8EkGtLyw"
}

View file

@ -0,0 +1,55 @@
{
"name": "Ogre Musk",
"type": "consumable",
"_id": "qr1bosjFcUfuwq4B",
"img": "icons/commodities/materials/slime-thick-green.webp",
"system": {
"description": "<p>You can use this musk to prevent anyone from tracking you by mundane or magical means until your next rest.</p>",
"quantity": 1,
"actions": {
"t0vgSnAuIcj7IevQ": {
"type": "effect",
"_id": "t0vgSnAuIcj7IevQ",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/commodities/materials/slime-thick-green.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591168468,
"modifiedTime": 1753591274462,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!qr1bosjFcUfuwq4B"
}

View file

@ -0,0 +1,111 @@
{
"name": "Potion of Stability",
"type": "consumable",
"_id": "dvL8oaxpEF6jKvYN",
"img": "icons/consumables/potions/bottle-conical-corked-labeled-shell-cyan.webp",
"system": {
"description": "<p>You can drink this potion to choose one additional downtime move.</p>",
"quantity": 1,
"actions": {
"ifj42z5FhfMVyyd1": {
"type": "effect",
"_id": "ifj42z5FhfMVyyd1",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "PjjGC4TpzjSz9z8s",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/bottle-conical-corked-labeled-shell-cyan.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Potion of Stability",
"img": "icons/consumables/potions/bottle-conical-corked-labeled-shell-cyan.webp",
"origin": "Compendium.daggerheart.consumables.Item.dvL8oaxpEF6jKvYN",
"transfer": false,
"_id": "PjjGC4TpzjSz9z8s",
"type": "base",
"system": {},
"changes": [
{
"key": "system.bonuses.rest.shortRest.shortMoves",
"mode": 2,
"value": "1",
"priority": null
},
{
"key": "system.bonuses.rest.longRest.longMoves",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753616591279,
"modifiedTime": 1753616612536,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!dvL8oaxpEF6jKvYN.PjjGC4TpzjSz9z8s"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588038000,
"modifiedTime": 1753616591291,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!dvL8oaxpEF6jKvYN"
}

View file

@ -0,0 +1,86 @@
{
"name": "Redthorn Saliva",
"type": "consumable",
"_id": "s2Exl2XFuoOhtIov",
"img": "icons/commodities/materials/slime-thick-blue.webp",
"system": {
"description": "<p>You can apply this saliva to a weapon that deals physical damage to add a d12 to your next damage roll with that weapon.</p>",
"quantity": 1,
"actions": {
"RJ9WXmH6mwQKpS8O": {
"type": "damage",
"_id": "RJ9WXmH6mwQKpS8O",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 1,
"dice": "d12",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"physical"
],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": null,
"amount": null
},
"effects": [],
"name": "Apply",
"img": "icons/commodities/materials/slime-thick-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590061810,
"modifiedTime": 1753590334574,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!s2Exl2XFuoOhtIov"
}

View file

@ -0,0 +1,55 @@
{
"name": "Replication Parchment",
"type": "consumable",
"_id": "yJkwz4AP6yhGo8Vj",
"img": "icons/sundries/scrolls/scroll-worn-beige.webp",
"system": {
"description": "<p>By touching this piece of parchment to another, you can perfectly copy the second parchments contents. Once used, this parchment becomes mundane paper.</p>",
"quantity": 1,
"actions": {
"j5gIVHXvcGu7PEZZ": {
"type": "effect",
"_id": "j5gIVHXvcGu7PEZZ",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/sundries/scrolls/scroll-worn-beige.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753589306667,
"modifiedTime": 1753589388523,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!yJkwz4AP6yhGo8Vj"
}

View file

@ -0,0 +1,111 @@
{
"name": "Shrinking Potion",
"type": "consumable",
"_id": "HGixKenQwhyRAYNk",
"img": "icons/consumables/potions/flask-decorated-label-pink.webp",
"system": {
"description": "<p>You can drink this potion to halve your size until you choose to drop this form or your next rest. While in this form, you have a +2 bonus to Agility and a 1 penalty to your Proficiency.</p>",
"quantity": 1,
"actions": {
"F9vKFVwtJfR4Q8Kh": {
"type": "effect",
"_id": "F9vKFVwtJfR4Q8Kh",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "yaRLd7eHWYm2MHRM",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/flask-decorated-label-pink.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Shrinking Potion",
"img": "icons/consumables/potions/flask-decorated-label-pink.webp",
"origin": "Compendium.daggerheart.consumables.Item.HGixKenQwhyRAYNk",
"transfer": false,
"_id": "yaRLd7eHWYm2MHRM",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "2",
"priority": null
},
{
"key": "system.proficiency",
"mode": 2,
"value": "-1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592138957,
"modifiedTime": 1753592163296,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!HGixKenQwhyRAYNk.yaRLd7eHWYm2MHRM"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592077792,
"modifiedTime": 1753592138977,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!HGixKenQwhyRAYNk"
}

View file

@ -0,0 +1,32 @@
{
"name": "Sleeping Sap",
"type": "consumable",
"_id": "XZavUVlHEvE2srEt",
"img": "icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp",
"system": {
"description": "<p>You can drink this potion to fall asleep for a full nights rest. You clear all Stress upon waking.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591837472,
"modifiedTime": 1753623358593,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!XZavUVlHEvE2srEt"
}

View file

@ -0,0 +1,32 @@
{
"name": "Snap Powder",
"type": "consumable",
"_id": "cg6VtQ0eVZjDdcK0",
"img": "icons/commodities/materials/bowl-powder-gold.webp",
"system": {
"description": "<p>Mark a Stress and clear a HP.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588752841,
"modifiedTime": 1753623348062,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!cg6VtQ0eVZjDdcK0"
}

View file

@ -0,0 +1,32 @@
{
"name": "Stamina Potion",
"type": "consumable",
"_id": "hf3k1POoVSooJyN2",
"img": "icons/consumables/potions/bottle-corked-green.webp",
"system": {
"description": "<p>Clear 1d4+1 Stress.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588904835,
"modifiedTime": 1753623366482,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!hf3k1POoVSooJyN2"
}

View file

@ -0,0 +1,86 @@
{
"name": "Stardrop",
"type": "consumable",
"_id": "y4c1jrlHrf0wBWOq",
"img": "icons/magic/light/projectiles-star-purple.webp",
"system": {
"description": "<p>You can use this stardrop to summon a hailstorm of comets that deals 8d20 physical damage to all targets within Very Far range.</p>",
"quantity": 1,
"actions": {
"pt5U6hlyx4T7MUOa": {
"type": "damage",
"_id": "pt5U6hlyx4T7MUOa",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 8,
"dice": "d20",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"physical"
],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": "any",
"amount": null
},
"effects": [],
"name": "Use",
"img": "icons/magic/light/projectiles-star-purple.webp",
"range": "veryFar"
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592933782,
"modifiedTime": 1753593062814,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!y4c1jrlHrf0wBWOq"
}

View file

@ -0,0 +1,105 @@
{
"name": "Stride Potion",
"type": "consumable",
"_id": "lNtcrkgFGOJNaroE",
"img": "icons/consumables/potions/potion-flask-corked-cyan.webp",
"system": {
"description": "<p>You gain a +1 bonus to your next Agility Roll.</p>",
"quantity": 1,
"actions": {
"GwQgdB3E1HogFKvD": {
"type": "effect",
"_id": "GwQgdB3E1HogFKvD",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [
{
"_id": "xQ0xPDxskzZH4jeK",
"onSave": false
}
],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/potion-flask-corked-cyan.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [
{
"name": "Stride Potion",
"img": "icons/consumables/potions/potion-flask-corked-cyan.webp",
"origin": "Compendium.daggerheart.consumables.Item.lNtcrkgFGOJNaroE",
"transfer": false,
"_id": "xQ0xPDxskzZH4jeK",
"type": "base",
"system": {},
"changes": [
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "1",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": null,
"combat": null,
"seconds": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"description": "",
"tint": "#ffffff",
"statuses": [],
"sort": 0,
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753586060323,
"modifiedTime": 1753586326926,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items.effects!lNtcrkgFGOJNaroE.xQ0xPDxskzZH4jeK"
}
],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753585993187,
"modifiedTime": 1753587999711,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!lNtcrkgFGOJNaroE"
}

View file

@ -0,0 +1,55 @@
{
"name": "Sun Tree Sap",
"type": "consumable",
"_id": "kwexUzdM9wm1Qums",
"img": "icons/consumables/drinks/wine-amphora-clay-pink.webp",
"system": {
"description": "<p>Consume this sap to roll a [[/r d6]]. On a result of 56, clear 2 HP. On a result of 24, clear 3 Stress. On a result of 1, see through the veil of death and return changed, gaining one scar.</p>",
"quantity": 1,
"actions": {
"bxM1ig880ykRgmTl": {
"type": "effect",
"_id": "bxM1ig880ykRgmTl",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/drinks/wine-amphora-clay-pink.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753590791260,
"modifiedTime": 1753590920951,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!kwexUzdM9wm1Qums"
}

View file

@ -0,0 +1,32 @@
{
"name": "Sweet Moss",
"type": "consumable",
"_id": "GrDrRqWgv7gvl9vn",
"img": "icons/consumables/plants/succulent-bundle-green.webp",
"system": {
"description": "<p>You can consume this moss during a rest to clear 1d10 HP or 1d10 Stress.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753592391195,
"modifiedTime": 1753623392811,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!GrDrRqWgv7gvl9vn"
}

View file

@ -0,0 +1,106 @@
{
"name": "Unstable Arcane Shard",
"type": "consumable",
"_id": "mUepnLbkvFk0ha4Z",
"img": "icons/commodities/gems/gem-faceted-cushion-teal-black.webp",
"system": {
"description": "<p>You can make a Finesse Roll to throw this shard at a group of adversaries within Far range. Targets you succeed against take 1d20 magic damage.</p>",
"quantity": 1,
"actions": {
"D7BTCUV5DOXmqC0l": {
"type": "attack",
"_id": "D7BTCUV5DOXmqC0l",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [
{
"resultBased": false,
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 1,
"dice": "d20",
"bonus": null
},
"applyTo": "hitPoints",
"type": [
"magical"
],
"base": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": "hostile",
"amount": null
},
"effects": [],
"roll": {
"type": "attack",
"trait": "finesse",
"difficulty": null,
"bonus": null,
"advState": "neutral",
"diceRolling": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"compare": "above",
"treshold": 1
},
"useDefault": false
},
"save": {
"trait": null,
"difficulty": 10,
"damageMod": "none"
},
"name": "Throw",
"img": "icons/commodities/gems/gem-faceted-cushion-teal-black.webp",
"range": "far"
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587732694,
"modifiedTime": 1753587875310,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!mUepnLbkvFk0ha4Z"
}

View file

@ -0,0 +1,32 @@
{
"name": "Varik Leaves",
"type": "consumable",
"_id": "hvy5BkG3F6iOIXTx",
"img": "icons/consumables/plants/leaf-serrated-pink.webp",
"system": {
"description": "<p>You can eat these paired leaves to immediately gain 2 Hope.</p>",
"quantity": 1,
"actions": {},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587484164,
"modifiedTime": 1753623431444,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!hvy5BkG3F6iOIXTx"
}

View file

@ -0,0 +1,55 @@
{
"name": "Vial of Darksmoke",
"type": "consumable",
"_id": "Nwv5ydGf0MWnzq1n",
"img": "icons/consumables/potions/bottle-bulb-empty-glass.webp",
"system": {
"description": "<p>When an adversary attacks you, use this vial and roll a number of d6s equal to your Agility. Add the highest result to your Evasion against the attack.</p>",
"quantity": 1,
"actions": {
"4nFnAoyH5dENizsx": {
"type": "effect",
"_id": "4nFnAoyH5dENizsx",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "reaction",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/consumables/potions/bottle-bulb-empty-glass.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753588345314,
"modifiedTime": 1753616649293,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!Nwv5ydGf0MWnzq1n"
}

View file

@ -0,0 +1,55 @@
{
"name": "Vial of Moondrip",
"type": "consumable",
"_id": "VqEX5YwK5oL3r1t6",
"img": "icons/consumables/potions/bottle-ornate-bat-teal.webp",
"system": {
"description": "<p>When you drink the contents of this vial, you can see in total darkness until your next rest.</p>",
"quantity": 1,
"actions": {
"6Ny75zR1b8I8Ycsb": {
"type": "effect",
"_id": "6Ny75zR1b8I8Ycsb",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Drink",
"img": "icons/consumables/potions/bottle-ornate-bat-teal.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753587590537,
"modifiedTime": 1753588714959,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!VqEX5YwK5oL3r1t6"
}

View file

@ -0,0 +1,55 @@
{
"name": "Wingsprout",
"type": "consumable",
"_id": "n10vozlmosVR6lo4",
"img": "icons/consumables/plants/leaf-broad-blue.webp",
"system": {
"description": "<p>You gain magic wings that allow you to fly for a number of minutes equal to your level.</p>",
"quantity": 1,
"actions": {
"HopgGHn12CHiDNuk": {
"type": "effect",
"_id": "HopgGHn12CHiDNuk",
"systemPath": "actions",
"description": "",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"effects": [],
"target": {
"type": null,
"amount": null
},
"name": "Use",
"img": "icons/consumables/plants/leaf-broad-blue.webp",
"range": ""
}
},
"consumeOnUse": true
},
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0,
"OFxauskoxcvVTVNA": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.344",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753591283853,
"modifiedTime": 1753591361344,
"lastModifiedBy": "OFxauskoxcvVTVNA"
},
"_key": "!items!n10vozlmosVR6lo4"
}

View file

@ -105,6 +105,10 @@
align-items: center; align-items: center;
justify-content: end; justify-content: end;
gap: 8px; gap: 8px;
.unequipped {
opacity: .5;
}
} }
} }

View file

@ -19,7 +19,7 @@
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
gap: 5px; gap: 5px;
margin-top: 36px; margin-top: var(--header-height);
text-align: center; text-align: center;
width: 80%; width: 80%;

View file

@ -15,6 +15,9 @@
// Window header styles // Window header styles
.window-header { .window-header {
position: absolute;
width: 100%;
height: var(--header-height);
background: transparent; background: transparent;
border-bottom: none; border-bottom: none;
justify-content: end; justify-content: end;
@ -41,11 +44,9 @@
.window-content { .window-content {
padding: 0; padding: 0;
position: relative; position: relative;
top: -36px;
min-height: -webkit-fill-available; min-height: -webkit-fill-available;
transition: opacity 0.3s ease; transition: opacity 0.3s ease;
padding-bottom: 20px; padding-bottom: 20px;
margin-bottom: -36px;
.tab { .tab {
padding: 0 10px; padding: 0 10px;

View file

@ -4,7 +4,7 @@
.application.sheet.daggerheart.actor.dh-style.adversary { .application.sheet.daggerheart.actor.dh-style.adversary {
.adversary-header-sheet { .adversary-header-sheet {
padding: 0 15px; padding: 0 15px;
padding-top: 36px; padding-top: var(--header-height);
width: 100%; width: 100%;
.name-row { .name-row {

View file

@ -16,7 +16,7 @@
.application.sheet.daggerheart.actor.dh-style.character { .application.sheet.daggerheart.actor.dh-style.character {
.character-header-sheet { .character-header-sheet {
padding: 0 15px; padding: 0 15px;
padding-top: 36px; padding-top: var(--header-height);
width: 100%; width: 100%;
.name-row { .name-row {

View file

@ -11,7 +11,6 @@
width: 100%; width: 100%;
padding-bottom: 0; padding-bottom: 0;
overflow-x: auto; overflow-x: auto;
margin-bottom: 0;
.character-sidebar-sheet { .character-sidebar-sheet {
grid-row: 1 / span 2; grid-row: 1 / span 2;

View file

@ -119,10 +119,10 @@
"flags": {} "flags": {}
}, },
{ {
"name": "miscellaneous", "name": "loot",
"label": "Miscellaneous", "label": "Loot",
"system": "daggerheart", "system": "daggerheart",
"path": "packs/items/miscellaneous.db", "path": "packs/items/loot.db",
"type": "Item", "type": "Item",
"private": false, "private": false,
"flags": {} "flags": {}
@ -172,7 +172,7 @@
"name": "Items", "name": "Items",
"sorting": "m", "sorting": "m",
"color": "#000000", "color": "#000000",
"packs": ["armors", "weapons", "consumables", "miscellaneous"] "packs": ["armors", "weapons", "consumables", "loot"]
} }
] ]
} }
@ -222,7 +222,7 @@
"domainCard": { "domainCard": {
"htmlFields": ["description"] "htmlFields": ["description"]
}, },
"miscellaneous": { "loot": {
"htmlFields": ["description"] "htmlFields": ["description"]
}, },
"consumable": { "consumable": {

View file

@ -1,6 +1,6 @@
<fieldset class="flex"> <fieldset class="flex">
<legend>{{localize "DAGGERHEART.GENERAL.save"}}</legend> <legend>{{localize "DAGGERHEART.GENERAL.save"}}</legend>
{{formField fields.trait label="Trait" name="save.trait" value=source.trait localize=true}} {{formField fields.trait label="Trait" name="save.trait" value=source.trait localize=true}}
{{formField fields.difficulty label="Difficulty" name="save.difficulty" value=source.difficulty disabled=(not source.trait)}} {{formField fields.difficulty label="Difficulty" name="save.difficulty" value=source.difficulty disabled=(not source.trait) placeholder=@root.baseSaveDifficulty}}
{{formField fields.damageMod label="Damage on Save" name="save.damageMod" value=source.damageMod localize=true disabled=(not source.trait)}} {{formField fields.damageMod label="Damage on Save" name="save.damageMod" value=source.damageMod localize=true disabled=(not source.trait)}}
</fieldset> </fieldset>

View file

@ -61,9 +61,9 @@
canCreate=true canCreate=true
}} }}
{{> 'daggerheart.inventory-items' {{> 'daggerheart.inventory-items'
title='TYPES.Item.miscellaneous' title='TYPES.Item.loot'
type='miscellaneous' type='loot'
collection=document.itemTypes.miscellaneous collection=document.itemTypes.loot
isGlassy=true isGlassy=true
canCreate=true canCreate=true
}} }}

View file

@ -4,7 +4,7 @@
<line-div></line-div> <line-div></line-div>
<h1 class='item-name'><input type='text' name='name' value='{{source.name}}' /></h1> <h1 class='item-name'><input type='text' name='name' value='{{source.name}}' /></h1>
<div class='item-description'> <div class='item-description'>
<h3>{{localize 'TYPES.Item.miscellaneous'}}</h3> <h3>{{localize 'TYPES.Item.loot'}}</h3>
</div> </div>
</div> </div>
</header> </header>