2022-05-27 09:45:09 +02:00
|
|
|
<form class="skill-roll-dialog">
|
|
|
|
<header class="roll-dialog-header">
|
|
|
|
{{#if img}}
|
|
|
|
<img class="actor-icon" src="{{img}}" data-edit="img" title="{{name}}" />
|
|
|
|
{{/if}}
|
2022-06-03 08:15:39 +02:00
|
|
|
<h1 class="dialog-roll-title roll-dialog-header">{{title}}</h1>
|
2022-05-27 09:45:09 +02:00
|
|
|
</header>
|
|
|
|
|
2022-06-03 08:15:39 +02:00
|
|
|
<div class="flexcol">
|
2022-05-27 09:45:09 +02:00
|
|
|
|
2022-06-03 08:15:39 +02:00
|
|
|
<div class="flexrow">
|
|
|
|
<span class="roll-dialog-label">{{attr.label}}</span>
|
|
|
|
<span class="small-label">{{attr.value}}</span>
|
|
|
|
</div>
|
2022-05-27 09:45:09 +02:00
|
|
|
|
2022-06-03 08:15:39 +02:00
|
|
|
{{#if competence}}
|
|
|
|
<div class="flexrow">
|
|
|
|
<span class="roll-dialog-label">{{competence.name}}</span>
|
|
|
|
<span class="small-label">{{competence.data.niveau}}</span>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2022-05-27 09:45:09 +02:00
|
|
|
|
2022-06-03 08:15:39 +02:00
|
|
|
<div class="flexrow">
|
|
|
|
<span class="roll-dialog-label">Modificateur : </span>
|
|
|
|
<select class="roll-dialog-label" id="modificateur" type="text" name="modificateur" value="{{modificateur}}"
|
|
|
|
data-dtype="Number">
|
|
|
|
{{#select modificateur}}
|
|
|
|
{{{modificateursOptions}}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
2022-05-27 09:45:09 +02:00
|
|
|
</div>
|
|
|
|
|
2022-06-03 08:15:39 +02:00
|
|
|
<div class="flexrow">
|
|
|
|
<span class="roll-dialog-label">Difficulté : </span>
|
|
|
|
<select class="roll-dialog-label" id="difficulte" type="text" name="difficulte" value="{{difficulte}}"
|
|
|
|
data-dtype="Number">
|
|
|
|
{{#select difficulte}}
|
|
|
|
<option value="0">Aucune/Inconnue</option>
|
|
|
|
<option value="5">Facile (5)</option>
|
|
|
|
<option value="10">Moyenne (10)</option>
|
|
|
|
<option value="15">Ardue (15)</option>
|
|
|
|
<option value="20">Hasardeuse (20)</option>
|
|
|
|
<option value="25">Insensée (25)</option>
|
|
|
|
<option value="30">Pure Folie (30)</option>
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
2022-05-27 09:45:09 +02:00
|
|
|
</div>
|
|
|
|
|
2022-06-05 15:54:17 +02:00
|
|
|
{{#if canEclatDoubleD20}}
|
|
|
|
<div class="flexrow">
|
|
|
|
<span class="roll-dialog-label">Doubler le d20 (1 Point d'Eclat)</span>
|
|
|
|
<input class="" id="doubleD20" type="checkbox" name="doubleD20" value="{{doubleD20}}" {{checked doubleD20}}/>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-06-03 08:15:39 +02:00
|
|
|
|
2022-05-27 09:45:09 +02:00
|
|
|
</div>
|
2022-06-03 08:15:39 +02:00
|
|
|
|
|
|
|
</form>
|