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-04 22:09:09 +01:00
|
|
|
{{> systems/fvtt-warhero/templates/partial-item-nav.html}}
|
2023-01-04 21:24:56 +01:00
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
|
|
|
|
<div class="tab details" data-group="primary" data-tab="description">
|
|
|
|
|
|
|
|
<label class="generic-label">Description</label>
|
|
|
|
<div class="medium-editor item-text-long-line">
|
2023-01-04 22:09:09 +01:00
|
|
|
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
2023-01-04 21:24:56 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
|
|
<ul>
|
2023-01-21 17:56:14 +01:00
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">{{localize "WH.ui.hpprog"}}</label>
|
|
|
|
<select class="item-field-label-long " type="text" name="system.hpprogresion" value="{{system.hpprogresion}}" data-dtype="String">
|
|
|
|
{{#select system.hpprogresion}}
|
|
|
|
{{#each config.progressionList as |prog key|}}
|
|
|
|
<option value="{{key}}">{{localize prog}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">{{localize "WH.ui.lan"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long" name="system.languages" value="{{system.languages}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">{{localize "WH.ui.attrbonus"}}</label>
|
|
|
|
<select class="item-field-label-long " type="text" name="system.attributebonus" value="{{system.attributebonus}}" data-dtype="String">
|
|
|
|
{{#select system.attributebonus}}
|
|
|
|
{{#each abilities as |ability key|}}
|
|
|
|
<option value="{{key}}">{{ability.label}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">{{localize "WH.ui.weapons"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long3 " name="system.weapons" value="{{system.weapons}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">{{localize "WH.ui.armors"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long3 " name="system.armors" value="{{system.armors}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow"><label class="item-field-label-medium ">{{localize "WH.ui.shields"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long3 " name="system.shields" value="{{system.shields}}" data-dtype="String"/>
|
|
|
|
</li>
|
2023-01-04 21:24:56 +01:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</form>
|