34 lines
1.2 KiB
Handlebars
34 lines
1.2 KiB
Handlebars
<div class="chat-message-header">
|
|
{{#if actorImg}}
|
|
<img class="actor-icon" src="{{actorImg}}" alt="{{alias}}" />
|
|
{{/if}}
|
|
<h4 class="chat-actor-name">{{alias}}</h4>
|
|
</div>
|
|
|
|
<div class="ecryme-chat-body">
|
|
|
|
{{#if img}}
|
|
<div class="ecryme-chat-icon-row">
|
|
<img class="chat-icon" src="{{img}}" alt="{{alias}}" />
|
|
</div>
|
|
{{/if}}
|
|
|
|
<ul>
|
|
<li>{{localize "ECRY.ui.cephaly"}} : <strong>{{localize skill.name}}</strong></li>
|
|
|
|
{{#if annency}}
|
|
<li>{{localize "ECRY.ui.annencybonus"}} {{annency.name}}: <strong>{{annencyBonus}}</strong></li>
|
|
{{/if}}
|
|
|
|
{{#if (gt marginExecution 0)}}
|
|
<li>{{localize "ECRY.ui.execution"}} {{executionTotal}} vs {{difficulty}} : <strong>{{marginExecution}}</strong></li>
|
|
<li class="ecryme-result-line"><label class="chat-result-text chat-result-success">{{localize cephalySuccess}}</label></li>
|
|
{{/if}}
|
|
|
|
{{#if (gt marginPreservation 0)}}
|
|
<li>{{localize "ECRY.ui.preservation"}} {{preservationTotal}} vs {{difficulty}} : <strong>{{marginPreservation}}</strong></li>
|
|
<li class="ecryme-result-line"><label class="chat-result-text chat-result-failure">{{localize cephalyFailure}}</label></li>
|
|
{{/if}}
|
|
</ul>
|
|
|
|
</div> |