fvtt-crucible-rpg/templates/chat-generic-result.html

49 lines
1.1 KiB
HTML
Raw Normal View History

2022-07-19 23:16:03 +02: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>
2022-07-25 21:33:00 +02:00
{{#if ability}}
<li>Ability : {{ability.label}} - {{ability.value}}d6</li>
2022-07-19 23:16:03 +02:00
{{/if}}
2022-07-25 21:33:00 +02:00
{{#if skill}}
2022-07-30 22:54:08 +02:00
<li>Skill : {{skill.name}} - {{skill.data.level}}d8
{{#if featSL}}
- with Feat SL +{{featSL}}
{{/if}}
</li>
2022-07-19 23:16:03 +02:00
{{/if}}
2022-07-30 22:54:08 +02:00
{{#if (eq advantage "advantage")}}
<li>Advantage !</li>
{{/if}}
{{#if (eq advantage "disadvantage")}}
<li>Disdvantage !</li>
{{/if}}
{{#if (ne featDieName "none")}}
<li>Feature Die : d10 ({{featDieName}})</li>
{{/if}}
2022-07-25 21:33:00 +02:00
<li><strong>Number of successes</strong> {{nbSuccess}} </li>
2022-07-19 23:16:03 +02:00
2022-07-25 21:33:00 +02:00
<!-- <button class="chat-card-button reroll-level-remaining" data-roll-id="{{rollId}}">Reroll</button> -->
2022-07-19 23:16:03 +02:00
</ul>
</div>
</div>