mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Organized language * Organized high level folders * Some deeper organization * More org. That's enough ._. * Capitalized initial system localization categories
38 lines
No EOL
2.2 KiB
Handlebars
38 lines
No EOL
2.2 KiB
Handlebars
<section
|
|
class='tab {{tabs.details.cssClass}} {{tabs.details.id}}'
|
|
data-tab='{{tabs.details.id}}'
|
|
data-group='{{tabs.details.group}}'
|
|
>
|
|
<fieldset class="one-column">
|
|
<legend>{{localize 'DAGGERHEART.GENERAL.basics'}}</legend>
|
|
<div class="nest-inputs">
|
|
{{formGroup systemFields.tier value=document.system.tier localize=true}}
|
|
{{formGroup systemFields.type value=document.system.type localize=true}}
|
|
{{#if (eq document.system.type 'horde')}}
|
|
{{formGroup systemFields.hordeHp value=document.system.hordeHp label=(localize "DAGGERHEART.ACTORS.Adversary.horderHp")}}
|
|
{{/if}}
|
|
{{formGroup systemFields.difficulty value=document.system.difficulty localize=true}}
|
|
</div>
|
|
{{formField systemFields.description value=document.system.description label=(localize "DAGGERHEART.ACTORS.Adversary.FIELDS.description.label")}}
|
|
{{formField systemFields.motivesAndTactics value=document.system.motivesAndTactics label=(localize "DAGGERHEART.ACTORS.Adversary.FIELDS.motivesAndTactics.label")}}
|
|
</fieldset>
|
|
|
|
<div class="fieldsets-section">
|
|
<fieldset class="flex">
|
|
<legend>{{localize "DAGGERHEART.GENERAL.hitPoints"}}</legend>
|
|
{{formGroup systemFields.resources.fields.hitPoints.fields.value value=document.system.resources.hitPoints.value}}
|
|
{{formGroup systemFields.resources.fields.hitPoints.fields.max value=document.system.resources.hitPoints.max}}
|
|
</fieldset>
|
|
<fieldset class="flex">
|
|
<legend>{{localize "DAGGERHEART.GENERAL.stress"}}</legend>
|
|
{{formGroup systemFields.resources.fields.stress.fields.value value=document.system.resources.stress.value}}
|
|
{{formGroup systemFields.resources.fields.stress.fields.max value=document.system.resources.stress.max}}
|
|
</fieldset>
|
|
</div>
|
|
|
|
<fieldset class="flex">
|
|
<legend>{{localize "DAGGERHEART.GENERAL.DamageThresholds.title"}}</legend>
|
|
{{formGroup systemFields.damageThresholds.fields.major value=document.system.damageThresholds.major}}
|
|
{{formGroup systemFields.damageThresholds.fields.severe value=document.system.damageThresholds.severe}}
|
|
</fieldset>
|
|
</section> |