2023-06-01 22:13:04 +02:00
|
|
|
{{#each availableDices as |dice idx|}}
|
|
|
|
{{#if (eq dice.location ../filter)}}
|
2023-06-28 11:12:51 +02:00
|
|
|
<div class="confront-dice-container dice-spec" data-drag-type="dice" data-dice-idx={{idx}} data-dice-value="{{dice.result}}">
|
|
|
|
<span draggable="true" data-drag-type="dice" data-dice-idx={{idx}} data-dice-value="{{dice.result}}">
|
|
|
|
<img class="confront-dice" src="icons/svg/d6-grey.svg" data-drag-type="dice" data-dice-idx={{idx}} data-dice-value="{{dice.result}}">
|
|
|
|
<label class="confront-dice-centered" data-drag-type="dice" data-dice-idx={{idx}}
|
2023-06-01 22:13:04 +02:00
|
|
|
data-dice-value="{{dice.result}}">{{dice.result}}</label>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|