Added all armors

This commit is contained in:
WBHarry 2025-07-29 19:23:23 +02:00
parent fd59a8f76e
commit 136f507b4e
43 changed files with 3028 additions and 113 deletions

View file

@ -629,6 +629,16 @@
} }
} }
}, },
"painful": {
"name": "Painful",
"description": "Each time you mark an Armor Slot, you must mark a Stress.",
"actions": {
"pain": {
"name": "Pain",
"description": "Each time you mark an Armor Slot, you must mark a Stress."
}
}
},
"physical": { "physical": {
"name": "Physical", "name": "Physical",
"description": "You can't mark an Armor Slot to reduce magic damage.", "description": "You can't mark an Armor Slot to reduce magic damage.",
@ -678,7 +688,7 @@
"sharp": { "sharp": {
"name": "Sharp", "name": "Sharp",
"description": "On a successful attack against a target within Melee range, add a d4 to the damage roll.", "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll.",
"actions": { "effects": {
"sharp": { "sharp": {
"name": "Sharp", "name": "Sharp",
"description": "On a successful attack against a target within Melee range, add a d4 to the damage roll." "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll."

View file

@ -4,12 +4,29 @@ export const armorFeatures = {
description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.description',
actions: [ actions: [
{ {
type: 'effect', type: 'damage',
actionType: 'action', actionType: 'action',
chatDisplay: true, chatDisplay: true,
name: 'DAGGERHEART.CONFIG.ArmorFeature.burning.actions.burn.name', name: 'DAGGERHEART.CONFIG.ArmorFeature.burning.actions.burn.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.actions.burn.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.actions.burn.description',
img: 'icons/magic/fire/flame-burning-embers-yellow.webp' img: 'icons/magic/fire/flame-burning-embers-yellow.webp',
range: 'melee',
target: {
type: 'hostile'
},
damage: {
parts: [
{
applyTo: 'stress',
value: {
custom: {
enabled: true,
formula: '1'
}
}
}
]
}
} }
] ]
}, },
@ -183,7 +200,7 @@ export const armorFeatures = {
}, },
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
] ]
@ -208,6 +225,26 @@ export const armorFeatures = {
} }
] ]
}, },
painful: {
label: 'DAGGERHEART.CONFIG.ArmorFeature.painful.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.painful.description',
actions: [
{
type: 'effect',
actionType: 'action',
chatDisplay: true,
name: 'DAGGERHEART.CONFIG.ArmorFeature.painful.actions.pain.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.painful.actions.pain.description',
img: 'icons/skills/wounds/injury-face-impact-orange.webp',
cost: [
{
key: 'stress',
value: 1
}
]
}
]
},
physical: { physical: {
label: 'DAGGERHEART.CONFIG.ArmorFeature.physical.name', label: 'DAGGERHEART.CONFIG.ArmorFeature.physical.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.physical.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.physical.description',
@ -243,31 +280,21 @@ export const armorFeatures = {
reinforced: { reinforced: {
label: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.name', label: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.description',
actions: [ effects: [
{ {
type: 'effect', name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.name',
actionType: 'action', description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.description',
chatDisplay: true,
name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.actions.reinforce.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.actions.reinforce.description',
img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp', img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp',
effects: [ changes: [
{ {
name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.name', key: 'system.bunuses.damageThresholds.major',
description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.description', mode: 2,
img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp', value: '2'
changes: [ },
{ {
key: 'system.bunuses.damageThresholds.major', key: 'system.bunuses.damageThresholds.severe',
mode: 2, mode: 2,
value: '2' value: '2'
},
{
key: 'system.bunuses.damageThresholds.severe',
mode: 2,
value: '2'
}
]
} }
] ]
} }
@ -278,39 +305,45 @@ export const armorFeatures = {
description: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.description',
actions: [ actions: [
{ {
type: 'effect', type: 'attack',
actionType: 'action', actionType: 'action',
chatDisplay: true, chatDisplay: true,
name: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.actions.resilient.name', name: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.actions.resilient.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.actions.resilient.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.actions.resilient.description',
img: 'icons/magic/life/heart-cross-purple-orange.webp' img: 'icons/magic/life/heart-cross-purple-orange.webp',
roll: {
type: 'diceSet',
diceRolling: {
compare: 'equal',
dice: 'd6',
multiplier: 'flat',
flatMultiplier: 1,
treshold: 6
}
}
} }
] ]
}, },
sharp: { sharp: {
label: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.name', label: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.description',
actions: [ effects: [
{ {
type: 'damage', name: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.name',
actionType: 'action', description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.description',
chatDisplay: true, img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp',
name: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.actions.sharp.name', changes: [
description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.actions.sharp.description', {
img: 'icons/skills/melee/blade-tips-triple-bent-white.webp', key: 'system.bonuses.damage.primaryWeapon.dice',
damage: { mode: 2,
parts: [ value: '1d4'
{ },
type: 'physical', {
value: { key: 'system.bonuses.damage.secondaryWeapon.dice',
custom: { mode: 2,
enabled: true, value: '1d4'
formula: '1d4' }
} ]
}
}
]
}
} }
] ]
}, },
@ -327,7 +360,7 @@ export const armorFeatures = {
img: 'icons/magic/defensive/illusion-evasion-echo-purple.webp', img: 'icons/magic/defensive/illusion-evasion-echo-purple.webp',
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
] ]
@ -339,12 +372,26 @@ export const armorFeatures = {
description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.description',
actions: [ actions: [
{ {
type: 'effect', type: 'attack',
actionType: 'action', actionType: 'action',
chatDisplay: true, chatDisplay: true,
name: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.actions.slowTime.name', name: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.actions.slowTime.name',
description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.actions.slowTime.description', description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.actions.slowTime.description',
img: 'icons/magic/time/hourglass-brown-orange.webp' img: 'icons/magic/time/hourglass-brown-orange.webp',
cost: [
{
key: 'armorStack',
value: 1
}
],
roll: {
type: 'diceSet',
diceRolling: {
dice: 'd4',
multiplier: 'flat',
flatMultiplier: 1
}
}
} }
] ]
}, },
@ -460,7 +507,7 @@ export const weaponFeatures = {
img: 'icons/skills/movement/ball-spinning-blue.webp', img: 'icons/skills/movement/ball-spinning-blue.webp',
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1, value: 1,
scalable: true, scalable: true,
step: 1 step: 1
@ -522,7 +569,7 @@ export const weaponFeatures = {
}, },
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
], ],
@ -559,7 +606,7 @@ export const weaponFeatures = {
}, },
cost: [ cost: [
{ {
type: 'hope', key: 'hope',
value: 1 value: 1
} }
] ]
@ -614,7 +661,7 @@ export const weaponFeatures = {
}, },
cost: [ cost: [
{ {
type: 'armorStack', key: 'armorStack',
value: 1 value: 1
} }
], ],
@ -693,7 +740,7 @@ export const weaponFeatures = {
img: 'icons/skills/melee/strike-flail-destructive-yellow.webp', img: 'icons/skills/melee/strike-flail-destructive-yellow.webp',
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
] ]
@ -778,7 +825,7 @@ export const weaponFeatures = {
img: 'icons/magic/control/debuff-chains-ropes-net-white.webp', img: 'icons/magic/control/debuff-chains-ropes-net-white.webp',
cost: [ cost: [
{ {
type: 'hope', key: 'hope',
value: 1 value: 1
} }
] ]
@ -952,7 +999,7 @@ export const weaponFeatures = {
img: 'icons/magic/control/buff-luck-fortune-green.webp', img: 'icons/magic/control/buff-luck-fortune-green.webp',
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
] ]
@ -1000,7 +1047,7 @@ export const weaponFeatures = {
img: 'icons/skills/wounds/injury-face-impact-orange.webp', img: 'icons/skills/wounds/injury-face-impact-orange.webp',
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
] ]
@ -1055,7 +1102,7 @@ export const weaponFeatures = {
}, },
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
], ],
@ -1144,7 +1191,7 @@ export const weaponFeatures = {
img: 'icons/skills/movement/arrow-upward-yellow.webp', img: 'icons/skills/movement/arrow-upward-yellow.webp',
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
] ]
@ -1306,7 +1353,7 @@ export const weaponFeatures = {
img: 'icons/magic/control/fear-fright-mask-orange.webp', img: 'icons/magic/control/fear-fright-mask-orange.webp',
cost: [ cost: [
{ {
type: 'stress', key: 'stress',
value: 1 value: 1
} }
] ]

View file

@ -71,13 +71,14 @@ export default class DHArmor extends AttachableItem {
for (var feature of added) { for (var feature of added) {
const featureData = armorFeatures[feature.value]; const featureData = armorFeatures[feature.value];
if (featureData.effects?.length > 0) { if (featureData.effects?.length > 0) {
const embeddedItems = await this.parent.createEmbeddedDocuments('ActiveEffect', [ const embeddedItems = await this.parent.createEmbeddedDocuments(
{ 'ActiveEffect',
name: game.i18n.localize(featureData.label), featureData.effects.map(effect => ({
description: game.i18n.localize(featureData.description), ...effect,
changes: featureData.effects.flatMap(x => x.changes) name: game.i18n.localize(effect.name),
} description: game.i18n.localize(effect.description)
]); }))
);
feature.effectIds = embeddedItems.map(x => x.id); feature.effectIds = embeddedItems.map(x => x.id);
} }
@ -93,6 +94,7 @@ export default class DHArmor extends AttachableItem {
description: game.i18n.localize(effect.description) description: game.i18n.localize(effect.description)
})) }))
); );
feature.effectIds = [...(feature.effectIds ?? []), ...embeddedEffects.map(x => x.id)];
const cls = game.system.api.models.actions.actionsTypes[action.type]; const cls = game.system.api.models.actions.actionsTypes[action.type];
const actionId = foundry.utils.randomID(); const actionId = foundry.utils.randomID();

View file

@ -0,0 +1,89 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Advanced Chainmail Armor",
"type": "armor",
"_id": "LzLOJ9EVaHWAjoq9",
"img": "icons/equipment/chest/breastplate-banded-steel-gold.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 6,
"armorFeatures": [
{
"value": "heavy",
"effectIds": [
"qlzHOAnpBYzosQxK"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 13,
"severe": 31
}
},
"effects": [
{
"name": "Heavy",
"description": "-1 to Evasion",
"img": "icons/commodities/metal/ingot-worn-iron.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-1"
}
],
"_id": "qlzHOAnpBYzosQxK",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753807844639,
"modifiedTime": 1753807844639,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!LzLOJ9EVaHWAjoq9.qlzHOAnpBYzosQxK"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807810859,
"modifiedTime": 1753807844642,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!LzLOJ9EVaHWAjoq9"
}

View file

@ -0,0 +1,94 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Advanced Full Plate Armor",
"type": "armor",
"_id": "crIbCb9NZ4K0VpoU",
"img": "icons/equipment/chest/breastplate-layered-steel-grey.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 6,
"armorFeatures": [
{
"value": "veryheavy",
"effectIds": [
"awdHgEaM54G3emOU"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 15,
"severe": 35
}
},
"effects": [
{
"name": "Very Heavy",
"description": "-2 to Evasion; -1 to Agility",
"img": "icons/commodities/metal/ingot-stamped-steel.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-2"
},
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "-1"
}
],
"_id": "awdHgEaM54G3emOU",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753809243346,
"modifiedTime": 1753809243346,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!crIbCb9NZ4K0VpoU.awdHgEaM54G3emOU"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809204693,
"modifiedTime": 1753809243349,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!crIbCb9NZ4K0VpoU"
}

View file

@ -0,0 +1,89 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Advanced Gambeson Armor",
"type": "armor",
"_id": "epkAmlZVk7HOfUUT",
"img": "icons/equipment/chest/breastplate-purple.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "flexible",
"effectIds": [
"Fq9Q93IHCchhfSss"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 9,
"severe": 23
}
},
"effects": [
{
"name": "Flexible",
"description": "+1 to Evasion",
"img": "icons/magic/movement/abstract-ribbons-red-orange.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "1"
}
],
"_id": "Fq9Q93IHCchhfSss",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753807740227,
"modifiedTime": 1753807740227,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!epkAmlZVk7HOfUUT.Fq9Q93IHCchhfSss"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807704469,
"modifiedTime": 1753807740230,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!epkAmlZVk7HOfUUT"
}

View file

@ -0,0 +1,42 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Advanced Leather Armor",
"type": "armor",
"_id": "itSOp2GCyem0f7oM",
"img": "icons/equipment/chest/breastplate-layered-leather-blue.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 5,
"armorFeatures": [],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 11,
"severe": 27
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807744573,
"modifiedTime": 1753807795515,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!itSOp2GCyem0f7oM"
}

View file

@ -0,0 +1,89 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Bellamoi Fine Armor",
"type": "armor",
"_id": "WuoVwZA53XRAIt6d",
"img": "icons/equipment/chest/breastplate-layered-gold.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "gilded",
"effectIds": [
"Hy0sNtFS1JAXxgwC"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 11,
"severe": 27
}
},
"effects": [
{
"name": "Gilded",
"description": "+1 to Presence",
"img": "icons/magic/control/control-influence-crown-gold.webp",
"changes": [
{
"key": "system.traits.presence.value",
"mode": 2,
"value": "1"
}
],
"_id": "Hy0sNtFS1JAXxgwC",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753807887679,
"modifiedTime": 1753807887679,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!WuoVwZA53XRAIt6d.Hy0sNtFS1JAXxgwC"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807855787,
"modifiedTime": 1753807887685,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!WuoVwZA53XRAIt6d"
}

View file

@ -0,0 +1,89 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Bladefare Armor",
"type": "armor",
"_id": "mNN6pvcsS10ChrWF",
"img": "icons/equipment/chest/breastplate-collared-steel-grey.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 6,
"armorFeatures": [
{
"value": "physical",
"effectIds": [
"s8KtTIngTjnOlaTP"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 16,
"severe": 39
}
},
"effects": [
{
"name": "Physical",
"description": "You can't mark an Armor Slot to reduce magic damage.",
"img": "icons/commodities/stone/ore-pile-tan.webp",
"changes": [
{
"key": "system.rules.damageReduction.physical",
"mode": 5,
"value": "1"
}
],
"_id": "s8KtTIngTjnOlaTP",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753808769033,
"modifiedTime": 1753808769033,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!mNN6pvcsS10ChrWF.s8KtTIngTjnOlaTP"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753808752024,
"modifiedTime": 1753808787752,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!mNN6pvcsS10ChrWF"
}

View file

@ -0,0 +1,89 @@
{
"folder": "h4QgrovjVZ1oee7O",
"name": "Chainmail Armor",
"type": "armor",
"_id": "haULhuEg37zUUvhb",
"img": "icons/equipment/chest/breastplate-scale-grey.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 1,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "heavy",
"effectIds": [
"ZfO5NjpqEIzZVlPq"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 7,
"severe": 15
}
},
"effects": [
{
"name": "Heavy",
"description": "-1 to Evasion",
"img": "icons/commodities/metal/ingot-worn-iron.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-1"
}
],
"_id": "ZfO5NjpqEIzZVlPq",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753805298651,
"modifiedTime": 1753805298651,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!haULhuEg37zUUvhb.ZfO5NjpqEIzZVlPq"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805286605,
"modifiedTime": 1753805329039,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!haULhuEg37zUUvhb"
}

View file

@ -0,0 +1,89 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Channeling Armor",
"type": "armor",
"_id": "vMJxEWz1srfwMsoj",
"img": "icons/equipment/chest/robe-collared-blue.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "channeling",
"effectIds": [
"8bwf1Ri3jYkjphEv"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 13,
"severe": 36
}
},
"effects": [
{
"name": "Channeling",
"description": "+1 to Spellcast Rolls",
"img": "icons/magic/symbols/rune-sigil-horned-blue.webp",
"changes": [
{
"key": "system.bonuses.roll.spellcast",
"mode": 2,
"value": "1"
}
],
"_id": "8bwf1Ri3jYkjphEv",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753809448084,
"modifiedTime": 1753809448084,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!vMJxEWz1srfwMsoj.8bwf1Ri3jYkjphEv"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809433880,
"modifiedTime": 1753809460722,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!vMJxEWz1srfwMsoj"
}

View file

@ -0,0 +1,80 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Dragonscale Armor",
"type": "armor",
"_id": "mdQ69eFHyAQUDmE7",
"img": "icons/equipment/chest/breastplate-rivited-red.webp",
"system": {
"description": "",
"actions": {
"J1MCpcfXByKaSSgx": {
"type": "effect",
"actionType": "action",
"chatDisplay": true,
"name": "Impenetrable",
"description": "Once per short rest, when you would mark your last Hit Point, you can instead mark a Stress.",
"img": "icons/magic/defensive/shield-barrier-flaming-pentagon-purple-orange.webp",
"uses": {
"max": 1,
"recovery": "shortRest",
"value": 0
},
"cost": [
{
"key": "stress",
"value": 1,
"keyIsID": false,
"scalable": false,
"step": null
}
],
"_id": "J1MCpcfXByKaSSgx",
"effects": [],
"systemPath": "actions",
"target": {
"type": "any",
"amount": null
}
}
},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "impenetrable",
"effectIds": [],
"actionIds": [
"J1MCpcfXByKaSSgx"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 11,
"severe": 27
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807902750,
"modifiedTime": 1753809495490,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!mdQ69eFHyAQUDmE7"
}

View file

@ -0,0 +1,104 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Dunamis Silkchain",
"type": "armor",
"_id": "hAY6UgdGT7dj22Pr",
"img": "icons/equipment/chest/robe-layered-red.webp",
"system": {
"description": "",
"actions": {
"8PD5JQuS05IA6HJT": {
"type": "attack",
"actionType": "action",
"chatDisplay": true,
"name": "Slow Time",
"description": "Mark an Armor Slot to roll a d4 and add its result as a bonus to your Evasion against an incoming attack.",
"img": "icons/magic/time/hourglass-brown-orange.webp",
"cost": [
{
"key": "armorStack",
"value": 1,
"keyIsID": false,
"scalable": false,
"step": null
}
],
"roll": {
"type": "diceSet",
"diceRolling": {
"dice": "d4",
"multiplier": "flat",
"flatMultiplier": 1,
"compare": null,
"treshold": null
},
"trait": null,
"difficulty": null,
"bonus": null,
"advState": "neutral",
"useDefault": false
},
"_id": "8PD5JQuS05IA6HJT",
"effects": [],
"systemPath": "actions",
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [],
"includeBase": false
},
"target": {
"type": "any",
"amount": null
},
"save": {
"trait": null,
"difficulty": null,
"damageMod": "none"
}
}
},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 7,
"armorFeatures": [
{
"value": "timeslowing",
"effectIds": [],
"actionIds": [
"8PD5JQuS05IA6HJT"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 13,
"severe": 36
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809264956,
"modifiedTime": 1753809422818,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!hAY6UgdGT7dj22Pr"
}

View file

@ -0,0 +1,89 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Elundrian Chain Mail",
"type": "armor",
"_id": "Q6LxmtFetDDkoZVZ",
"img": "icons/equipment/chest/breastplate-sculpted-green.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "warded",
"effectIds": [
"xGxqTCO8MjNq5Cw6"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 9,
"severe": 21
}
},
"effects": [
{
"name": "Warded",
"description": "You reduce incoming magic damage by your Armor Score before applying it to your damage thresholds.",
"img": "icons/magic/defensive/barrier-shield-dome-pink.webp",
"changes": [
{
"key": "system.resistance.magical.reduction",
"mode": 2,
"value": "@system.armorScore"
}
],
"_id": "xGxqTCO8MjNq5Cw6",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753805566171,
"modifiedTime": 1753805566171,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!Q6LxmtFetDDkoZVZ.xGxqTCO8MjNq5Cw6"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805557786,
"modifiedTime": 1753805605453,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!Q6LxmtFetDDkoZVZ"
}

View file

@ -0,0 +1,103 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Emberwoven Armor",
"type": "armor",
"_id": "bcQUh4QG3qFX0Vx6",
"img": "icons/equipment/chest/breastplate-layered-gilded-orange.webp",
"system": {
"description": "",
"actions": {
"L8mHf4A8SylyxsMH": {
"type": "damage",
"actionType": "action",
"chatDisplay": true,
"name": "Burn",
"description": "When an adversary attacks you within Melee range, they mark a Stress.",
"img": "icons/magic/fire/flame-burning-embers-yellow.webp",
"range": "melee",
"target": {
"type": "hostile",
"amount": null
},
"damage": {
"parts": [
{
"applyTo": "stress",
"value": {
"custom": {
"enabled": true,
"formula": "1"
},
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null
},
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
},
"base": false,
"type": []
}
],
"includeBase": false
},
"_id": "L8mHf4A8SylyxsMH",
"effects": [],
"systemPath": "actions",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
}
}
},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 0,
"armorFeatures": [
{
"value": "burning",
"effectIds": [],
"actionIds": [
"L8mHf4A8SylyxsMH"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 0,
"severe": 0
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809470138,
"modifiedTime": 1753809633344,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!bcQUh4QG3qFX0Vx6"
}

View file

@ -0,0 +1,89 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Full Fortified Armor",
"type": "armor",
"_id": "7emTSt6nhZuTlvt5",
"img": "icons/equipment/chest/breastplate-layered-steel.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "fortified",
"effectIds": [
"QIefVb73cm9gYju8"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 15,
"severe": 40
}
},
"effects": [
{
"name": "Fortified",
"description": "When you mark an Armor Slot, you reduce the severity of an attack by two thresholds instead of one.",
"img": "icons/magic/defensive/shield-barrier-glowing-blue.webp",
"changes": [
{
"key": "system.rules.damageReduction.increasePerArmorMark",
"mode": 5,
"value": "2"
}
],
"_id": "QIefVb73cm9gYju8",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753809671654,
"modifiedTime": 1753809671654,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!7emTSt6nhZuTlvt5.QIefVb73cm9gYju8"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809653710,
"modifiedTime": 1753809691935,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!7emTSt6nhZuTlvt5"
}

View file

@ -0,0 +1,94 @@
{
"folder": "h4QgrovjVZ1oee7O",
"name": "Full Plate Armor",
"type": "armor",
"_id": "UdUJNa31WxFW2noa",
"img": "icons/equipment/chest/breastplate-collared-steel.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 1,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "veryheavy",
"effectIds": [
"mfKMW9SX3Mnos1nY"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 8,
"severe": 17
}
},
"effects": [
{
"name": "Very Heavy",
"description": "-2 to Evasion; -1 to Agility",
"img": "icons/commodities/metal/ingot-stamped-steel.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-2"
},
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "-1"
}
],
"_id": "mfKMW9SX3Mnos1nY",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753805351522,
"modifiedTime": 1753805351522,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!UdUJNa31WxFW2noa.mfKMW9SX3Mnos1nY"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805338471,
"modifiedTime": 1753805365355,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!UdUJNa31WxFW2noa"
}

View file

@ -0,0 +1,89 @@
{
"folder": "h4QgrovjVZ1oee7O",
"name": "Gambeson Armor",
"type": "armor",
"_id": "yJFp1bfpecDcStVK",
"img": "icons/equipment/chest/vest-leather-tattered-white.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 1,
"equipped": false,
"baseScore": 3,
"armorFeatures": [
{
"value": "flexible",
"effectIds": [
"v1FNEsypRF5W6vVc"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 5,
"severe": 11
}
},
"effects": [
{
"name": "Flexible",
"description": "+1 to Evasion",
"img": "icons/magic/movement/abstract-ribbons-red-orange.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "1"
}
],
"_id": "v1FNEsypRF5W6vVc",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753805133921,
"modifiedTime": 1753805133921,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!yJFp1bfpecDcStVK.v1FNEsypRF5W6vVc"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753804995685,
"modifiedTime": 1753805399875,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!yJFp1bfpecDcStVK"
}

View file

@ -0,0 +1,96 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Harrowbone Armor",
"type": "armor",
"_id": "dvyQeUVRLc9y6rnt",
"img": "icons/equipment/chest/breastplate-gorget-steel.webp",
"system": {
"description": "",
"actions": {
"IzM88FIxQ35P5VB2": {
"type": "attack",
"actionType": "action",
"chatDisplay": true,
"name": "Resilient",
"description": "Before you mark your last Armor Slot, roll a d6. On a result of 6, reduce the severity by one threshold without marking an Armor Slot.",
"img": "icons/magic/life/heart-cross-purple-orange.webp",
"roll": {
"type": "diceSet",
"diceRolling": {
"compare": "equal",
"dice": "d6",
"multiplier": "flat",
"flatMultiplier": 1,
"treshold": 6
},
"trait": null,
"difficulty": null,
"bonus": null,
"advState": "neutral",
"useDefault": false
},
"_id": "IzM88FIxQ35P5VB2",
"effects": [],
"systemPath": "actions",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"damage": {
"parts": [],
"includeBase": false
},
"target": {
"type": "any",
"amount": null
},
"save": {
"trait": null,
"difficulty": null,
"damageMod": "none"
}
}
},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "resilient",
"effectIds": [],
"actionIds": [
"IzM88FIxQ35P5VB2"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 9,
"severe": 21
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805616349,
"modifiedTime": 1753807254838,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!dvyQeUVRLc9y6rnt"
}

View file

@ -0,0 +1,89 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Improved Chainmail Armor",
"type": "armor",
"_id": "K5WkjS0NGqHYmhU3",
"img": "icons/equipment/chest/breastplate-metal-scaled-grey.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "heavy",
"effectIds": [
"JHupzYULxdQzFzuj"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 11,
"severe": 24
}
},
"effects": [
{
"name": "Heavy",
"description": "-1 to Evasion",
"img": "icons/commodities/metal/ingot-worn-iron.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-1"
}
],
"_id": "JHupzYULxdQzFzuj",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753805503527,
"modifiedTime": 1753805503527,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!K5WkjS0NGqHYmhU3.JHupzYULxdQzFzuj"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805490635,
"modifiedTime": 1753805512828,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!K5WkjS0NGqHYmhU3"
}

View file

@ -0,0 +1,94 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Improved Full Plate Armor",
"type": "armor",
"_id": "9f7RozpPTqrzJS1m",
"img": "icons/equipment/chest/breastplate-cuirass-steel-grey.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "veryheavy",
"effectIds": [
"wstJ1aKKtmXgCwxB"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 13,
"severe": 28
}
},
"effects": [
{
"name": "Very Heavy",
"description": "-2 to Evasion; -1 to Agility",
"img": "icons/commodities/metal/ingot-stamped-steel.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-2"
},
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "-1"
}
],
"_id": "wstJ1aKKtmXgCwxB",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753805533549,
"modifiedTime": 1753805533549,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!9f7RozpPTqrzJS1m.wstJ1aKKtmXgCwxB"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805522506,
"modifiedTime": 1753805544375,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!9f7RozpPTqrzJS1m"
}

View file

@ -0,0 +1,89 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Improved Gambeson Armor",
"type": "armor",
"_id": "jphnMZjnS2FkOH3s",
"img": "icons/equipment/chest/breastplate-quilted-brown.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "flexible",
"effectIds": [
"BFwU3ErPaajUSMUz"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 7,
"severe": 16
}
},
"effects": [
{
"name": "Flexible",
"description": "+1 to Evasion",
"img": "icons/magic/movement/abstract-ribbons-red-orange.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "1"
}
],
"_id": "BFwU3ErPaajUSMUz",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753805414375,
"modifiedTime": 1753805414375,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!jphnMZjnS2FkOH3s.BFwU3ErPaajUSMUz"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805377869,
"modifiedTime": 1753805418921,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!jphnMZjnS2FkOH3s"
}

View file

@ -0,0 +1,42 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Improved Leather Armor",
"type": "armor",
"_id": "t91M61pSCMKStTNt",
"img": "icons/equipment/chest/breastplate-banded-simple-leather-brown.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 4,
"armorFeatures": [],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 9,
"severe": 20
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805428821,
"modifiedTime": 1753805482906,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!t91M61pSCMKStTNt"
}

View file

@ -0,0 +1,94 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Irontree Breastplate Armor",
"type": "armor",
"_id": "tzZntboNtHL5C6VM",
"img": "icons/equipment/chest/breastplate-layered-leather-brown-silver.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "reinforced",
"effectIds": [
"P3aCN8PQgPXP4C9M"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 9,
"severe": 20
}
},
"effects": [
{
"name": "Reinforced",
"description": "When you mark your last Armor Slot, increase your damage thresholds by +2 until you clear at least 1 Armor Slot.",
"img": "icons/magic/defensive/shield-barrier-glowing-triangle-green.webp",
"changes": [
{
"key": "system.bunuses.damageThresholds.major",
"mode": 2,
"value": "2"
},
{
"key": "system.bunuses.damageThresholds.severe",
"mode": 2,
"value": "2"
}
],
"_id": "P3aCN8PQgPXP4C9M",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753807455490,
"modifiedTime": 1753807455490,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!tzZntboNtHL5C6VM.P3aCN8PQgPXP4C9M"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807283589,
"modifiedTime": 1753807455497,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!tzZntboNtHL5C6VM"
}

View file

@ -0,0 +1,42 @@
{
"folder": "h4QgrovjVZ1oee7O",
"name": "Leather Armor",
"type": "armor",
"_id": "nibfdNtp2PtxvbVz",
"img": "icons/equipment/chest/breastplate-layered-leather-brown.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 1,
"equipped": false,
"baseScore": 3,
"armorFeatures": [],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 6,
"severe": 13
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753805219679,
"modifiedTime": 1753805275427,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!nibfdNtp2PtxvbVz"
}

View file

@ -0,0 +1,89 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Legendary Chainmail Armor",
"type": "armor",
"_id": "EsIN5OLKe9ZYFNXZ",
"img": "icons/equipment/chest/breastplate-banded-blue.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 7,
"armorFeatures": [
{
"value": "heavy",
"effectIds": [
"8Oa6Y375X8UpcPph"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 15,
"severe": 40
}
},
"effects": [
{
"name": "Heavy",
"description": "-1 to Evasion",
"img": "icons/commodities/metal/ingot-worn-iron.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-1"
}
],
"_id": "8Oa6Y375X8UpcPph",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753809139589,
"modifiedTime": 1753809139589,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!EsIN5OLKe9ZYFNXZ.8Oa6Y375X8UpcPph"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809118507,
"modifiedTime": 1753809151454,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!EsIN5OLKe9ZYFNXZ"
}

View file

@ -0,0 +1,94 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Legendary Full Plate Armor",
"type": "armor",
"_id": "SXWjUR2aUR6bYvdl",
"img": "icons/equipment/chest/breastplate-layered-steel-blue-gold.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 7,
"armorFeatures": [
{
"value": "veryheavy",
"effectIds": [
"zvzkRX2Uevemmbz4"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 17,
"severe": 44
}
},
"effects": [
{
"name": "Very Heavy",
"description": "-2 to Evasion; -1 to Agility",
"img": "icons/commodities/metal/ingot-stamped-steel.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "-2"
},
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "-1"
}
],
"_id": "zvzkRX2Uevemmbz4",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753809171374,
"modifiedTime": 1753809171374,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!SXWjUR2aUR6bYvdl.zvzkRX2Uevemmbz4"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809163051,
"modifiedTime": 1753809225793,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!SXWjUR2aUR6bYvdl"
}

View file

@ -0,0 +1,89 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Legendary Gambeson Armor",
"type": "armor",
"_id": "c6tMXz4rPf9ioQrf",
"img": "icons/equipment/chest/breastplate-layered-leather-blue-gold.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 6,
"armorFeatures": [
{
"value": "flexible",
"effectIds": [
"3AUNxBoj7mp1ziJQ"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 11,
"severe": 32
}
},
"effects": [
{
"name": "Flexible",
"description": "+1 to Evasion",
"img": "icons/magic/movement/abstract-ribbons-red-orange.webp",
"changes": [
{
"key": "system.evasion",
"mode": 2,
"value": "1"
}
],
"_id": "3AUNxBoj7mp1ziJQ",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753809044811,
"modifiedTime": 1753809044811,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!c6tMXz4rPf9ioQrf.3AUNxBoj7mp1ziJQ"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809031184,
"modifiedTime": 1753809064934,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!c6tMXz4rPf9ioQrf"
}

View file

@ -0,0 +1,42 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Legendary Leather Armor",
"type": "armor",
"_id": "Tptgl5WOj76TyFn7",
"img": "icons/equipment/chest/breastplate-layered-gilded-black.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 6,
"armorFeatures": [],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 13,
"severe": 36
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809078323,
"modifiedTime": 1753809106203,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!Tptgl5WOj76TyFn7"
}

View file

@ -0,0 +1,89 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Monett's Cloak",
"type": "armor",
"_id": "AQzU2RsqS5V5bd1v",
"img": "icons/equipment/chest/coat-collared-red.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 6,
"armorFeatures": [
{
"value": "magical",
"effectIds": [
"3n4O7PyAWMEFdr5p"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 16,
"severe": 39
}
},
"effects": [
{
"name": "Magical",
"description": "You can't mark an Armor Slot to reduce physical damage.",
"img": "icons/magic/defensive/barrier-shield-dome-blue-purple.webp",
"changes": [
{
"key": "system.rules.damageReduction.magical",
"mode": 5,
"value": "1"
}
],
"_id": "3n4O7PyAWMEFdr5p",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753808812589,
"modifiedTime": 1753808812589,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!AQzU2RsqS5V5bd1v.3n4O7PyAWMEFdr5p"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753808797896,
"modifiedTime": 1753808820623,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!AQzU2RsqS5V5bd1v"
}

View file

@ -0,0 +1,72 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Rosewild Armor",
"type": "armor",
"_id": "tN8kAeBvNKM3EBFo",
"img": "icons/equipment/chest/breastplate-banded-leather-purple.webp",
"system": {
"description": "",
"actions": {
"QRTnCYxJfuJHdnyV": {
"type": "effect",
"actionType": "action",
"chatDisplay": true,
"name": "Hope",
"description": "When you would spend a Hope, you can mark an Armor Slot instead.",
"img": "icons/magic/holy/barrier-shield-winged-blue.webp",
"_id": "QRTnCYxJfuJHdnyV",
"effects": [],
"systemPath": "actions",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"target": {
"type": "any",
"amount": null
}
}
},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "hopeful",
"effectIds": [],
"actionIds": [
"QRTnCYxJfuJHdnyV"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 11,
"severe": 23
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807654078,
"modifiedTime": 1753807692793,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!tN8kAeBvNKM3EBFo"
}

View file

@ -0,0 +1,80 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Runes of Fortification",
"type": "armor",
"_id": "P4qAEDJUoNLgVRsA",
"img": "icons/magic/symbols/rune-sigil-red-orange.webp",
"system": {
"description": "",
"actions": {
"37KLF2bim9nRdPTU": {
"type": "effect",
"actionType": "action",
"chatDisplay": true,
"name": "Pain",
"description": "Each time you mark an Armor Slot, you must mark a Stress.",
"img": "icons/skills/wounds/injury-face-impact-orange.webp",
"cost": [
{
"key": "stress",
"value": 1,
"keyIsID": false,
"scalable": false,
"step": null
}
],
"_id": "37KLF2bim9nRdPTU",
"effects": [],
"systemPath": "actions",
"uses": {
"value": null,
"max": null,
"recovery": null
},
"target": {
"type": "any",
"amount": null
}
}
},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 6,
"armorFeatures": [
{
"value": "painful",
"effectIds": [],
"actionIds": [
"37KLF2bim9nRdPTU"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 17,
"severe": 43
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753808832397,
"modifiedTime": 1753809018449,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!P4qAEDJUoNLgVRsA"
}

View file

@ -0,0 +1,80 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Runetan Floating Armor",
"type": "armor",
"_id": "tHlBUDQC24YMZqd6",
"img": "icons/equipment/chest/breastplate-layered-leather-black.webp",
"system": {
"description": "",
"actions": {
"Nn33zCIcWe6LQMDH": {
"type": "effect",
"actionType": "action",
"chatDisplay": true,
"name": "Shift",
"description": "When you are targeted for an attack, you can mark an Armor Slot to give the attack roll against you disadvantage.",
"img": "icons/magic/defensive/illusion-evasion-echo-purple.webp",
"cost": [
{
"key": "stress",
"value": 1,
"keyIsID": false,
"scalable": false,
"step": null
}
],
"_id": "Nn33zCIcWe6LQMDH",
"effects": [],
"systemPath": "actions",
"uses": {
"value": null,
"max": null,
"recovery": null
},
"target": {
"type": "any",
"amount": null
}
}
},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 4,
"armorFeatures": [
{
"value": "shifting",
"effectIds": [],
"actionIds": [
"Nn33zCIcWe6LQMDH"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 9,
"severe": 20
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807528637,
"modifiedTime": 1753808232404,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!tHlBUDQC24YMZqd6"
}

View file

@ -0,0 +1,119 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Savior Chainmail",
"type": "armor",
"_id": "8X16lJQ3xltTwynm",
"img": "icons/equipment/chest/breastplate-layered-leather-green.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 8,
"armorFeatures": [
{
"value": "difficult",
"effectIds": [
"rkrqlwqtR9REgRx7"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 18,
"severe": 48
}
},
"effects": [
{
"name": "Difficult",
"description": "-1 to all character traits and Evasion",
"img": "icons/magic/control/buff-flight-wings-red.webp",
"changes": [
{
"key": "system.traits.agility.value",
"mode": 2,
"value": "-1"
},
{
"key": "system.traits.strength.value",
"mode": 2,
"value": "-1"
},
{
"key": "system.traits.finesse.value",
"mode": 2,
"value": "-1"
},
{
"key": "system.traits.instinct.value",
"mode": 2,
"value": "-1"
},
{
"key": "system.traits.presence.value",
"mode": 2,
"value": "-1"
},
{
"key": "system.traits.knowledge.value",
"mode": 2,
"value": "-1"
},
{
"key": "system.evasion",
"mode": 2,
"value": "-1"
}
],
"_id": "rkrqlwqtR9REgRx7",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753809744697,
"modifiedTime": 1753809744697,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!8X16lJQ3xltTwynm.rkrqlwqtR9REgRx7"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809733405,
"modifiedTime": 1753809762536,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!8X16lJQ3xltTwynm"
}

View file

@ -0,0 +1,94 @@
{
"folder": "rkSdPu86ybLz6aKF",
"name": "Spiked Plate Armor",
"type": "armor",
"_id": "QjwsIhXKqnlvRBMv",
"img": "icons/equipment/chest/breastplate-banded-steel-studded.webp",
"system": {
"description": "",
"actions": {},
"attached": [],
"tier": 3,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "sharp",
"effectIds": [
"V8CcTcVAIxHq8KNd"
],
"actionIds": []
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 10,
"severe": 25
}
},
"effects": [
{
"name": "Sharp",
"description": "On a successful attack against a target within Melee range, add a d4 to the damage roll.",
"img": "icons/magic/defensive/shield-barrier-glowing-triangle-green.webp",
"changes": [
{
"key": "system.bonuses.damage.primaryWeapon.dice",
"mode": 2,
"value": "1d4"
},
{
"key": "system.bonuses.damage.secondaryWeapon.dice",
"mode": 2,
"value": "1d4"
}
],
"_id": "V8CcTcVAIxHq8KNd",
"type": "base",
"system": {},
"disabled": false,
"duration": {
"startTime": null,
"combat": null
},
"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": 1753808658514,
"modifiedTime": 1753808658514,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items.effects!QjwsIhXKqnlvRBMv.V8CcTcVAIxHq8KNd"
}
],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753808464678,
"modifiedTime": 1753808691813,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!QjwsIhXKqnlvRBMv"
}

View file

@ -0,0 +1,72 @@
{
"folder": "hLn0v6ov6KuFgptu",
"name": "Tyris Soft Armor",
"type": "armor",
"_id": "PSW3BxCGmtLeWOxM",
"img": "icons/equipment/chest/robe-layered-purple.webp",
"system": {
"description": "",
"actions": {
"Ch6IhuPewBeseGez": {
"type": "effect",
"actionType": "action",
"chatDisplay": true,
"name": "Quiet",
"description": "You gain a +2 bonus to rolls you make to move silently.",
"img": "icons/magic/perception/silhouette-stealth-shadow.webp",
"_id": "Ch6IhuPewBeseGez",
"effects": [],
"systemPath": "actions",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"target": {
"type": "any",
"amount": null
}
}
},
"attached": [],
"tier": 2,
"equipped": false,
"baseScore": 5,
"armorFeatures": [
{
"value": "quiet",
"effectIds": [],
"actionIds": [
"Ch6IhuPewBeseGez"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 8,
"severe": 18
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753807607742,
"modifiedTime": 1753807646156,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!PSW3BxCGmtLeWOxM"
}

View file

@ -0,0 +1,72 @@
{
"folder": "Hbjp64XzuyJs2hOs",
"name": "Veritas Opal Armor",
"type": "armor",
"_id": "OvzgUTYy2RCN85vV",
"img": "icons/equipment/chest/breastplate-collared-steel-green.webp",
"system": {
"description": "",
"actions": {
"sY3W5JYspN5Du5ag": {
"type": "effect",
"actionType": "action",
"chatDisplay": true,
"name": "Truthseeking",
"description": "This armor glows when another creature within Close range tells a lie.",
"img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp",
"_id": "sY3W5JYspN5Du5ag",
"effects": [],
"systemPath": "actions",
"cost": [],
"uses": {
"value": null,
"max": null,
"recovery": null
},
"target": {
"type": "any",
"amount": null
}
}
},
"attached": [],
"tier": 4,
"equipped": false,
"baseScore": 6,
"armorFeatures": [
{
"value": "truthseeking",
"effectIds": [],
"actionIds": [
"sY3W5JYspN5Du5ag"
]
}
],
"marks": {
"value": 0
},
"baseThresholds": {
"major": 13,
"severe": 36
}
},
"effects": [],
"sort": 0,
"ownership": {
"default": 0,
"FecEtPuoQh6MpjQ0": 3
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"exportSource": null,
"coreVersion": "13.346",
"systemId": "daggerheart",
"systemVersion": "0.0.1",
"createdTime": 1753809706360,
"modifiedTime": 1753809725217,
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
},
"_key": "!items!OvzgUTYy2RCN85vV"
}

View file

@ -7,7 +7,7 @@
"system": { "system": {
"description": "", "description": "",
"actions": { "actions": {
"uTqQUaZ0DH0s0EiM": { "9x82us4KqCFp2ds0": {
"type": "effect", "type": "effect",
"actionType": "action", "actionType": "action",
"chatDisplay": true, "chatDisplay": true,
@ -16,14 +16,14 @@
"img": "icons/magic/control/fear-fright-mask-orange.webp", "img": "icons/magic/control/fear-fright-mask-orange.webp",
"cost": [ "cost": [
{ {
"key": "stress",
"value": 1, "value": 1,
"key": "hope",
"keyIsID": false, "keyIsID": false,
"scalable": false, "scalable": false,
"step": null "step": null
} }
], ],
"_id": "uTqQUaZ0DH0s0EiM", "_id": "9x82us4KqCFp2ds0",
"effects": [], "effects": [],
"systemPath": "actions", "systemPath": "actions",
"uses": { "uses": {
@ -47,7 +47,7 @@
"value": "startling", "value": "startling",
"effectIds": [], "effectIds": [],
"actionIds": [ "actionIds": [
"uTqQUaZ0DH0s0EiM" "9x82us4KqCFp2ds0"
] ]
} }
], ],
@ -147,7 +147,7 @@
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753795001576, "createdTime": 1753795001576,
"modifiedTime": 1753795023997, "modifiedTime": 1753808405822,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items!01izMUSJcAUo79IX" "_key": "!items!01izMUSJcAUo79IX"

View file

@ -7,7 +7,7 @@
"system": { "system": {
"description": "", "description": "",
"actions": { "actions": {
"mmm95zUmnxcwy3wL": { "BspGQXodaANPEQcl": {
"type": "effect", "type": "effect",
"actionType": "action", "actionType": "action",
"chatDisplay": true, "chatDisplay": true,
@ -20,8 +20,8 @@
}, },
"cost": [ "cost": [
{ {
"key": "armorStack",
"value": 1, "value": 1,
"key": "hope",
"keyIsID": false, "keyIsID": false,
"scalable": false, "scalable": false,
"step": null "step": null
@ -29,11 +29,11 @@
], ],
"effects": [ "effects": [
{ {
"_id": "dYef2V28BwZ2HY0e", "_id": "Anbxt99bL9IWnlGh",
"onSave": false "onSave": false
} }
], ],
"_id": "mmm95zUmnxcwy3wL", "_id": "BspGQXodaANPEQcl",
"systemPath": "actions", "systemPath": "actions",
"uses": { "uses": {
"value": null, "value": null,
@ -51,10 +51,10 @@
{ {
"value": "deflecting", "value": "deflecting",
"effectIds": [ "effectIds": [
"dYef2V28BwZ2HY0e" "Anbxt99bL9IWnlGh"
], ],
"actionIds": [ "actionIds": [
"mmm95zUmnxcwy3wL" "BspGQXodaANPEQcl"
] ]
} }
], ],
@ -152,7 +152,7 @@
} }
], ],
"transfer": false, "transfer": false,
"_id": "dYef2V28BwZ2HY0e", "_id": "Anbxt99bL9IWnlGh",
"type": "base", "type": "base",
"system": {}, "system": {},
"disabled": false, "disabled": false,
@ -172,11 +172,11 @@
"coreVersion": "13.346", "coreVersion": "13.346",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753795201169, "createdTime": 1753808413748,
"modifiedTime": 1753795201169, "modifiedTime": 1753808413748,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items.effects!EmFTp9wzT6MHSaNz.dYef2V28BwZ2HY0e" "_key": "!items.effects!EmFTp9wzT6MHSaNz.Anbxt99bL9IWnlGh"
} }
], ],
"sort": 0, "sort": 0,
@ -193,7 +193,7 @@
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753795181779, "createdTime": 1753795181779,
"modifiedTime": 1753795201173, "modifiedTime": 1753808413753,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items!EmFTp9wzT6MHSaNz" "_key": "!items!EmFTp9wzT6MHSaNz"

View file

@ -7,7 +7,7 @@
"system": { "system": {
"description": "", "description": "",
"actions": { "actions": {
"9M1PxqFIc4VxinVa": { "itHKcDEckRlitu2z": {
"type": "effect", "type": "effect",
"actionType": "action", "actionType": "action",
"chatDisplay": true, "chatDisplay": true,
@ -16,14 +16,14 @@
"img": "icons/magic/control/fear-fright-mask-orange.webp", "img": "icons/magic/control/fear-fright-mask-orange.webp",
"cost": [ "cost": [
{ {
"key": "stress",
"value": 1, "value": 1,
"key": "hope",
"keyIsID": false, "keyIsID": false,
"scalable": false, "scalable": false,
"step": null "step": null
} }
], ],
"_id": "9M1PxqFIc4VxinVa", "_id": "itHKcDEckRlitu2z",
"effects": [], "effects": [],
"systemPath": "actions", "systemPath": "actions",
"uses": { "uses": {
@ -47,7 +47,7 @@
"value": "startling", "value": "startling",
"effectIds": [], "effectIds": [],
"actionIds": [ "actionIds": [
"9M1PxqFIc4VxinVa" "itHKcDEckRlitu2z"
] ]
} }
], ],
@ -147,7 +147,7 @@
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753794353291, "createdTime": 1753794353291,
"modifiedTime": 1753794375796, "modifiedTime": 1753808384267,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items!ftTp8VlsBQ1r4LFD" "_key": "!items!ftTp8VlsBQ1r4LFD"

View file

@ -7,7 +7,7 @@
"system": { "system": {
"description": "", "description": "",
"actions": { "actions": {
"5BsKYPjg2StmQ4il": { "0kcm7huG68hS7sRz": {
"type": "effect", "type": "effect",
"actionType": "action", "actionType": "action",
"chatDisplay": true, "chatDisplay": true,
@ -16,14 +16,14 @@
"img": "icons/magic/control/fear-fright-mask-orange.webp", "img": "icons/magic/control/fear-fright-mask-orange.webp",
"cost": [ "cost": [
{ {
"key": "stress",
"value": 1, "value": 1,
"key": "hope",
"keyIsID": false, "keyIsID": false,
"scalable": false, "scalable": false,
"step": null "step": null
} }
], ],
"_id": "5BsKYPjg2StmQ4il", "_id": "0kcm7huG68hS7sRz",
"effects": [], "effects": [],
"systemPath": "actions", "systemPath": "actions",
"uses": { "uses": {
@ -47,7 +47,7 @@
"value": "startling", "value": "startling",
"effectIds": [], "effectIds": [],
"actionIds": [ "actionIds": [
"5BsKYPjg2StmQ4il" "0kcm7huG68hS7sRz"
] ]
} }
], ],
@ -147,7 +147,7 @@
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753797101746, "createdTime": 1753797101746,
"modifiedTime": 1753797122680, "modifiedTime": 1753808440137,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items!Wcdbf6yS3LEt7nsg" "_key": "!items!Wcdbf6yS3LEt7nsg"

View file

@ -7,7 +7,7 @@
"system": { "system": {
"description": "", "description": "",
"actions": { "actions": {
"vkZ0aIoYzBC3SlIE": { "GlA0PwKQSq5vwh7D": {
"type": "effect", "type": "effect",
"actionType": "action", "actionType": "action",
"chatDisplay": true, "chatDisplay": true,
@ -20,8 +20,8 @@
}, },
"cost": [ "cost": [
{ {
"key": "stress",
"value": 1, "value": 1,
"key": "hope",
"keyIsID": false, "keyIsID": false,
"scalable": false, "scalable": false,
"step": null "step": null
@ -29,11 +29,11 @@
], ],
"effects": [ "effects": [
{ {
"_id": "v4PAscWlWFaakiN7", "_id": "n5EB7pI0kv2Zx35G",
"onSave": false "onSave": false
} }
], ],
"_id": "vkZ0aIoYzBC3SlIE", "_id": "GlA0PwKQSq5vwh7D",
"systemPath": "actions", "systemPath": "actions",
"uses": { "uses": {
"value": null, "value": null,
@ -51,10 +51,10 @@
{ {
"value": "charged", "value": "charged",
"effectIds": [ "effectIds": [
"v4PAscWlWFaakiN7" "n5EB7pI0kv2Zx35G"
], ],
"actionIds": [ "actionIds": [
"vkZ0aIoYzBC3SlIE" "GlA0PwKQSq5vwh7D"
] ]
} }
], ],
@ -152,7 +152,7 @@
} }
], ],
"transfer": false, "transfer": false,
"_id": "v4PAscWlWFaakiN7", "_id": "n5EB7pI0kv2Zx35G",
"type": "base", "type": "base",
"system": {}, "system": {},
"disabled": false, "disabled": false,
@ -172,11 +172,11 @@
"coreVersion": "13.346", "coreVersion": "13.346",
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753796745084, "createdTime": 1753808423859,
"modifiedTime": 1753796745084, "modifiedTime": 1753808423859,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items.effects!bW3xw5S9DbaLCN3E.v4PAscWlWFaakiN7" "_key": "!items.effects!bW3xw5S9DbaLCN3E.n5EB7pI0kv2Zx35G"
} }
], ],
"sort": 0, "sort": 0,
@ -193,7 +193,7 @@
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753796723376, "createdTime": 1753796723376,
"modifiedTime": 1753796767984, "modifiedTime": 1753808423862,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items!bW3xw5S9DbaLCN3E" "_key": "!items!bW3xw5S9DbaLCN3E"

View file

@ -7,7 +7,7 @@
"system": { "system": {
"description": "", "description": "",
"actions": { "actions": {
"dBjx9R0gUsxj2P76": { "N0CCc4o6N1HseQTn": {
"type": "effect", "type": "effect",
"actionType": "action", "actionType": "action",
"chatDisplay": true, "chatDisplay": true,
@ -16,14 +16,14 @@
"img": "icons/magic/control/fear-fright-mask-orange.webp", "img": "icons/magic/control/fear-fright-mask-orange.webp",
"cost": [ "cost": [
{ {
"key": "stress",
"value": 1, "value": 1,
"key": "hope",
"keyIsID": false, "keyIsID": false,
"scalable": false, "scalable": false,
"step": null "step": null
} }
], ],
"_id": "dBjx9R0gUsxj2P76", "_id": "N0CCc4o6N1HseQTn",
"effects": [], "effects": [],
"systemPath": "actions", "systemPath": "actions",
"uses": { "uses": {
@ -45,10 +45,10 @@
"weaponFeatures": [ "weaponFeatures": [
{ {
"value": "startling", "value": "startling",
"effectIds": [],
"actionIds": [ "actionIds": [
"dBjx9R0gUsxj2P76" "N0CCc4o6N1HseQTn"
], ]
"effectIds": []
} }
], ],
"attack": { "attack": {
@ -147,7 +147,7 @@
"systemId": "daggerheart", "systemId": "daggerheart",
"systemVersion": "0.0.1", "systemVersion": "0.0.1",
"createdTime": 1753744226240, "createdTime": 1753744226240,
"modifiedTime": 1753744407511, "modifiedTime": 1753808365384,
"lastModifiedBy": "FecEtPuoQh6MpjQ0" "lastModifiedBy": "FecEtPuoQh6MpjQ0"
}, },
"_key": "!items!CmtWqw6DwoePnX7W" "_key": "!items!CmtWqw6DwoePnX7W"