fvtt-rolemaster-frp/templates/chat/chat_dice_roll.html

28 lines
734 B
HTML
Raw Normal View History

2024-03-28 11:40:20 +01:00
<div class="dice-roll">
<div class="dice-result">
Original Roll:
<h4 class="dice-total" >{{ baseroll.result }}</h4>
</div>
{{#if highopen }}
<div class=dice-result>
Rolled over 95 - High Open-Ended!
{{#each opeendedresults as |rollresult|}}
<h4 class="dice-total" >{{ rollresult }}</h4>
{{/each}}
</div>
{{/if}}
{{#if lowopen }}
<div class=dice-result>
Rolled under 6 - Low Open-Ended!
{{#each opeendedresults as |rollresult|}}
<h4 class="dice-total" >{{ rollresult }}</h4>
{{/each}}
</div>
{{/if}}
<div class="dice-result">
Total:
<h4 class="dice-total" >{{ total }}</h4>
</div>
</div>