mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
* Initial * . * Fixed positioning * . * Only showing the menu if there are extra resources * Improved resourceManager clickable * . * Changed variable name * Refactor resources selection and data prep (#1721) * Move resources select to scrolly text and accept actor object * Convert isReversed to prepared data and add label * Removed unused imports --------- Co-authored-by: WBHarry <williambjrklund@gmail.com> * Naming * [Feature] Custom Homebrew Resources (#1718) * Added resources to the Homebrew Menu * Fixed translations * . * Inverted from isImage to isIcon. Should be more logical for users * Removed testing resources * Refactor resource settings to not be a method (#1723) * Fix editing homebrew resources with a custom ResourcesField * Fix removing homebrew resources * Remove vestigial code * Use custom config for module data instead of including in all (#1724) * Use custom config for module data instead of including in all * More simple * base highest priority --------- Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com> Co-authored-by: Carlos Fernandez <cfern1990@gmail.com>
39 lines
1.7 KiB
Handlebars
39 lines
1.7 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.Trait.plural'}}</legend>
|
|
|
|
<div class="nest-inputs">
|
|
<div class="traits-inner-container">
|
|
{{#each document._source.system.traits as | trait key |}}
|
|
<div class="trait-container">
|
|
<span>{{localize (concat "DAGGERHEART.CONFIG.Traits." key ".name" )}}</span>
|
|
<input type="text" data-dtype="Number" name="{{concat "system.traits." key ".value"}}" value="{{trait.value}}" />
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<fieldset class="one-column">
|
|
<legend>{{localize 'DAGGERHEART.GENERAL.basics'}}</legend>
|
|
|
|
<div class="two-columns even">
|
|
{{#each resources as |resource|}}
|
|
<span {{#if resource.tooltip}}data-tooltip-text="{{resource.tooltip}}"{{/if}}>
|
|
{{formGroup resource.field value=resource.value name=resource.name}}
|
|
</span>
|
|
{{/each}}
|
|
|
|
{{formGroup systemFields.scars value=document._source.system.scars localize=true}}
|
|
|
|
{{formGroup systemFields.proficiency value=document._source.system.proficiency localize=true}}
|
|
<span data-tooltip-text="{{localize "DAGGERHEART.UI.Tooltip.maxEvasionClassBound"}}">
|
|
{{formGroup systemFields.evasion value=document._source.system.evasion label="DAGGERHEART.ACTORS.Character.maxEvasionBonus" localize=true}}
|
|
</span>
|
|
</div>
|
|
</fieldset>
|
|
</section>
|