mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
Corrected the SRD to use base effects again
This commit is contained in:
parent
4113f6c562
commit
8a728e6c27
51 changed files with 316 additions and 174 deletions
|
|
@ -493,19 +493,15 @@ export const weaponFeatures = {
|
|||
key: 'system.evasion',
|
||||
mode: 2,
|
||||
value: '-1'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
key: 'Armor',
|
||||
type: 'armor',
|
||||
name: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.effects.barrier.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.effects.barrier.description',
|
||||
img: 'icons/skills/melee/shield-block-bash-blue.webp',
|
||||
changes: [
|
||||
{
|
||||
typeData: {
|
||||
type: 'armor',
|
||||
max: 'ITEM.@system.tier + 1'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -812,24 +808,20 @@ export const weaponFeatures = {
|
|||
}
|
||||
},
|
||||
{
|
||||
type: 'armor',
|
||||
name: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.description',
|
||||
img: 'icons/skills/melee/sword-shield-stylized-white.webp',
|
||||
changes: [
|
||||
{
|
||||
key: 'Armor',
|
||||
type: 'armor',
|
||||
value: 0,
|
||||
typeData: {
|
||||
type: 'armor',
|
||||
max: 1
|
||||
}
|
||||
],
|
||||
system: {
|
||||
rangeDependence: {
|
||||
enabled: true,
|
||||
range: 'melee',
|
||||
target: 'hostile',
|
||||
type: 'withinRange'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -1208,15 +1200,19 @@ export const weaponFeatures = {
|
|||
description: 'DAGGERHEART.CONFIG.WeaponFeature.protective.description',
|
||||
effects: [
|
||||
{
|
||||
type: 'armor',
|
||||
name: 'DAGGERHEART.CONFIG.WeaponFeature.protective.effects.protective.name',
|
||||
description: 'DAGGERHEART.CONFIG.WeaponFeature.protective.effects.protective.description',
|
||||
img: 'icons/skills/melee/shield-block-gray-orange.webp',
|
||||
changes: [
|
||||
{
|
||||
key: 'Armor',
|
||||
type: 'armor',
|
||||
value: 0,
|
||||
typeData: {
|
||||
type: 'armor',
|
||||
max: 'ITEM.@system.tier'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ export default class Armor extends foundry.abstract.DataModel {
|
|||
label: 'Armor',
|
||||
defaultPriortiy: 20,
|
||||
handler: (actor, change, _options, _field, replacementData) => {
|
||||
const parsedMax = itemAbleRollParse(change.typeData.max, actor, change.effect.parent);
|
||||
|
||||
game.system.api.documents.DhActiveEffect.applyChange(
|
||||
actor,
|
||||
{
|
||||
|
|
@ -42,7 +44,7 @@ export default class Armor extends foundry.abstract.DataModel {
|
|||
...change,
|
||||
key: 'system.armorScore.max',
|
||||
type: CONFIG.DH.GENERAL.activeEffectModes.add.id,
|
||||
value: change.typeData.max
|
||||
value: parsedMax
|
||||
},
|
||||
replacementData
|
||||
);
|
||||
|
|
|
|||
|
|
@ -90,19 +90,22 @@
|
|||
"effects": [
|
||||
{
|
||||
"name": "Armorer",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"max": "1"
|
||||
}
|
||||
],
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "1",
|
||||
"armorInteraction": "active"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "tJw2JIPcT9hEMRXg",
|
||||
"img": "icons/tools/hand/hammer-and-nail.webp",
|
||||
|
|
|
|||
|
|
@ -22,19 +22,22 @@
|
|||
"effects": [
|
||||
{
|
||||
"name": "Bare Bones Armor",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"value": 0,
|
||||
"max": "3 + @system.traits.strength.value",
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20
|
||||
}
|
||||
],
|
||||
"priority": 20,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "3 + @system.traits.strength.value",
|
||||
"armorInteraction": "inactive"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "FCsgz7Tdsw6QUzBs",
|
||||
"img": "icons/magic/control/buff-strength-muscle-damage-orange.webp",
|
||||
|
|
|
|||
|
|
@ -253,7 +253,7 @@
|
|||
"origin": "Compendium.daggerheart.domains.Item.YtZzYBtR0yLPPA93",
|
||||
"transfer": false,
|
||||
"_id": "ptYT10JZ2WJHvFMd",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"rangeDependence": {
|
||||
"enabled": false,
|
||||
|
|
@ -263,13 +263,16 @@
|
|||
},
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "1"
|
||||
}
|
||||
}
|
||||
],
|
||||
"duration": {
|
||||
"type": "shortRest"
|
||||
|
|
|
|||
|
|
@ -91,17 +91,20 @@
|
|||
"effects": [
|
||||
{
|
||||
"name": "Valor-Touched",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "Ma8Zp005QYKPWIEN",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!LzLOJ9EVaHWAjoq9.qlzHOAnpBYzosQxK"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "YehcKtTeJ18q0THd",
|
||||
|
|
|
|||
|
|
@ -70,19 +70,22 @@
|
|||
"_key": "!items.effects!crIbCb9NZ4K0VpoU.awdHgEaM54G3emOU"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "Xp0MlTLdCe2oP36X",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!epkAmlZVk7HOfUUT.Fq9Q93IHCchhfSss"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "GyPhsm7zLznZDfN2",
|
||||
|
|
|
|||
|
|
@ -27,19 +27,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "XJueICAnl5vu2q2U",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!WuoVwZA53XRAIt6d.Hy0sNtFS1JAXxgwC"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "2OMciFns3bSETeH9",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!mNN6pvcsS10ChrWF.s8KtTIngTjnOlaTP"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "dIb9PWvzyS3jYDUj",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!haULhuEg37zUUvhb.ZfO5NjpqEIzZVlPq"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "hA0EcaykFiIpg4ZH",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!vMJxEWz1srfwMsoj.8bwf1Ri3jYkjphEv"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "Wejd1c4e8VtnFoc4",
|
||||
|
|
|
|||
|
|
@ -64,19 +64,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "FgjNYkbghYSz8gwW",
|
||||
|
|
|
|||
|
|
@ -90,19 +90,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "7"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "n4wyEBHbHIuYNBzt",
|
||||
|
|
|
|||
|
|
@ -66,19 +66,22 @@
|
|||
"_key": "!items.effects!Q6LxmtFetDDkoZVZ.xGxqTCO8MjNq5Cw6"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "gZfuMqjYTYLspQop",
|
||||
|
|
|
|||
|
|
@ -88,19 +88,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "5t3jCX3AGiWBB4DN",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!7emTSt6nhZuTlvt5.QIefVb73cm9gYju8"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "9jCrg3Acd75jVclW",
|
||||
|
|
|
|||
|
|
@ -70,19 +70,22 @@
|
|||
"_key": "!items.effects!UdUJNa31WxFW2noa.mfKMW9SX3Mnos1nY"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "OmGtjOMcTHNN6OsH",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!yJFp1bfpecDcStVK.v1FNEsypRF5W6vVc"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "3"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "ySw8mkws8rxzxsg4",
|
||||
|
|
|
|||
|
|
@ -81,19 +81,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "nyoNusMuukJt1MJw",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!K5WkjS0NGqHYmhU3.JHupzYULxdQzFzuj"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "7FdWcilv74zKcXWk",
|
||||
|
|
|
|||
|
|
@ -70,19 +70,22 @@
|
|||
"_key": "!items.effects!9f7RozpPTqrzJS1m.wstJ1aKKtmXgCwxB"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "qgA4nbITVOp2WTpl",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!jphnMZjnS2FkOH3s.BFwU3ErPaajUSMUz"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "dtkOq7rUKj5nLGJP",
|
||||
|
|
|
|||
|
|
@ -27,19 +27,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "JqnUKeUDbH4YJbVb",
|
||||
|
|
|
|||
|
|
@ -77,19 +77,22 @@
|
|||
"_key": "!items.effects!tzZntboNtHL5C6VM.P3aCN8PQgPXP4C9M"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "6Mh24zh1c3aK60wZ",
|
||||
|
|
|
|||
|
|
@ -27,19 +27,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "3"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "2enPnnikOoG0oIZP",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!EsIN5OLKe9ZYFNXZ.8Oa6Y375X8UpcPph"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "7"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "kqNdkD1d4FOQloMV",
|
||||
|
|
|
|||
|
|
@ -70,19 +70,22 @@
|
|||
"_key": "!items.effects!SXWjUR2aUR6bYvdl.zvzkRX2Uevemmbz4"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "7"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "kFxM3Et2bPzghJWm",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!c6tMXz4rPf9ioQrf.3AUNxBoj7mp1ziJQ"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "jdD0dJoh8gdGdh6W",
|
||||
|
|
|
|||
|
|
@ -27,19 +27,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "gP4PsefQLSTcBAQm",
|
||||
|
|
|
|||
|
|
@ -65,19 +65,22 @@
|
|||
"_key": "!items.effects!AQzU2RsqS5V5bd1v.3n4O7PyAWMEFdr5p"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "xMJr6Zj9zZd7v5uD",
|
||||
|
|
|
|||
|
|
@ -57,19 +57,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "ebhSsuWrFYUVkGXC",
|
||||
|
|
|
|||
|
|
@ -64,19 +64,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "pw8CD3IFNqb7530v",
|
||||
|
|
|
|||
|
|
@ -64,19 +64,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "Y4ZSoO0iGxLiNr80",
|
||||
|
|
|
|||
|
|
@ -95,19 +95,22 @@
|
|||
"_key": "!items.effects!8X16lJQ3xltTwynm.rkrqlwqtR9REgRx7"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "8"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "vNGSiFtcEBCz6jFQ",
|
||||
|
|
|
|||
|
|
@ -70,19 +70,22 @@
|
|||
"_key": "!items.effects!QjwsIhXKqnlvRBMv.V8CcTcVAIxHq8KNd"
|
||||
},
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "jfcv9NL2RtlfpECz",
|
||||
|
|
|
|||
|
|
@ -57,19 +57,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "E8iCCJSpPbCMostx",
|
||||
|
|
|
|||
|
|
@ -57,19 +57,22 @@
|
|||
},
|
||||
"effects": [
|
||||
{
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"name": "Armor Effect",
|
||||
"img": "icons/equipment/chest/breastplate-helmet-metal.webp",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "avGWSRMFFLbdJaYC",
|
||||
|
|
|
|||
|
|
@ -114,17 +114,20 @@
|
|||
"description": "<p>Add the item's Tier to your Armor Score</p>",
|
||||
"img": "icons/skills/melee/shield-block-gray-orange.webp",
|
||||
"_id": "7285CRGdZfHCEtT2",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -152,17 +152,20 @@
|
|||
"description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion",
|
||||
"img": "icons/skills/melee/shield-block-bash-blue.webp",
|
||||
"_id": "J0f7zqqOr61ADpdy",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier + 1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -114,17 +114,20 @@
|
|||
"description": "<p>Add the item's Tier to your Armor Score</p>",
|
||||
"img": "icons/skills/melee/shield-block-gray-orange.webp",
|
||||
"_id": "pZCrWd7zLTarvEQK",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -152,17 +152,20 @@
|
|||
"description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion",
|
||||
"img": "icons/skills/melee/shield-block-bash-blue.webp",
|
||||
"_id": "XugJeHJdnC6IymSa",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier + 1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -114,17 +114,20 @@
|
|||
"description": "Add your character's Tier to your Armor Score",
|
||||
"img": "icons/skills/melee/shield-block-gray-orange.webp",
|
||||
"_id": "vnR4Zhnb0rOqwrFw",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -114,17 +114,20 @@
|
|||
"description": "<p>Add the item's Tier to your Armor Score</p>",
|
||||
"img": "icons/skills/melee/shield-block-gray-orange.webp",
|
||||
"_id": "EixxJrRHyc6kj3Wg",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -152,17 +152,20 @@
|
|||
"description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion",
|
||||
"img": "icons/skills/melee/shield-block-bash-blue.webp",
|
||||
"_id": "1fgUIaXl6VQrhP7j",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier + 1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -114,17 +114,20 @@
|
|||
"description": "<p>Add the item's Tier to your Armor Score</p>",
|
||||
"img": "icons/skills/melee/shield-block-gray-orange.webp",
|
||||
"_id": "eV4lFIpQMiKERj4U",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -160,17 +160,20 @@
|
|||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"_id": "mvUY9LGfwICak7cE",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"disabled": false,
|
||||
"duration": {
|
||||
"value": null,
|
||||
|
|
|
|||
|
|
@ -152,17 +152,20 @@
|
|||
"description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion",
|
||||
"img": "icons/skills/melee/shield-block-bash-blue.webp",
|
||||
"_id": "tLRc4UAnGuIq7er3",
|
||||
"type": "armor",
|
||||
"type": "base",
|
||||
"system": {
|
||||
"changes": [
|
||||
{
|
||||
"key": "system.armorScore",
|
||||
"key": "Armor",
|
||||
"type": "armor",
|
||||
"phase": "initial",
|
||||
"priority": 20,
|
||||
"value": 0,
|
||||
"typeData": {
|
||||
"type": "armor",
|
||||
"max": "ITEM.@system.tier + 1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabled": false,
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
<header>
|
||||
<div>{{localize "EFFECT.FIELDS.changes.element.value.label"}}</div>
|
||||
<div>{{localize "DAGGERHEART.GENERAL.max"}}</div>
|
||||
<div>{{localize "DAGGERHEART.EFFECTS.Armor.FIELDS.armorInteraction.label"}}</div>
|
||||
<div>{{localize "DAGGERHEART.EFFECTS.ChangeTypes.armor.FIELDS.armorInteraction.label"}}</div>
|
||||
<div>{{localize "EFFECT.FIELDS.changes.element.priority.label"}}</div>
|
||||
</header>
|
||||
<ol class="scrollable">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue