52 lines
886 B
HTML
52 lines
886 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 class="flexcol">
|
|
</div>
|
|
|
|
<div>
|
|
<ul>
|
|
<li>Attribut : {{attr.label}}</li>
|
|
|
|
{{#if competence}}
|
|
<li>Compétence : {{competence.name}}</li>
|
|
{{/if}}
|
|
|
|
{{#if weaponName}}
|
|
<li>Weapon : {{weaponName}}</li>
|
|
{{/if}}
|
|
|
|
<li>Formule : {{diceFormula}}</li>
|
|
<li>Total : {{finalResult}}</li>
|
|
|
|
{{#if difficulte}}
|
|
{{#if isSuccess}}
|
|
<li>Succés!!!</li>
|
|
{{else}}
|
|
<li>Echec ...</li>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#if isHeroique}}
|
|
<li>Succés Héroïque!!!</li>
|
|
{{/if}}
|
|
{{#if isDramatique}}
|
|
<li>Succés Dramatique!!!</li>
|
|
{{/if}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div> |