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">
|
|
|
|
|
2023-02-08 19:38:09 +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">
|
|
|
|
<ul>
|
|
|
|
|
2023-02-27 22:04:03 +01:00
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.conditiontype"}}</label>
|
|
|
|
<select class="item-field-label-medium " type="text" name="system.conditiontype" value="{{system.conditiontype}}" data-dtype="String">
|
|
|
|
{{#select system.conditiontype}}
|
|
|
|
{{#each config.conditionType as |type key|}}
|
|
|
|
<option value="{{key}}">{{localize type}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.duration"}}</label>
|
|
|
|
<select class="item-field-label-medium " type="text" name="system.duration" value="{{system.duration}}" data-dtype="String">
|
|
|
|
{{#select system.duration}}
|
|
|
|
{{#each config.conditionDuration as |type key|}}
|
|
|
|
<option value="{{key}}">{{localize type}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.begin"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long" name="system.begin" value="{{system.begin}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.specialduration"}}</label>
|
|
|
|
<select class="item-field-label-medium " type="text" name="system.specialduration" value="{{system.specialduration}}" data-dtype="String">
|
|
|
|
{{#select system.specialduration}}
|
|
|
|
{{#each config.conditionSpecialDuration as |type key|}}
|
|
|
|
<option value="{{key}}">{{localize type}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.durationvalue"}}</label>
|
|
|
|
<input type="text" class="item-field-label-short" name="system.durationvalue" value="{{system.durationvalue}}" data-dtype="Number"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.durationunit"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long" name="system.durationunit" value="{{system.durationunit}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
{{#if (eq conditiontype "disease")}}
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.dcsave"}}</label>
|
|
|
|
<input type="text" class="item-field-label-short" name="system.dcsave" value="{{system.dcsave}}" data-dtype="Number"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.incubationtime"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long" name="system.incubationtime" value="{{system.incubationtime}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.diseaseduration"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long" name="system.diseaseduration" value="{{system.diseaseduration}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
2023-02-07 15:18:00 +01:00
|
|
|
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.effect"}}</label>
|
|
|
|
<input type="text" class="item-field-label-long" name="system.shortdescription" value="{{system.shortdescription}}" data-dtype="String"/>
|
|
|
|
</li>
|
|
|
|
|
2023-01-04 21:24:56 +01:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</form>
|