Labrys axe, rain of blades fixes. Enriched Description improvement on armor and weapon

This commit is contained in:
WBHarry 2026-04-02 22:30:49 +02:00
parent be8d7f6469
commit bbc521ece0
4 changed files with 20 additions and 75 deletions

View file

@ -36,7 +36,8 @@
"resultBased": false, "resultBased": false,
"value": { "value": {
"custom": { "custom": {
"enabled": false "enabled": false,
"formula": ""
}, },
"multiplier": "prof", "multiplier": "prof",
"dice": "d8", "dice": "d8",
@ -44,7 +45,9 @@
"flatMultiplier": 1 "flatMultiplier": 1
}, },
"applyTo": "hitPoints", "applyTo": "hitPoints",
"type": [], "type": [
"magical"
],
"base": false, "base": false,
"valueAlt": { "valueAlt": {
"multiplier": "prof", "multiplier": "prof",
@ -52,7 +55,8 @@
"dice": "d6", "dice": "d6",
"bonus": null, "bonus": null,
"custom": { "custom": {
"enabled": false "enabled": false,
"formula": ""
} }
} }
} }
@ -87,57 +91,6 @@
"name": "Cast", "name": "Cast",
"img": "icons/skills/melee/spear-tips-three-green.webp", "img": "icons/skills/melee/spear-tips-three-green.webp",
"range": "veryClose" "range": "veryClose"
},
"CUKoYyDxQhNc0pLs": {
"type": "damage",
"_id": "CUKoYyDxQhNc0pLs",
"systemPath": "actions",
"description": "<p>If a target you hit is <em>Vulnerable</em>, they take an extra <strong>1d8</strong> damage.</p>",
"chatDisplay": true,
"actionType": "action",
"cost": [],
"uses": {
"value": null,
"max": "",
"recovery": null
},
"damage": {
"parts": [
{
"value": {
"custom": {
"enabled": false
},
"multiplier": "flat",
"flatMultiplier": 1,
"dice": "d8",
"bonus": null
},
"applyTo": "hitPoints",
"type": [],
"base": false,
"resultBased": false,
"valueAlt": {
"multiplier": "prof",
"flatMultiplier": 1,
"dice": "d6",
"bonus": null,
"custom": {
"enabled": false
}
}
}
],
"includeBase": false
},
"target": {
"type": "any",
"amount": null
},
"effects": [],
"name": "Damage Against Vulnerable",
"img": "icons/skills/melee/spear-tips-three-purple.webp",
"range": ""
} }
}, },
"attribution": { "attribution": {

View file

@ -5,22 +5,14 @@
"_id": "ijWppQzSOqVCb3rE", "_id": "ijWppQzSOqVCb3rE",
"img": "icons/weapons/axes/axe-battle-jagged.webp", "img": "icons/weapons/axes/axe-battle-jagged.webp",
"system": { "system": {
"description": "", "description": "<strong>Protective</strong>: +1 to Armor Score",
"actions": {}, "actions": {},
"attached": [], "attached": [],
"tier": 3, "tier": 3,
"equipped": false, "equipped": false,
"secondary": false, "secondary": false,
"burden": "twoHanded", "burden": "twoHanded",
"weaponFeatures": [ "weaponFeatures": [],
{
"value": "protective",
"effectIds": [
"qTxADRsQnKiYfOiQ"
],
"actionIds": []
}
],
"attack": { "attack": {
"name": "Attack", "name": "Attack",
"img": "icons/skills/melee/blood-slash-foam-red.webp", "img": "icons/skills/melee/blood-slash-foam-red.webp",
@ -111,13 +103,13 @@
"effects": [ "effects": [
{ {
"name": "Protective", "name": "Protective",
"description": "Add your character's Tier to your Armor Score", "description": "+1 to Armor Score",
"img": "icons/skills/melee/shield-block-gray-orange.webp", "img": "icons/magic/defensive/shield-barrier-deflect-teal.webp",
"changes": [ "changes": [
{ {
"key": "system.armorScore", "key": "system.armorScore",
"mode": 2, "mode": 2,
"value": "ITEM.@system.tier" "value": "1"
} }
], ],
"_id": "qTxADRsQnKiYfOiQ", "_id": "qTxADRsQnKiYfOiQ",

View file

@ -1,9 +1,9 @@
<div class="item-description-outer-container"> {{#if features.length}}
{{#if features.length}} <div class="item-description-outer-container">
<div class="item-description-container"> <div class="item-description-container">
{{#each features as | feature |}} {{#each features as | feature |}}
<div><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div> <div><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div>
{{/each}} {{/each}}
</div> </div>
{{/if}} </div>
</div> {{/if}}

View file

@ -1,9 +1,9 @@
<div class="item-description-outer-container"> {{#if features.length}}
{{#if features.length}} <div class="item-description-outer-container">
<div class="item-description-container"> <div class="item-description-container">
{{#each features as | feature |}} {{#each features as | feature |}}
<div><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div> <div><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div>
{{/each}} {{/each}}
</div> </div>
{{/if}} </div>
</div> {{/if}}