fvtt-lethal-fantasy/templates/range-defense-dialog.hbs
LeRatierBretonnien b4d6616cb4
All checks were successful
Release Creation / build (release) Successful in 58s
Foundry v13 migration
2025-05-14 10:02:08 +02:00

52 lines
1.5 KiB
Handlebars

<div class="lethalfantasy-range-defense-dialog">
<fieldSet class="">
<legend>{{localize "LETHALFANTASY.Label.rangeDefenseDialog"}}</legend>
<div class="field-section">
<span class="field-name">Movement :</span>
<select name="movement" data-tooltip-direction="UP">
{{selectOptions movementChoices selected=movement}}
</select>
</div>
<div class="field-section">
<span class="field-name">Direction :</span>
<select name="moveDirection" data-tooltip-direction="UP">
{{selectOptions moveDirectionChoices selected=moveDirection}}
</select>
</div>
<div class="field-section">
<span class="field-name">Size :</span>
<select name="size" data-tooltip-direction="UP">
{{selectOptions sizeChoices selected=size}}
</select>
</div>
<div class="field-section">
<span class="field-name">Range :</span>
<select name="range" data-tooltip-direction="UP">
{{selectOptions rangeChoices selected=range}}
</select>
</div>
<div class="field-section">
<span class="field-name">Aim :</span>
<select name="attackerAim" data-tooltip-direction="UP">
{{selectOptions attackerAimChoices selected=attackerAim}}
</select>
</div>
</fieldSet>
<fieldSet>
<legend>{{localize "LETHALFANTASY.Roll.visibility"}}</legend>
<select name="visibility">
{{selectOptions rollModes selected=visibility localize=true}}
</select>
</fieldSet>
</div>