2024-07-08 07:54:53 +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-te-deum/templates/items/partial-item-nav.hbs}}
|
|
|
|
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
|
|
|
|
{{> systems/fvtt-te-deum/templates/items/partial-item-description.hbs}}
|
|
|
|
|
|
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
|
|
|
|
|
|
<h4 class="item-name-label-long">Vertus médicinales</h4>
|
|
|
|
<textarea name="system.vertus" data-dtype="String">
|
|
|
|
{{{system.vertus}}}
|
|
|
|
</textarea>
|
|
|
|
|
|
|
|
<h4 class="item-name-label-long">Toxicité</h4>
|
|
|
|
<textarea name="system.toxicite" data-dtype="String">
|
|
|
|
{{{system.toxicite}}}
|
|
|
|
</textarea>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li class="flexrow">
|
|
|
|
<label class="item-name-label-long">Difficulté au test d'Endurance</label>
|
|
|
|
<select class="" type="text" name="system.difficulteEndurance" data-dtype="String">
|
|
|
|
{{selectOptions config.difficulte selected=system.difficulteEndurance abelAttr="label"}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow">
|
|
|
|
<label class="item-name-label-long">Virulence</label>
|
|
|
|
<select name="system.virulence">
|
|
|
|
{{selectOptions config.virulencePoison selected=system.virulence labelAttr="label"}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow">
|
|
|
|
<label class="item-name-label-long">Appliquée?</label>
|
|
|
|
<input type="checkbox" name="system.appliquee" {{checked system.appliquee}} />
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow">
|
|
|
|
<label class="item-name-label-long">Valeur moyenne</label>
|
|
|
|
<input type="text" class="padd-right numeric-input item-field-label-short"
|
|
|
|
name="system.prix" value="{{system.prix}}" data-dtype="Number" />
|
|
|
|
<select name="system.monnaie">
|
2025-02-04 15:24:40 +01:00
|
|
|
{{selectOptions config.monnaie selected=system.monnaie labelAttr="label" }}
|
2024-07-08 07:54:53 +02:00
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</form>
|