2023-01-04 21:24:56 +01: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>
|
|
|
|
|
2023-01-06 17:45:36 +01:00
|
|
|
{{> systems/fvtt-warhero/templates/partial-item-nav.html}}
|
2023-01-04 21:24:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
|
2023-01-06 17:45:36 +01:00
|
|
|
{{> systems/fvtt-warhero/templates/partial-item-description.html}}
|
2023-01-04 21:24:56 +01:00
|
|
|
|
|
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
|
|
|
|
|
|
<div class="tab" data-group="primary">
|
|
|
|
<ul>
|
2023-01-06 17:45:36 +01:00
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">Shield type</label>
|
|
|
|
<select class="item-field-label-long " type="text" name="system.shieldtype" value="{{system.shieldtype}}" data-dtype="String">
|
2023-01-04 22:09:09 +01:00
|
|
|
{{#select system.shieldtype}}
|
|
|
|
{{#each config.armorTypes as |type key|}}
|
2023-01-04 22:21:49 +01:00
|
|
|
<option value="{{key}}">{{localize type.label}}</option>
|
2023-01-04 21:24:56 +01:00
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
2023-01-04 22:09:09 +01:00
|
|
|
|
2023-01-06 17:45:36 +01:00
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">Parry Bonus</label>
|
|
|
|
<input type="text" class="item-field-label-medium " name="system.parrybonus" value="{{system.parrybonus}}" data-dtype="Number"/>
|
2023-01-04 21:24:56 +01:00
|
|
|
</li>
|
2023-01-06 17:45:36 +01:00
|
|
|
|
|
|
|
{{> systems/fvtt-warhero/templates/partial-item-common-equipment.html}}
|
2023-01-04 21:24:56 +01:00
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</form>
|