mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Added support for automatic horde damage * Active effects are shown on the token * Fixed logic * Fixed d20 dice lightmode color
49 lines
No EOL
1.9 KiB
Handlebars
49 lines
No EOL
1.9 KiB
Handlebars
<header class='environment-header-sheet'>
|
|
<img class='profile' src='{{source.img}}' data-action='editImage' data-edit='img' />
|
|
<div class='item-container'>
|
|
<div class="item-info">
|
|
<h1 class='item-name'><input type='text' name='name' value='{{source.name}}' /></h1>
|
|
<div class="tags">
|
|
<div class="tag">
|
|
<span>
|
|
{{localize (concat 'DAGGERHEART.GENERAL.Tiers.' source.system.tier)}}
|
|
</span>
|
|
</div>
|
|
{{#if source.system.type}}
|
|
<div class="tag">
|
|
<span>
|
|
{{localize (concat 'DAGGERHEART.CONFIG.EnvironmentType.' source.system.type '.label')}}
|
|
</span>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
<div class="status-number">
|
|
<div class='status-value armor-slots'>
|
|
{{#if source.system.difficulty}}
|
|
<p>{{source.system.difficulty}}</p>
|
|
{{else}}
|
|
<p>-</p>
|
|
{{/if}}
|
|
</div>
|
|
<div class="status-label">
|
|
<h4>{{localize "DAGGERHEART.GENERAL.difficulty"}}</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<line-div></line-div>
|
|
<div class="environment-info">
|
|
<div class="description">
|
|
<i>{{{source.system.description}}}</i>
|
|
</div>
|
|
<div class="impulses">
|
|
<b>{{localize 'DAGGERHEART.ACTORS.Environment.FIELDS.impulses.label'}}: </b>{{{source.system.impulses}}}
|
|
</div>
|
|
</div>
|
|
<div class="environment-navigation">
|
|
{{> 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs'}}
|
|
<button type="button" data-action="openSettings">
|
|
<i class="fa-solid fa-wrench"></i>
|
|
</button>
|
|
</div>
|
|
</header> |