2021-01-29 21:41:00 +01:00
|
|
|
<form class="{{cssClass}}" autocomplete="off">
|
|
|
|
<header class="sheet-header">
|
2021-03-25 09:28:36 +01:00
|
|
|
<img class="profile-img" src="{{img}}" data-edit="img" title="{{name}}"/>
|
2021-01-29 21:41:00 +01:00
|
|
|
<div class="header-fields">
|
2021-10-29 21:31:58 +02:00
|
|
|
{{#if (or isGM data.identifie)}}
|
2021-03-25 09:28:36 +01:00
|
|
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
|
2021-10-29 21:31:58 +02:00
|
|
|
{{else}}
|
|
|
|
<h1 class="charname">Inconnue</h1>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2021-01-29 21:41:00 +01:00
|
|
|
</header>
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
2021-10-29 21:31:58 +02:00
|
|
|
{{#if (or isGM data.identifie)}}
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Identifiée ? </label>
|
|
|
|
<input class="attribute-value" type="checkbox" name="data.identifie" {{#if data.identifie}}checked{{/if}}/>
|
|
|
|
</div>
|
2021-01-29 21:41:00 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Malignité </label>
|
|
|
|
<input class="attribute-value" type="text" name="data.malignite" value="{{data.malignite}}" data-dtype="Number"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Périodicité</label>
|
|
|
|
<input class="attribute-value" type="text" name="data.periodicite" value="{{data.periodicite}}" data-dtype="String"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Dommages</label>
|
|
|
|
<input class="attribute-value" type="text" name="data.dommages" value="{{data.dommages}}" data-dtype="String"/>
|
|
|
|
</div>
|
2021-10-29 21:31:58 +02:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Remedes Connus ? </label>
|
|
|
|
<input class="attribute-value" type="checkbox" name="data.remedesconnus" {{#if data.remedesconnus}}checked{{/if}}/>
|
|
|
|
</div>
|
|
|
|
{{#if (or isGM data.remedesconnus)}}
|
2021-01-29 21:41:00 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Remèdes </label>
|
|
|
|
<input class="attribute-value" type="text" name="data.remedes" value="{{data.remedes}}" data-dtype="String"/>
|
|
|
|
</div>
|
2021-10-29 21:31:58 +02:00
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
2021-06-29 16:03:10 +02:00
|
|
|
|
|
|
|
{{>"systems/foundryvtt-reve-de-dragon/templates/partial-item-description.html"}}
|
|
|
|
|
2021-01-29 21:41:00 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
</form>
|