Add luck option after roll, attributes above 6, fix miracle icon and grit bonus
All checks were successful
Release Creation / build (release) Successful in 1m36s
All checks were successful
Release Creation / build (release) Successful in 1m36s
This commit is contained in:
30
templates/luck-roll-dialog.hbs
Normal file
30
templates/luck-roll-dialog.hbs
Normal file
@@ -0,0 +1,30 @@
|
||||
<div class="oh-roll-dialog oh-luck-dialog">
|
||||
|
||||
<div class="luck-dialog-info">
|
||||
<i class="fa-solid fa-clover luck-icon"></i>
|
||||
<span>{{localize "OATHHAMMER.Dialog.LuckPostRollHint"}}</span>
|
||||
</div>
|
||||
|
||||
<fieldset class="attack-options-block">
|
||||
<legend>{{localize "OATHHAMMER.Dialog.LuckSpend"}}</legend>
|
||||
|
||||
<div class="pool-info-line">
|
||||
{{localize "OATHHAMMER.Label.LuckAvailable"}}: <strong>{{availableLuck}}</strong>
|
||||
</div>
|
||||
|
||||
<div class="roll-option-row">
|
||||
<label>{{localize "OATHHAMMER.Dialog.LuckPoints"}}</label>
|
||||
<select name="luckSpend">
|
||||
{{#each luckOptions}}<option value="{{value}}"{{#if selected}} selected{{/if}}>{{label}}</option>{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="roll-option-row roll-option-check">
|
||||
<label for="postLuckIsHuman">{{localize "OATHHAMMER.Dialog.LuckHuman"}} <i class="fa-solid fa-clover luck-icon"></i></label>
|
||||
<input type="checkbox" id="postLuckIsHuman" name="luckIsHuman" value="true" {{#if isHuman}}checked{{/if}} />
|
||||
<span class="roll-option-hint">{{localize "OATHHAMMER.Dialog.LuckHint"}}</span>
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user