mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-13 12:11:07 +01:00
[Feature] Armor/Weapon Features In Description (#1521)
* ItemFeatures are now prepended to the description * . * Better separation of concerns * . * .
This commit is contained in:
parent
8de12551ad
commit
883aaeec02
10 changed files with 84 additions and 20 deletions
5
templates/sheets/items/armor/description.hbs
Normal file
5
templates/sheets/items/armor/description.hbs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<div>
|
||||
{{#each features as | feature |}}
|
||||
<div><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
5
templates/sheets/items/weapon/description.hbs
Normal file
5
templates/sheets/items/weapon/description.hbs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<div>
|
||||
{{#each features as | feature |}}
|
||||
<div><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue