2024-12-04 00:11:23 +01:00
|
|
|
{{log "roll-dialog" this}}
|
2024-12-17 09:25:02 +01:00
|
|
|
<div class="fvtt-cthulhu-eternal-roll-dialog">
|
2024-12-04 00:11:23 +01:00
|
|
|
<fieldSet>
|
2024-12-18 18:45:47 +01:00
|
|
|
{{#if (eq rollType "skill")}}
|
2024-12-17 09:25:02 +01:00
|
|
|
<legend>{{localize "CTHULHUETERNAL.Label.skill"}}</legend>
|
2024-12-18 18:45:47 +01:00
|
|
|
{{/if}}
|
|
|
|
{{#if (eq rollType "char")}}
|
|
|
|
<legend>{{localize "CTHULHUETERNAL.Label.characteristic"}}</legend>
|
|
|
|
{{/if}}
|
|
|
|
<div class="dialog-skill">{{rollItem.name}} : {{initialScore}}%</div>
|
2024-12-22 23:04:15 +01:00
|
|
|
{{#if isZeroWP}}
|
|
|
|
<div class="dialog-skill">Zero WP : Automatic failure (ie 0%)</div>
|
|
|
|
{{else}}
|
|
|
|
{{#if isLowWP}}
|
|
|
|
<div class="dialog-skill">Low WP : -20%</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
2024-12-04 00:11:23 +01:00
|
|
|
</fieldSet>
|
2024-12-18 18:45:47 +01:00
|
|
|
|
2024-12-17 09:25:02 +01:00
|
|
|
<fieldSet class="dialog-modifier">
|
|
|
|
<legend>{{localize "CTHULHUETERNAL.Label.modifier"}}</legend>
|
|
|
|
<select name="modifier" class="roll-skill-modifier">
|
|
|
|
{{selectOptions choiceModifier selected=modifier}}
|
2024-12-04 00:11:23 +01:00
|
|
|
</select>
|
|
|
|
</fieldSet>
|
|
|
|
<fieldSet>
|
2024-12-17 09:25:02 +01:00
|
|
|
<legend>{{localize "CTHULHUETERNAL.Label.rollView"}}</legend>
|
2024-12-04 00:11:23 +01:00
|
|
|
<select name="visibility">
|
|
|
|
{{selectOptions rollModes selected=visibility}}
|
|
|
|
</select>
|
|
|
|
</fieldSet>
|
|
|
|
</div>
|