diff --git a/lang/en.json b/lang/en.json index e42d725c..2773dc65 100755 --- a/lang/en.json +++ b/lang/en.json @@ -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": { "name": "Physical", "description": "You can't mark an Armor Slot to reduce magic damage.", @@ -678,7 +688,7 @@ "sharp": { "name": "Sharp", "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll.", - "actions": { + "effects": { "sharp": { "name": "Sharp", "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll." diff --git a/module/config/itemConfig.mjs b/module/config/itemConfig.mjs index 93d49f7c..c950ae61 100644 --- a/module/config/itemConfig.mjs +++ b/module/config/itemConfig.mjs @@ -4,12 +4,29 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.description', actions: [ { - type: 'effect', + type: 'damage', actionType: 'action', chatDisplay: true, name: 'DAGGERHEART.CONFIG.ArmorFeature.burning.actions.burn.name', 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: [ { - type: 'stress', + key: 'stress', 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: { label: 'DAGGERHEART.CONFIG.ArmorFeature.physical.name', description: 'DAGGERHEART.CONFIG.ArmorFeature.physical.description', @@ -243,31 +280,21 @@ export const armorFeatures = { reinforced: { label: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.name', description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.description', - actions: [ + effects: [ { - type: 'effect', - actionType: 'action', - chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.actions.reinforce.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.actions.reinforce.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.description', img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp', - effects: [ + changes: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.description', - 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' - } - ] + key: 'system.bunuses.damageThresholds.major', + mode: 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', actions: [ { - type: 'effect', + type: 'attack', actionType: 'action', chatDisplay: true, name: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.actions.resilient.name', 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: { label: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.name', description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.description', - actions: [ + effects: [ { - type: 'damage', - actionType: 'action', - chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.actions.sharp.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.actions.sharp.description', - img: 'icons/skills/melee/blade-tips-triple-bent-white.webp', - damage: { - parts: [ - { - type: 'physical', - value: { - custom: { - enabled: true, - formula: '1d4' - } - } - } - ] - } + name: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.description', + 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' + } + ] } ] }, @@ -327,7 +360,7 @@ export const armorFeatures = { img: 'icons/magic/defensive/illusion-evasion-echo-purple.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -339,12 +372,26 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.description', actions: [ { - type: 'effect', + type: 'attack', actionType: 'action', chatDisplay: true, name: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.actions.slowTime.name', 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', cost: [ { - type: 'stress', + key: 'stress', value: 1, scalable: true, step: 1 @@ -522,7 +569,7 @@ export const weaponFeatures = { }, cost: [ { - type: 'stress', + key: 'stress', value: 1 } ], @@ -559,7 +606,7 @@ export const weaponFeatures = { }, cost: [ { - type: 'hope', + key: 'hope', value: 1 } ] @@ -614,7 +661,7 @@ export const weaponFeatures = { }, cost: [ { - type: 'armorStack', + key: 'armorStack', value: 1 } ], @@ -693,7 +740,7 @@ export const weaponFeatures = { img: 'icons/skills/melee/strike-flail-destructive-yellow.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -778,7 +825,7 @@ export const weaponFeatures = { img: 'icons/magic/control/debuff-chains-ropes-net-white.webp', cost: [ { - type: 'hope', + key: 'hope', value: 1 } ] @@ -952,7 +999,7 @@ export const weaponFeatures = { img: 'icons/magic/control/buff-luck-fortune-green.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -1000,7 +1047,7 @@ export const weaponFeatures = { img: 'icons/skills/wounds/injury-face-impact-orange.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -1055,7 +1102,7 @@ export const weaponFeatures = { }, cost: [ { - type: 'stress', + key: 'stress', value: 1 } ], @@ -1144,7 +1191,7 @@ export const weaponFeatures = { img: 'icons/skills/movement/arrow-upward-yellow.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -1306,7 +1353,7 @@ export const weaponFeatures = { img: 'icons/magic/control/fear-fright-mask-orange.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] diff --git a/module/data/item/armor.mjs b/module/data/item/armor.mjs index 64a6e9c0..54598a3f 100644 --- a/module/data/item/armor.mjs +++ b/module/data/item/armor.mjs @@ -71,13 +71,14 @@ export default class DHArmor extends AttachableItem { for (var feature of added) { const featureData = armorFeatures[feature.value]; if (featureData.effects?.length > 0) { - const embeddedItems = await this.parent.createEmbeddedDocuments('ActiveEffect', [ - { - name: game.i18n.localize(featureData.label), - description: game.i18n.localize(featureData.description), - changes: featureData.effects.flatMap(x => x.changes) - } - ]); + const embeddedItems = await this.parent.createEmbeddedDocuments( + 'ActiveEffect', + featureData.effects.map(effect => ({ + ...effect, + name: game.i18n.localize(effect.name), + description: game.i18n.localize(effect.description) + })) + ); feature.effectIds = embeddedItems.map(x => x.id); } @@ -93,6 +94,7 @@ export default class DHArmor extends AttachableItem { 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 actionId = foundry.utils.randomID(); diff --git a/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json new file mode 100644 index 00000000..96a2edd7 --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json b/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json new file mode 100644 index 00000000..4d97b8bb --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json b/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json new file mode 100644 index 00000000..032ebe6d --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json b/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json new file mode 100644 index 00000000..ef9d64f9 --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json b/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json new file mode 100644 index 00000000..fb4bad0e --- /dev/null +++ b/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json b/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json new file mode 100644 index 00000000..60521ffc --- /dev/null +++ b/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json b/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json new file mode 100644 index 00000000..f7d07f32 --- /dev/null +++ b/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json b/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json new file mode 100644 index 00000000..3d795985 --- /dev/null +++ b/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json b/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json new file mode 100644 index 00000000..52002171 --- /dev/null +++ b/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json b/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json new file mode 100644 index 00000000..15411b03 --- /dev/null +++ b/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json b/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json new file mode 100644 index 00000000..0825a7a1 --- /dev/null +++ b/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json b/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json new file mode 100644 index 00000000..7e274a0b --- /dev/null +++ b/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json b/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json new file mode 100644 index 00000000..73ecfc96 --- /dev/null +++ b/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json b/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json new file mode 100644 index 00000000..4b45cf7e --- /dev/null +++ b/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json b/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json new file mode 100644 index 00000000..c51838e0 --- /dev/null +++ b/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json b/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json new file mode 100644 index 00000000..85dd7864 --- /dev/null +++ b/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json b/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json new file mode 100644 index 00000000..62648557 --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json b/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json new file mode 100644 index 00000000..7e5e36df --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json b/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json new file mode 100644 index 00000000..8c6a8f2c --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json b/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json new file mode 100644 index 00000000..4d225093 --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json b/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json new file mode 100644 index 00000000..e80d4f13 --- /dev/null +++ b/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json b/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json new file mode 100644 index 00000000..1d87a030 --- /dev/null +++ b/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json b/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json new file mode 100644 index 00000000..1192b4d5 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json b/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json new file mode 100644 index 00000000..5b2d4a97 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json b/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json new file mode 100644 index 00000000..e05e5f32 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json b/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json new file mode 100644 index 00000000..9dc82529 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json b/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json new file mode 100644 index 00000000..0cc3415d --- /dev/null +++ b/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json b/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json new file mode 100644 index 00000000..a0cb99f1 --- /dev/null +++ b/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json b/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json new file mode 100644 index 00000000..33fef2f5 --- /dev/null +++ b/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json b/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json new file mode 100644 index 00000000..df5cb28f --- /dev/null +++ b/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json b/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json new file mode 100644 index 00000000..4d8ccfa6 --- /dev/null +++ b/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json b/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json new file mode 100644 index 00000000..07536704 --- /dev/null +++ b/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json b/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json new file mode 100644 index 00000000..ae9c849b --- /dev/null +++ b/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json @@ -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" +} diff --git a/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json b/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json new file mode 100644 index 00000000..44f644b0 --- /dev/null +++ b/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json @@ -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" +} diff --git a/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json b/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json index 8a7089fa..b9c4242d 100644 --- a/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json +++ b/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json @@ -7,7 +7,7 @@ "system": { "description": "", "actions": { - "uTqQUaZ0DH0s0EiM": { + "9x82us4KqCFp2ds0": { "type": "effect", "actionType": "action", "chatDisplay": true, @@ -16,14 +16,14 @@ "img": "icons/magic/control/fear-fright-mask-orange.webp", "cost": [ { + "key": "stress", "value": 1, - "key": "hope", "keyIsID": false, "scalable": false, "step": null } ], - "_id": "uTqQUaZ0DH0s0EiM", + "_id": "9x82us4KqCFp2ds0", "effects": [], "systemPath": "actions", "uses": { @@ -47,7 +47,7 @@ "value": "startling", "effectIds": [], "actionIds": [ - "uTqQUaZ0DH0s0EiM" + "9x82us4KqCFp2ds0" ] } ], @@ -147,7 +147,7 @@ "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753795001576, - "modifiedTime": 1753795023997, + "modifiedTime": 1753808405822, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!items!01izMUSJcAUo79IX" diff --git a/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json index efc6462b..9232ac7d 100644 --- a/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json +++ b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json @@ -7,7 +7,7 @@ "system": { "description": "", "actions": { - "mmm95zUmnxcwy3wL": { + "BspGQXodaANPEQcl": { "type": "effect", "actionType": "action", "chatDisplay": true, @@ -20,8 +20,8 @@ }, "cost": [ { + "key": "armorStack", "value": 1, - "key": "hope", "keyIsID": false, "scalable": false, "step": null @@ -29,11 +29,11 @@ ], "effects": [ { - "_id": "dYef2V28BwZ2HY0e", + "_id": "Anbxt99bL9IWnlGh", "onSave": false } ], - "_id": "mmm95zUmnxcwy3wL", + "_id": "BspGQXodaANPEQcl", "systemPath": "actions", "uses": { "value": null, @@ -51,10 +51,10 @@ { "value": "deflecting", "effectIds": [ - "dYef2V28BwZ2HY0e" + "Anbxt99bL9IWnlGh" ], "actionIds": [ - "mmm95zUmnxcwy3wL" + "BspGQXodaANPEQcl" ] } ], @@ -152,7 +152,7 @@ } ], "transfer": false, - "_id": "dYef2V28BwZ2HY0e", + "_id": "Anbxt99bL9IWnlGh", "type": "base", "system": {}, "disabled": false, @@ -172,11 +172,11 @@ "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", - "createdTime": 1753795201169, - "modifiedTime": 1753795201169, + "createdTime": 1753808413748, + "modifiedTime": 1753808413748, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, - "_key": "!items.effects!EmFTp9wzT6MHSaNz.dYef2V28BwZ2HY0e" + "_key": "!items.effects!EmFTp9wzT6MHSaNz.Anbxt99bL9IWnlGh" } ], "sort": 0, @@ -193,7 +193,7 @@ "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753795181779, - "modifiedTime": 1753795201173, + "modifiedTime": 1753808413753, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!items!EmFTp9wzT6MHSaNz" diff --git a/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json b/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json index e14c3989..1035131d 100644 --- a/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json +++ b/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json @@ -7,7 +7,7 @@ "system": { "description": "", "actions": { - "9M1PxqFIc4VxinVa": { + "itHKcDEckRlitu2z": { "type": "effect", "actionType": "action", "chatDisplay": true, @@ -16,14 +16,14 @@ "img": "icons/magic/control/fear-fright-mask-orange.webp", "cost": [ { + "key": "stress", "value": 1, - "key": "hope", "keyIsID": false, "scalable": false, "step": null } ], - "_id": "9M1PxqFIc4VxinVa", + "_id": "itHKcDEckRlitu2z", "effects": [], "systemPath": "actions", "uses": { @@ -47,7 +47,7 @@ "value": "startling", "effectIds": [], "actionIds": [ - "9M1PxqFIc4VxinVa" + "itHKcDEckRlitu2z" ] } ], @@ -147,7 +147,7 @@ "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753794353291, - "modifiedTime": 1753794375796, + "modifiedTime": 1753808384267, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!items!ftTp8VlsBQ1r4LFD" diff --git a/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json b/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json index 605dea07..b4b8bf02 100644 --- a/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json +++ b/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json @@ -7,7 +7,7 @@ "system": { "description": "", "actions": { - "5BsKYPjg2StmQ4il": { + "0kcm7huG68hS7sRz": { "type": "effect", "actionType": "action", "chatDisplay": true, @@ -16,14 +16,14 @@ "img": "icons/magic/control/fear-fright-mask-orange.webp", "cost": [ { + "key": "stress", "value": 1, - "key": "hope", "keyIsID": false, "scalable": false, "step": null } ], - "_id": "5BsKYPjg2StmQ4il", + "_id": "0kcm7huG68hS7sRz", "effects": [], "systemPath": "actions", "uses": { @@ -47,7 +47,7 @@ "value": "startling", "effectIds": [], "actionIds": [ - "5BsKYPjg2StmQ4il" + "0kcm7huG68hS7sRz" ] } ], @@ -147,7 +147,7 @@ "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753797101746, - "modifiedTime": 1753797122680, + "modifiedTime": 1753808440137, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!items!Wcdbf6yS3LEt7nsg" diff --git a/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json b/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json index 01e59335..417fae15 100644 --- a/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json +++ b/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json @@ -7,7 +7,7 @@ "system": { "description": "", "actions": { - "vkZ0aIoYzBC3SlIE": { + "GlA0PwKQSq5vwh7D": { "type": "effect", "actionType": "action", "chatDisplay": true, @@ -20,8 +20,8 @@ }, "cost": [ { + "key": "stress", "value": 1, - "key": "hope", "keyIsID": false, "scalable": false, "step": null @@ -29,11 +29,11 @@ ], "effects": [ { - "_id": "v4PAscWlWFaakiN7", + "_id": "n5EB7pI0kv2Zx35G", "onSave": false } ], - "_id": "vkZ0aIoYzBC3SlIE", + "_id": "GlA0PwKQSq5vwh7D", "systemPath": "actions", "uses": { "value": null, @@ -51,10 +51,10 @@ { "value": "charged", "effectIds": [ - "v4PAscWlWFaakiN7" + "n5EB7pI0kv2Zx35G" ], "actionIds": [ - "vkZ0aIoYzBC3SlIE" + "GlA0PwKQSq5vwh7D" ] } ], @@ -152,7 +152,7 @@ } ], "transfer": false, - "_id": "v4PAscWlWFaakiN7", + "_id": "n5EB7pI0kv2Zx35G", "type": "base", "system": {}, "disabled": false, @@ -172,11 +172,11 @@ "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", - "createdTime": 1753796745084, - "modifiedTime": 1753796745084, + "createdTime": 1753808423859, + "modifiedTime": 1753808423859, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, - "_key": "!items.effects!bW3xw5S9DbaLCN3E.v4PAscWlWFaakiN7" + "_key": "!items.effects!bW3xw5S9DbaLCN3E.n5EB7pI0kv2Zx35G" } ], "sort": 0, @@ -193,7 +193,7 @@ "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753796723376, - "modifiedTime": 1753796767984, + "modifiedTime": 1753808423862, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!items!bW3xw5S9DbaLCN3E" diff --git a/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json index 77466763..b354f5f4 100644 --- a/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json +++ b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json @@ -7,7 +7,7 @@ "system": { "description": "", "actions": { - "dBjx9R0gUsxj2P76": { + "N0CCc4o6N1HseQTn": { "type": "effect", "actionType": "action", "chatDisplay": true, @@ -16,14 +16,14 @@ "img": "icons/magic/control/fear-fright-mask-orange.webp", "cost": [ { + "key": "stress", "value": 1, - "key": "hope", "keyIsID": false, "scalable": false, "step": null } ], - "_id": "dBjx9R0gUsxj2P76", + "_id": "N0CCc4o6N1HseQTn", "effects": [], "systemPath": "actions", "uses": { @@ -45,10 +45,10 @@ "weaponFeatures": [ { "value": "startling", + "effectIds": [], "actionIds": [ - "dBjx9R0gUsxj2P76" - ], - "effectIds": [] + "N0CCc4o6N1HseQTn" + ] } ], "attack": { @@ -147,7 +147,7 @@ "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753744226240, - "modifiedTime": 1753744407511, + "modifiedTime": 1753808365384, "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!items!CmtWqw6DwoePnX7W"