Ajout multiples pour le combat et ameliorations des items
This commit is contained in:
@@ -85,6 +85,12 @@
|
||||
{{/each}}
|
||||
|
||||
<h3>Autres</h3>
|
||||
|
||||
<li class="flexrow">
|
||||
<label class="item-name-label-long">Equipé?</label>
|
||||
<input type="checkbox" name="system.equipe" {{checked system.equipe}} />
|
||||
</li>
|
||||
|
||||
<li class="flexrow">
|
||||
<label class="item-name-label-long">Bonus d'Initiative</label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short"
|
||||
|
@@ -32,6 +32,11 @@
|
||||
name="system.protection" value="{{system.protection}}" data-dtype="Number" />
|
||||
</li>
|
||||
|
||||
<li class="flexrow">
|
||||
<label class="item-name-label-long">Equipé?</label>
|
||||
<input type="checkbox" name="system.equipe" {{checked system.equipe}} />
|
||||
</li>
|
||||
|
||||
<li class="flexrow">
|
||||
<label class="item-name-label-long">Prix</label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short"
|
||||
|
38
templates/items/item-blessure-sheet.hbs
Normal file
38
templates/items/item-blessure-sheet.hbs
Normal file
@@ -0,0 +1,38 @@
|
||||
<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">
|
||||
|
||||
<ul>
|
||||
<li class="flexrow">
|
||||
<label class="item-name-label-long">Type de Blessure</label>
|
||||
<select name="system.typeBlessure">
|
||||
{{selectOptions config.blessures selected=system.typeBlessure valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow">
|
||||
<label class="item-name-label-long">Localisation</label>
|
||||
<select name="system.localisation">
|
||||
{{selectOptions config.LOCALISATION selected=system.localisation valueAttr="id" nameAttr="id" labelAttr="label"}}
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
59
templates/items/item-maladie-sheet.hbs
Normal file
59
templates/items/item-maladie-sheet.hbs
Normal file
@@ -0,0 +1,59 @@
|
||||
<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">Transmission</h4>
|
||||
<textarea name="system.transmission" data-dtype="String">
|
||||
{{{system.transmission}}}
|
||||
</textarea>
|
||||
|
||||
<h4 class="item-name-label-long">Symptômes</h4>
|
||||
<textarea name="system.symptomes" data-dtype="String">
|
||||
{{{system.symptomes}}}
|
||||
</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.virulence selected=system.virulence labelAttr="label"}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow">
|
||||
<label class="item-name-label-long">Fièvre</label>
|
||||
<select name="system.fievre">
|
||||
{{selectOptions config.fievre selected=system.fievre 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>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
62
templates/items/item-simple-sheet.hbs
Normal file
62
templates/items/item-simple-sheet.hbs
Normal file
@@ -0,0 +1,62 @@
|
||||
<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">
|
||||
{{selectOptions config.monnaie selected=system.monnaie labelAttr="label" blank="denier"}}
|
||||
</select>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
Reference in New Issue
Block a user