Files
fvtt-mournblade/templates/item-potion-sheet.hbs
T
2026-05-02 08:26:28 +02:00

72 lines
4.0 KiB
Handlebars

<section class="{{cssClass}}" autocomplete="off">
{{> systems/fvtt-mournblade/templates/partial-item-header.hbs this}}
{{> systems/fvtt-mournblade/templates/partial-item-nav.hbs this}}
<div class="tab details" data-group="primary" data-tab="details">
<ul class="item-list alternate-list">
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionRune"}} :</label>
<input type="text" class="padd-right item-field-label-long1" name="system.rune" value="{{system.rune}}" data-dtype="String" />
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionSeuil"}} :</label>
<input type="number" class="padd-right numeric-input item-field-label-short" name="system.runeSeuil" value="{{system.runeSeuil}}" data-dtype="Number" />
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionPointsAme"}} :</label>
<input type="number" class="padd-right numeric-input item-field-label-short" name="system.pointsAme" value="{{system.pointsAme}}" data-dtype="Number" />
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionForme"}} :</label>
<select class="item-field-label-long1" name="system.forme">
{{selectOptions config.potionFormeOptions selected=system.forme}}
</select>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionStatut"}} :</label>
<select class="item-field-label-long1" name="system.statut">
{{selectOptions config.potionStatutOptions selected=system.statut}}
</select>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionVirulence"}} :</label>
<input type="number" class="padd-right numeric-input item-field-label-short" name="system.virulence" value="{{system.virulence}}" data-dtype="Number" />
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionDuree"}} :</label>
<input type="text" class="padd-right item-field-label-long1" name="system.duree" value="{{system.duree}}" data-dtype="String" />
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionConservation"}} :</label>
<input type="text" class="padd-right item-field-label-long1" name="system.conservation" value="{{system.conservation}}" data-dtype="String" />
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.potionTemps"}} :</label>
<input type="text" class="padd-right item-field-label-long1" name="system.tempsPreparation" value="{{system.tempsPreparation}}" data-dtype="String" />
</li>
</ul>
</div>
<div class="tab effets" data-group="primary" data-tab="effets">
<div class="potion-effets-section">
<h4 class="potion-section-title"><i class="fas fa-flask"></i> {{localize "MNBL.potionEffetCuratif"}}</h4>
<div class="form-group">
{{editor system.effetCuratif target="system.effetCuratif" button=true owner=owner editable=editable}}
</div>
<h4 class="potion-section-title potion-section-letal"><i class="fas fa-skull-crossbones"></i> {{localize "MNBL.potionEffetLetal"}}</h4>
<div class="form-group">
{{editor system.effetLetal target="system.effetLetal" button=true owner=owner editable=editable}}
</div>
<h4 class="potion-section-title"><i class="fas fa-dizzy"></i> {{localize "MNBL.potionEffetSecondaire"}}</h4>
<div class="form-group">
{{editor system.effetSecondaire target="system.effetSecondaire" button=true owner=owner editable=editable}}
</div>
</div>
</div>
{{> systems/fvtt-mournblade/templates/partial-item-description.hbs this}}
</section>