mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Initial * Added Character-Settings * Finalized Character-Settings * Hide CharacterSetup if any part is done manually * Fixed class/subclass drag-drop * Fixed relinking of Features from items created on Character * Adding features on CharacterItems now adds them on the Character and relinks * Made suggested items inactive in the Class sheet if rendered from inside a Character * Added hope to CharacterSetting * add style to textarea element, add spellcasting and domain class into char sheet and move rest buttons to another place * Fixed characterCreation experience description --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com>
43 lines
No EOL
1.6 KiB
Handlebars
43 lines
No EOL
1.6 KiB
Handlebars
<header class='adversary-header-sheet'>
|
|
<line-div></line-div>
|
|
<div class="name-row">
|
|
<h1 class='actor-name'>
|
|
<input type='text' name='name' value='{{source.name}}' placeholder="{{localize "DAGGERHEART.GENERAL.actorName"}}"
|
|
/>
|
|
</h1>
|
|
</div>
|
|
<div class="tags">
|
|
<div class="tag">
|
|
<span>
|
|
{{localize (concat 'DAGGERHEART.GENERAL.Tiers.' source.system.tier)}}
|
|
</span>
|
|
</div>
|
|
<div class="tag">
|
|
<span>
|
|
{{localize (concat 'DAGGERHEART.CONFIG.AdversaryType.' source.system.type '.label')}}
|
|
</span>
|
|
</div>
|
|
{{#if (eq source.system.type 'horde')}}
|
|
<div class="tag">
|
|
<span>{{source.system.hordeHp}}</span>
|
|
<span>/{{localize "DAGGERHEART.GENERAL.HitPoints.short"}}</span>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
<line-div></line-div>
|
|
<div class="adversary-info">
|
|
<div class="description">
|
|
<i>{{{description}}}</i>
|
|
</div>
|
|
<div class="motives-and-tatics">
|
|
<b>{{localize 'DAGGERHEART.ACTORS.Adversary.FIELDS.motivesAndTactics.label'}}: </b>{{{source.system.motivesAndTactics}}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="adversary-navigation">
|
|
{{> 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs'}}
|
|
<button data-action="openSettings" data-tooltip-text="{{localize "DAGGERHEART.UI.Tooltip.openSheetSettings"}}">
|
|
<i class="fa-solid fa-wrench"></i>
|
|
</button>
|
|
</div>
|
|
</header> |