fvtt-hawkmoon-cyd/templates/item-talent-sheet.html

68 lines
2.8 KiB
HTML
Raw Normal View History

2022-10-24 17:37:49 +02:00
<form class="{{cssClass}}" autocomplete="off">
2022-11-14 15:27:19 +01:00
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-header.html}}
2022-10-24 17:37:49 +02:00
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-nav.html}}
{{!-- Sheet Body --}}
<section class="sheet-body">
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-description.html}}
<div class="tab details" data-group="primary" data-tab="details">
<ul class="item-list alternate-list">
2022-10-24 18:36:18 +02:00
2022-10-26 12:12:30 +02:00
<li class="flexrow item">
<label class="generic-label item-field-label-medium">Type </label>
2022-10-28 21:44:49 +02:00
<select class="status-small-label color-class-common item-field-label-long" type="text"
2022-10-26 12:12:30 +02:00
name="system.talenttype" value="{{system.talenttype}}" data-dtype="String">
{{#select system.talenttype}}
<option value="personnage">Personnage</option>
<option value="cellule">Cellule</option>
2022-11-13 23:01:41 +01:00
<option value="traitespece">Trait d'espèce</option>
2022-10-26 12:12:30 +02:00
{{/select}}
</select>
</li>
2022-10-24 17:37:49 +02:00
<li class="flexrow item">
2022-10-25 17:54:13 +02:00
<label class="generic-label item-field-label-medium">Utilisation </label>
2022-10-28 21:44:49 +02:00
<select class="status-small-label color-class-common item-field-label-long" type="text"
2022-10-24 18:36:18 +02:00
name="system.utilisation" value="{{system.utilisation}}" data-dtype="String">
2022-10-24 17:37:49 +02:00
{{#select system.utilisation}}
<option value="permanent">Permanent</option>
<option value="sceance">Une fois par scéance</option>
<option value="scenario">Une fois par scénario</option>
<option value="jour">Une fois par jour</option>
<option value="unique">Unique</option>
{{/select}}
</select>
</li>
2022-10-24 18:36:18 +02:00
2022-10-24 17:37:49 +02:00
<li class="flexrow item">
2022-10-26 12:12:30 +02:00
<label class="generic-label item-field-label-long">Pré-requis </label>
</li>
<li class="flexrow item">
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
name="system.prerequis" data-dtype="String">{{system.prerequis}}</textarea>
2022-10-25 17:54:13 +02:00
</li>
<li class="flexrow item">
2022-10-26 12:12:30 +02:00
<label class="generic-label item-field-label-long">Résumé (si bonus) </label>
</li>
<li class="flexrow item">
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
2022-10-26 12:57:04 +02:00
name="system.resumebonus" data-dtype="String">{{system.resumebonus}}</textarea>
2022-10-24 17:37:49 +02:00
</li>
2022-10-24 18:36:18 +02:00
<li class="flexrow item">
2022-10-26 10:27:24 +02:00
<label class="generic-label item-field-label-medium">Déja utilisé ? </label>
<input class="predilection-maitrise" type="checkbox" name="system.used" {{checked system.used}} />
2022-10-24 18:36:18 +02:00
</li>
2022-10-26 10:27:24 +02:00
{{> systems/fvtt-hawkmoon-cyd/templates/partial-automation.html}}
2022-10-24 17:37:49 +02:00
</ul>
</div>
</section>
</form>