40 lines
990 B
HTML
40 lines
990 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 actionImg}}
|
|
<div>
|
|
<img class="chat-icon" src="{{actionImg}}" alt="{{name}}" />
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="flexcol">ntfabr
|
|
</div>
|
|
|
|
<div>
|
|
<ul>
|
|
<li>{{localize "MNBL.weapon"}} : {{arme.name}} {{#if degatsFormula}} (+{{degatsFormula}}) {{/if}}</li>
|
|
<li>Information : {{degatsMessage}}</li>
|
|
<li>{{localize "MNBL.damage"}} : {{finalResult}} {{#if arme.system.nonletaux}}(Non létaux){{else}}(Létaux){{/if}}</li>
|
|
{{#if nextBonus}}
|
|
<li>{{localize "MNBL.nextattackbonus"}} : {{nextBonus}}</li>
|
|
{{/if}}
|
|
{{#if nextMalus}}
|
|
<li>{{localize "MNBL.nextactionmalus"}} : {{nextMalus}}</li>
|
|
{{/if}}
|
|
|
|
<button class="chat-card-button chat-card-button-degats arme-apply-degats">
|
|
{{localize "MNBL.applydamage"}}
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div> |