mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* FIX: Add enritch to HTMLField FIX: Remove no-HTMLField from Manifest FIX: Convert Scar's HTMLField to StringField FIX: Remove unused HTMLField * REMOVE unused hanldebars helpers * FEAT: add inventory-fieldset-items-V2 and inventory-item-V2 partials for Actors * FIX showLabels to hideTags * FEAT: add template to items sheet * FEAT: add effects tabs on ItemSheet * FEAT: add context menus for all inventory-items * FEAT: add resources to inventory-item template * FEAT: add enritch on inventory-item description FEAT: add extensible behavior on inventory-item-content FEAT: add fade effect on item-img to roll-itmg * FEAT: add eritch to NPC description FIX: missing htmlFieldss on manfiest FIX: add misisng localizations * FIX_ minor fixes * Little resource fix. Noone will notice ._. * FIX: remove default list styles FIX: .extended css reduce max-height, shorten animation duration to 0.5s, and set overflow to auto. FIX: set enriched=notes.enriche on notes.hbs FIX: set experience.value on sidebar.hbs FIX: move tooltip from item-img to img-portrait on inventory-item-V2.hbs REMOVE: unused files --------- Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com> Co-authored-by: WBHarry <williambjrklund@gmail.com>
36 lines
No EOL
1.9 KiB
Handlebars
36 lines
No EOL
1.9 KiB
Handlebars
<section
|
|
class='tab {{tabs.biography.cssClass}} {{tabs.biography.id}}'
|
|
data-tab='{{tabs.biography.id}}'
|
|
data-group='{{tabs.biography.group}}'
|
|
>
|
|
|
|
<div class="items-section">
|
|
<fieldset class="flex">
|
|
<legend>{{localize 'DAGGERHEART.ACTORS.Character.story.characteristics'}}</legend>
|
|
|
|
<div class="input">
|
|
<span>{{localize 'DAGGERHEART.ACTORS.Character.pronouns'}}</span>
|
|
{{formInput systemFields.biography.fields.characteristics.fields.pronouns value=source.system.biography.characteristics.pronouns enriched=source.system.biography.characteristics.pronouns localize=true toggled=true}}
|
|
</div>
|
|
|
|
<div class="input">
|
|
<span>{{localize 'DAGGERHEART.ACTORS.Character.age'}}</span>
|
|
{{formInput systemFields.biography.fields.characteristics.fields.age value=source.system.biography.characteristics.age enriched=source.system.biography.characteristics.age localize=true toggled=true}}
|
|
</div>
|
|
|
|
<div class="input">
|
|
<span>{{localize 'DAGGERHEART.ACTORS.Character.faith'}}</span>
|
|
{{formInput systemFields.biography.fields.characteristics.fields.faith value=source.system.biography.characteristics.faith enriched=source.system.biography.characteristics.faith localize=true toggled=true}}
|
|
</div>
|
|
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>{{localize 'DAGGERHEART.ACTORS.Character.story.backgroundTitle'}}</legend>
|
|
{{formInput background.field value=background.value enriched=background.enriched toggled=true}}
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>{{localize 'DAGGERHEART.ACTORS.Character.story.connectionsTitle'}}</legend>
|
|
{{formInput connections.field value=connections.value enriched=connections.enriched toggled=true}}
|
|
</fieldset>
|
|
</div>
|
|
</section> |