With compendiums + talent management
This commit is contained in:
@@ -7,33 +7,55 @@
|
||||
<li class="flexrow item">
|
||||
<ul>
|
||||
{{#each system.automations as |automation key|}}
|
||||
<li class="automation-item item flexrow">
|
||||
<hr>
|
||||
</li>
|
||||
<li class="automation-item item flexrow" data-automation-field="eventtype" 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 automation-edit-field" type="text"
|
||||
value="{{automation.eventtype}}" data-dtype="String">
|
||||
{{#select automation.eventtype}}
|
||||
<option value="on-drop">Drop sur l'acteur</option>
|
||||
<option value="prepare-actor">Préparation de l'acteur</option>
|
||||
<option value="associated-competence">Compétence associée</option>
|
||||
<option value="roll-bonus">Bonus au jet</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">
|
||||
<hr>
|
||||
</li>
|
||||
<li class="automation-item item flexrow" data-automation-field="eventtype" data-automation-index="{{key}}">
|
||||
<label class="generic-label item-field-label-medium">Evènement</label>
|
||||
<select class="item-field-label-long automation-edit-field" type="text" data-automation-index="{{key}}" data-automation-field="eventtype"
|
||||
value="{{automation.eventtype}}" data-dtype="String">
|
||||
{{#select automation.eventtype}}
|
||||
<option value="on-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>
|
||||
{{/select}}
|
||||
</select>
|
||||
|
||||
<li class="automation-item item flexrow" >
|
||||
<label class="generic-label item-field-label-long2">Script : </label>
|
||||
</li>
|
||||
<label class="generic-label item-field-label-medium"> </label>
|
||||
|
||||
<a class="item-control item-field-label-medium delete-automation" title="Supprimer" data-automation-index="{{key}}"><i
|
||||
class="fas fa-trash"></i></a>
|
||||
|
||||
</li>
|
||||
|
||||
{{#if (eq automation.eventtype "on-drop")}}
|
||||
<li class="automation-item item flexrow">
|
||||
<label class="generic-label item-field-label-long">Compétence/Attribut</label>
|
||||
<input type="text" class="item-field-label-medium automation-edit-field" data-automation-index="{{key}}" data-automation-field="competence" value="{{automation.competence}}" data-dtype="String" />
|
||||
</li>
|
||||
<li class="automation-item item flexrow">
|
||||
<label class="generic-label item-field-label-long">Valeur minimum</label>
|
||||
<input type="text" class="item-field-label-medium automation-edit-field" data-automation-index="{{key}}" data-automation-field="minLevel" value="{{automation.minLevel}}" data-dtype="Number" />
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
{{#if (eq automation.eventtype "prepare-roll")}}
|
||||
<li class="automation-item item flexrow">
|
||||
<label class="generic-label item-field-label-long">Compétence/Attribut</label>
|
||||
<input type="text" class="item-field-label-medium automation-edit-field" data-automation-index="{{key}}" data-automation-field="competence" value="{{automation.competence}}" data-dtype="String" />
|
||||
</li>
|
||||
<li class="automation-item item flexrow">
|
||||
<label class="generic-label item-field-label-long">Bonus</label>
|
||||
<input type="text" class="item-field-label-medium automation-edit-field" data-automation-index="{{key}}" data-automation-field="bonus" value="{{automation.bonus}}" data-dtype="Number" />
|
||||
</li>
|
||||
<li class="automation-item item flexrow">
|
||||
<label class="generic-label item-field-label-long">Coût en BA</label>
|
||||
<input type="text" class="item-field-label-medium automation-edit-field" data-automation-index="{{key}}" data-automation-field="baCost" value="{{automation.baCost}}" data-dtype="Number" />
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
<li class="automation-item item flexrow" data-automation-field="script" data-automation-index="{{key}}">
|
||||
<textarea rows="4" type="text" class="padd-right color-class-common automation-edit-field" data-dtype="String"
|
||||
>{{automation.script}}</textarea>
|
||||
</li>
|
||||
{{/each}}
|
||||
|
||||
</ul>
|
||||
|
||||
<li class="flexrow item">
|
||||
|
Reference in New Issue
Block a user