Files
fvtt-wasteland/templates/item-protection-sheet.hbs

36 lines
1.0 KiB
Handlebars

<section class="{{cssClass}}" autocomplete="off">
{{> systems/fvtt-wasteland/templates/partial-item-header.hbs this}}
{{> systems/fvtt-wasteland/templates/partial-item-nav.hbs this}}
{{> systems/fvtt-wasteland/templates/partial-item-description.hbs this}}
<div class="sheet-body" data-group="primary" data-tab="details">
<div class="item-details">
<div class="form-group">
<label>Protection</label>
<input type="number" name="system.protection" value="{{system.protection}}" />
</div>
<div class="form-group">
<label>
<input type="checkbox" name="system.equipped" {{checked system.equipped}} />
Équipé
</label>
</div>
<div class="form-group">
<label>Rareté</label>
<input type="number" name="system.rarete" value="{{system.rarete}}" />
</div>
<div class="form-group">
<label>Prix (PZ)</label>
<input type="number" name="system.prix" value="{{system.prix}}" />
</div>
</div>
</div>
</section>