bol/templates/chat/rolls/default-roll-card.hbs

90 lines
2.8 KiB
Handlebars
Raw Normal View History

2022-03-10 21:05:53 +01:00
<div>
{{#if isSuccess}}
2022-05-11 22:05:35 +02:00
{{#if isLegendary}}
<h2 class="success critical"><i class="fas fa-check-double"></i>&nbsp;{{localize "BOL.ui.criticallegend"}}...
2022-03-10 21:05:53 +01:00
{{else}}
2022-05-11 22:05:35 +02:00
{{#if isCritical}}
<h2 class="success critical"><i class="fas fa-check-double"></i>&nbsp;{{localize "BOL.ui.critical"}}...
{{else}}
<h2 class="success"><i class="fas fa-check"></i>&nbsp;{{localize "BOL.ui.success"}}...
{{/if}}
2022-03-10 21:05:53 +01:00
{{/if}}
{{/if}}
{{#if isFailure}}
{{#if isFumble}}
<h2 class="failure fumble"><i class="fas fa-skull-crossbones"></i>&nbsp;{{localize "BOL.ui.fumble"}}...
{{else}}
<h2 class="failure"><i class="fas fa-times"></i>&nbsp;{{localize "BOL.ui.failure"}}...
{{/if}}
{{/if}}
2022-05-11 22:05:35 +02:00
<img class="chat-icon" src="{{img}}" alt="{{actor.name}}"/>
2022-03-10 21:05:53 +01:00
</h2>
</div>
2022-01-16 21:29:12 +01:00
2022-01-09 13:23:20 +01:00
<h3><strong>{{description}}</strong></h3>
2022-01-16 21:29:12 +01:00
2022-03-27 22:56:43 +02:00
<div class="actions-section">
2022-09-01 22:23:58 +02:00
{{#if isFumble}}
{{localize "BOL.chat.fumblemessage"}}
{{/if}}
2022-03-27 22:56:43 +02:00
{{#if fightOption}}
<div>
2022-05-11 19:29:32 +02:00
{{localize "BOL.chat.fightoption"}} : {{fightOption.name}}
2022-03-27 22:56:43 +02:00
</div>
2022-01-23 09:25:09 +01:00
{{/if}}
2022-01-17 23:50:57 +01:00
2022-11-30 20:58:27 +01:00
{{#if initiativeRank}}
<div>
{{localize "BOL.chat.initiative"}}: {{initiativeRank}}
</div>
{{/if}}
2022-11-29 15:23:05 +01:00
{{#if (eq mode "bougette")}}
<div>
{{localize "BOL.chat.rollbougette"}} :
{{#if isSuccess}}
{{localize "BOL.chat.bougettesuccess"}}
{{else}}
{{localize "BOL.chat.bougettefailure"}}
{{/if}}
</div>
{{/if}}
2022-03-27 22:56:43 +02:00
<div id="{{optionsId}}">
2022-09-01 21:26:10 +02:00
2022-11-29 15:23:05 +01:00
2022-09-01 21:26:10 +02:00
{{#if isRealCritical}}
<div class="bol-margin-tb-2">
<a class="content-link" draggable="true" data-uuid="Compendium.bol.aides-de-jeu.Yl1RKQb0BjVUtilk" data-id="Yl1RKQb0BjVUtilk" data-type="JournalEntry" data-pack="bol.aides-de-jeu" data-tooltip="un journal"><i class="fas fa-book-open"></i>Succès Héroïque</a>
</div>
{{/if}}
2022-03-27 22:56:43 +02:00
{{#if (and isSuccess weapon)}}
{{> "systems/bol/templates/chat/rolls/attack-damage-card.hbs"}}
{{/if}}
{{#if (and isSuccess spell)}}
{{> "systems/bol/templates/chat/rolls/spell-roll-card.hbs"}}
{{/if}}
{{#if alchemy}}
{{> "systems/bol/templates/chat/rolls/alchemy-roll-card.hbs"}}
{{/if}}
2022-05-11 22:05:35 +02:00
2022-03-27 22:56:43 +02:00
{{#if reroll}}
2022-09-01 21:26:10 +02:00
<button class="chat-button button hero-reroll bol-margin-tb-2" data-roll-id=="{{rollId}}" data-actor-id="{{actor.id}}">{{localize "BOL.chat.reroll"}}</button>
2022-03-27 22:56:43 +02:00
{{/if}}
{{#if (and isSuccess (not isCritical))}}
2022-09-01 21:26:10 +02:00
<button class="chat-button button transform-heroic-roll bol-margin-tb-2" data-roll-id=="{{rollId}}" data-actor-id="{{actor.id}}">{{localize "BOL.chat.toheroic"}}</button>
2022-03-27 22:56:43 +02:00
{{/if}}
{{#if isRealCritical}}
2022-09-01 21:26:10 +02:00
<button class="chat-button button transform-legendary-roll bol-margin-tb-2" data-roll-id=="{{rollId}}" data-actor-id="{{actor.id}}">{{localize "BOL.chat.tolegend"}}</button>
2022-03-27 22:56:43 +02:00
{{/if}}
2022-09-01 21:26:10 +02:00
2022-03-27 22:56:43 +02:00
<br>
</div>
</div>
2022-09-01 21:26:10 +02:00