29 lines
601 B
HTML
29 lines
601 B
HTML
<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>
|
|
<ul>
|
|
<li>{{localize stat.label}} : {{stat.value}}</li>
|
|
<li><strong>Result : {{roll.total}} </strong></li>
|
|
{{#if isSuccess}}
|
|
<li><strong>Parry success ! </strong></li>
|
|
{{else}}
|
|
<li><strong>Parry failed ! </strong></li>
|
|
{{/if}}
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|