43 lines
902 B
HTML
43 lines
902 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>
|
|
{{#if stat}}
|
|
<li>{{localize stat.label}} : {{stat.value}}</li>
|
|
{{/if}}
|
|
{{#if weapon}}
|
|
<li>{{localize "WH.ui.weapon"}} : {{weapon.name}}</li>
|
|
{{/if}}
|
|
{{#if hasBM}}
|
|
<li>Bonus/Malus : {{bonusMalus}}</li>
|
|
{{/if}}
|
|
*
|
|
{{#if usemWeaponMalus}}
|
|
<li>Multiple weapons malus : {{mWeaponMalus}}</li>
|
|
{{/if}}
|
|
|
|
{{#if power}}
|
|
<li>{{localize "WH.ui.power"}} : {{power.name}}</li>
|
|
<li>{{{powerText}}}</li>
|
|
{{else}}
|
|
<li><strong>Result : {{roll.total}} </strong></li>
|
|
{{/if}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|