This repository has been archived on 2024-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
fvtt-warhero/templates/chat-generic-result.html

32 lines
586 B
HTML
Raw Normal View History

2023-01-04 21:24:56 +01:00
<div class="chat-message-header">
{{#if actorImg}}
<img class="actor-icon" src="{{actorImg}}" alt="{{alias}}" />
{{/if}}
<h4 class=chat-actor-name>{{alias}}</h4>
</div>
<hr>
{{#if img}}
<div >
<img class="chat-icon" src="{{img}}" alt="{{name}}" />
</div>
{{/if}}
<div class="flexcol">
</div>
<div>
<ul>
2023-01-29 16:56:09 +01:00
{{#if stat}}
<li>{{localize stat.label}} : {{stat.value}}</li>
2023-01-04 21:24:56 +01:00
{{/if}}
2023-01-29 16:56:09 +01:00
<li>Bonus/Malus : {{bonusMalus}}</li>
<li><strong>Result : {{roll.total}} </strong></li>
2023-01-04 21:24:56 +01:00
</ul>
</div>
</div>