mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Restructured all the files * Moved build/daggerheart.js to ./daggerheart.js. Changed rollup to use the css file instead of the less * Restored build/ folder * Mvoed config out form under application * Moved roll.mjs to module/dice and renamed to dhRolls.mjs * Update module/canvas/placeables/_module.mjs Co-authored-by: joaquinpereyra98 <24190917+joaquinpereyra98@users.noreply.github.com> * Le massive export update * Removed unncessary import --------- Co-authored-by: joaquinpereyra98 <24190917+joaquinpereyra98@users.noreply.github.com>
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.Sheets.Adversary.horderHp")}}
|
|
{{/if}}
|
|
{{formGroup systemFields.difficulty value=document.system.difficulty localize=true}}
|
|
</div>
|
|
{{formField systemFields.description value=document.system.description label=(localize "DAGGERHEART.Sheets.Adversary.FIELDS.description.label")}}
|
|
{{formField systemFields.motivesAndTactics value=document.system.motivesAndTactics label=(localize "DAGGERHEART.Sheets.Adversary.FIELDS.motivesAndTactics.label")}}
|
|
</fieldset>
|
|
|
|
<div class="fieldsets-section">
|
|
<fieldset class="flex">
|
|
<legend>{{localize "DAGGERHEART.Sheets.Adversary.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.Sheets.Adversary.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.Sheets.Adversary.DamageThresholds"}}</legend>
|
|
{{formGroup systemFields.damageThresholds.fields.major value=document.system.damageThresholds.major}}
|
|
{{formGroup systemFields.damageThresholds.fields.severe value=document.system.damageThresholds.severe}}
|
|
</fieldset>
|
|
</section> |