72 lines
1.8 KiB
HTML
72 lines
1.8 KiB
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>
|
|
{{#if power}}
|
|
<li>Power : {{power.name}}</li>
|
|
{{/if}}
|
|
{{#if isDamage}}
|
|
<li>Weapon Damage Dice : {{weaponDamageDice}}</li>
|
|
{{/if}}
|
|
{{#if isResistance}}
|
|
<li>Armor Resistance Dice : {{armor.system.resistanceDice}}</li>
|
|
{{/if}}
|
|
{{#if stat}}
|
|
<li>Statistic : {{stat.label}}</li>
|
|
{{/if}}
|
|
{{#if specName}}
|
|
<li>Specialisation : {{specName}}</li>
|
|
{{/if}}
|
|
|
|
{{#if weaponName}}
|
|
<li>Weapon : {{weaponName}}</li>
|
|
{{/if}}
|
|
{{#if weapon}}
|
|
{{#if vehicle}}
|
|
<li>Damage type : {{weapon.weapon.system.damagetype}}</li>
|
|
{{else}}
|
|
<li>Damage type : {{weapon.weapon.system.damagetype}} {{weapon.weapon.system.damagetypelevel}}</li>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#if power}}
|
|
<li>Power Damage type : {{power.system.powerdamagetype}} {{power.system.powerdamagetypelevel}}</li>
|
|
{{/if}}
|
|
|
|
{{#if isResistance}}
|
|
<li><strong>Defense Result : {{finalScore}}</strong>
|
|
{{else}}
|
|
{{#if isDamage}}
|
|
<li><strong>Damages : {{finalScore}}</strong>
|
|
{{else}}
|
|
<li><strong>Final Result : {{finalScore}}</strong>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#if isChatRoll}}
|
|
|
|
{{else}}
|
|
<button class="chat-card-button reroll-level-remaining" data-roll-id="{{rollId}}">Reroll</button>
|
|
{{/if}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|