fvtt-dark-stars/templates/chat/chat-generic-result.hbs

51 lines
1.1 KiB
Handlebars
Raw Normal View History

2022-11-27 08:58:19 +01:00
<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>
{{#if skill}}
2022-12-30 22:27:38 +01:00
<li>Skill : {{skill.name}} ({{skill.total}}%)
2022-11-27 08:58:19 +01:00
</li>
{{/if}}
2022-12-30 22:27:38 +01:00
<li>Bonus/Malus: {{bonusMalus}}%
2022-11-27 08:58:19 +01:00
</li>
2022-12-30 22:27:38 +01:00
<li> Result: {{diceResult}}
2022-11-27 08:58:19 +01:00
</li>
2023-01-02 14:54:59 +01:00
<li> Degrees: {{degrees}}
</li>
2022-11-27 08:58:19 +01:00
2023-01-02 14:54:59 +01:00
{{#if isCriticalSuccess}}
<li><strong>Critical Success !</strong></li>
2022-12-30 22:27:38 +01:00
{{else}}
2023-01-02 14:54:59 +01:00
{{#if isSuccess}}
<li><strong>Success !</strong></li>
{{else}}
{{#if isCriticalFailure}}
<li><strong>Critical Failure !</strong></li>
{{else}}
<li><strong>Failure ...</strong></li>
{{/if}}
{{/if}}
2022-11-27 08:58:19 +01:00
{{/if}}
</ul>
</div>
</div>