Implements actions management
All checks were successful
Release Creation / build (release) Successful in 53s
All checks were successful
Release Creation / build (release) Successful in 53s
This commit is contained in:
25
templates/combat-action-dialog.hbs
Normal file
25
templates/combat-action-dialog.hbs
Normal file
@ -0,0 +1,25 @@
|
||||
<div class="lethalfantasy-combat-action-dialog">
|
||||
|
||||
<fieldSet class="">
|
||||
<legend>{{localize "LETHALFANTASY.Label.combatAction"}}</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}}
|
||||
</select>
|
||||
</fieldSet>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user