Add rest dice tracking for the Sync actors
This commit is contained in:
parent
4544516c5c
commit
1002b1387c
8 changed files with 186 additions and 24 deletions
|
|
@ -17,4 +17,38 @@
|
|||
value="{{system.value}}"
|
||||
>
|
||||
</label>
|
||||
<div class="rest-container">
|
||||
Rest Dice:
|
||||
<div class="button-row">
|
||||
<button
|
||||
type="button"
|
||||
class="neutral equal-padding"
|
||||
data-decrement="system.rest_dice"
|
||||
{{disabled (eq system.rest_dice 0)}}
|
||||
>
|
||||
<div aria-hidden="true" class="icon icon--14">
|
||||
{{{ icons.minus }}}
|
||||
</div>
|
||||
</button>
|
||||
<span class="value">
|
||||
{{system.rest_dice}}
|
||||
</span>
|
||||
<button
|
||||
type="button"
|
||||
class="neutral equal-padding"
|
||||
data-increment="system.rest_dice"
|
||||
>
|
||||
<div aria-hidden="true" class="icon icon--14">
|
||||
{{{ icons.create }}}
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
<button
|
||||
type="button"
|
||||
class="confirm use-rest-die"
|
||||
{{disabled (eq system.rest_dice 0)}}
|
||||
>
|
||||
Use a Rest Dice
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue