mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
35 lines
2.1 KiB
Handlebars
35 lines
2.1 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._source.system.tier localize=true}}
|
|
{{formGroup systemFields.type value=document._source.system.type localize=true}}
|
|
{{#if (eq document._source.system.type 'horde')}}
|
|
{{formGroup systemFields.hordeHp value=document._source.system.hordeHp label=(localize "DAGGERHEART.ACTORS.Adversary.horderHp")}}
|
|
{{/if}}
|
|
{{formGroup systemFields.difficulty value=document._source.system.difficulty localize=true}}
|
|
</div>
|
|
{{formGroup systemFields.size value=document._source.system.size label=(localize "DAGGERHEART.GENERAL.tokenSize") localize=true}}
|
|
{{formField systemFields.description value=document._source.system.description label=(localize "DAGGERHEART.ACTORS.Adversary.FIELDS.description.label")}}
|
|
{{formField systemFields.motivesAndTactics value=document._source.system.motivesAndTactics label=(localize "DAGGERHEART.ACTORS.Adversary.FIELDS.motivesAndTactics.label")}}
|
|
</fieldset>
|
|
|
|
<div class="fieldsets-section">
|
|
<fieldset class="flex">
|
|
<legend>{{localize "DAGGERHEART.GENERAL.Resource.plural"}}</legend>
|
|
{{#each resources as |resource|}}
|
|
{{formGroup resource.field value=resource.value name=resource.name}}
|
|
{{/each}}
|
|
</fieldset>
|
|
</div>
|
|
|
|
<fieldset class="flex">
|
|
<legend>{{localize "DAGGERHEART.GENERAL.DamageThresholds.title"}}</legend>
|
|
{{formGroup systemFields.damageThresholds.fields.major value=document._source.system.damageThresholds.major label=(localize "DAGGERHEART.GENERAL.DamageThresholds.majorThreshold")}}
|
|
{{formGroup systemFields.damageThresholds.fields.severe value=document._source.system.damageThresholds.severe label=(localize "DAGGERHEART.GENERAL.DamageThresholds.severeThreshold")}}
|
|
</fieldset>
|
|
</section>
|