2022-07-23 22:35:27 +02:00
|
|
|
<form class="{{cssClass}}" autocomplete="off">
|
|
|
|
<header class="sheet-header">
|
|
|
|
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}"/>
|
|
|
|
<div class="header-fields">
|
|
|
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{> systems/fvtt-crucible-rpg/templates/partial-item-nav.html}}
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
|
|
|
|
{{> systems/fvtt-crucible-rpg/templates/partial-item-description.html}}
|
|
|
|
|
|
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
|
|
<ul>
|
|
|
|
<li class="flexrow"><label class="generic-label">Add feat die ?</label>
|
2022-08-16 22:29:27 +02:00
|
|
|
<label class="attribute-value checkbox"><input type="checkbox" name="system.isfeatdie" {{checked data.isfeatdie}}/></label>
|
2022-07-23 22:35:27 +02:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="generic-label">Add SL ?</label>
|
2022-08-16 22:29:27 +02:00
|
|
|
<label class="attribute-value checkbox"><input type="checkbox" name="system.issl" {{checked data.issl}}/></label>
|
2022-07-23 22:35:27 +02:00
|
|
|
</li>
|
|
|
|
|
|
|
|
{{#if data.issl}}
|
|
|
|
<li class="flexrow"><label class="generic-label">SL value</label>
|
2022-08-16 22:29:27 +02:00
|
|
|
<input type="text" class="" name="data.sl" value="{{system.sl}}" data-dtype="Number"/>
|
2022-07-23 22:35:27 +02:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</form>
|