mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Temp * Finished Evolved * Fixed hybrid * Changed generalConfig.tiers to be number based * Weaponhandling while in beastform * Added unarmed strike in sidebar * Added DamageEnricher * Added effect enricher * Corrected downtime buttons and actions * Added BeastformTooltip * Split the BeastformDialog into parts with tabs * Added temp beastform features * rollData change * Improvement * character.getRollData cleanup
37 lines
No EOL
1.7 KiB
Handlebars
37 lines
No EOL
1.7 KiB
Handlebars
<section
|
|
class='tab {{tabs.settings.cssClass}} {{tabs.settings.id}}'
|
|
data-tab='{{tabs.settings.id}}'
|
|
data-group='{{tabs.settings.group}}'
|
|
>
|
|
{{#if (eq source.system.beastformType 'evolved')}}
|
|
{{formGroup systemFields.tier value=source.system.tier localize=true}}
|
|
{{else}}
|
|
<div class="two-columns even">
|
|
{{formGroup systemFields.tier value=source.system.tier localize=true}}
|
|
{{formGroup systemFields.mainTrait value=source.system.mainTrait blank=false localize=true}}
|
|
</div>
|
|
|
|
{{#unless (eq source.system.beastformType 'hybrid')}}
|
|
{{formGroup systemFields.examples value=source.system.examples localize=true}}
|
|
<div class="advantage-on-section">
|
|
<label>{{localize "DAGGERHEART.ITEMS.Beastform.FIELDS.advantageOn.label"}}</label>
|
|
<input class="advantageon-input" value="{{advantageOn}}" />
|
|
</div>
|
|
{{/unless}}
|
|
{{/if}}
|
|
|
|
<fieldset class="two-columns even">
|
|
<legend>{{localize "DAGGERHEART.ITEMS.Beastform.tokenTitle"}}</legend>
|
|
|
|
<div class="full-width">
|
|
{{formGroup systemFields.tokenImg value=source.system.tokenImg localize=true}}
|
|
</div>
|
|
|
|
<div class="full-width">
|
|
{{formGroup systemFields.tokenRingImg value=source.system.tokenRingImg localize=true}}
|
|
</div>
|
|
|
|
{{formGroup systemFields.tokenSize.fields.height value=source.system.tokenSize.height localize=true placeholder=(localize "DAGGERHEART.ITEMS.Beastform.FIELDS.tokenSize.placeholder") }}
|
|
{{formGroup systemFields.tokenSize.fields.width value=source.system.tokenSize.width localize=true placeholder=(localize "DAGGERHEART.ITEMS.Beastform.FIELDS.tokenSize.placeholder")}}
|
|
</fieldset>
|
|
</section> |