fvtt-lethal-fantasy/templates/combat-action-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

25 lines
951 B
Handlebars

<div class="lethalfantasy-combat-action-dialog">
<fieldSet class="">
<legend>{{localize "LETHALFANTASY.Label.combatAction"}} for {{actorName}}</legend>
{{#if currentAction}}
<label>{{localize "LETHALFANTASY.Label.currentAction"}} : {{currentAction.name}}</label>
<label>{{localize "LETHALFANTASY.Label.rollProgressionCount"}} : {{currentAction.progressionCount}}</label>
{{else}}
<label>{{localize "LETHALFANTASY.Label.selectAction"}} : Choose a weapon to attack or a spell/miracle to cast</label>
<select name="selectedChoice" data-tooltip-direction="UP">
{{selectOptions weaponsChoices selected=selectedChoice valueAttr="id" labelAttr="name"}}
</select>
{{/if}}
</fieldSet>
<fieldSet>
<legend>{{localize "LETHALFANTASY.Roll.visibility"}}</legend>
<select name="visibility">
{{selectOptions rollModes selected=visibility localize=true}}
</select>
</fieldSet>
</div>