fvtt-hawkmoon-cyd/templates/partial-automation.html

33 lines
1.4 KiB
HTML

<li class="flexrow item">
<label class="generic-label item-field-label-long">Automatisation ? </label>
<input type="checkbox" name="system.isautomated" {{checked system.isautomated}} />
</li>
{{#if system.isautomated}}
<li class="flexrow item">
<ul>
{{#each system.automations as |automation key|}}
<li class="automation-item item flexrow" data-automation-index="{{key}}">
<label class="generic-label item-field-label-medium">Evènement</label>
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.automations.{{key}}.eventType" value="{{automation.eventType}}" data-dtype="string">
{{#select automation.eventType}}
<option value="drop">Drop sur l'acteur</option>
<option value="prepare-actor">Préparation de l'acteur</option>
<option value="prepare-roll">Préparation d'un jet</option>
<option value="process-roll">Lancement d'un jet</option>
{{/select}}
</select>
</li>
<li class="automation-item item flexrow" data-automation-index="{{key}}">
<textarea row="4" type="text" class="padd-right color-class-common" name="system.automations.{{key}}.script" data-dtype="String">{{predilection.script}}</textarea>
</li>
<hr>
{{/each}}
</ul>
<li class="flexrow item">
<button id="add-automation" class="chat-card-button">Ajouter une automatisation</button>
</li>
{{/if}}