Potions et élémentaires
This commit is contained in:
@@ -362,6 +362,11 @@
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
<div class="header-actions">
|
||||
<button class="chat-card-button" data-action="invoquerElementaire">
|
||||
<i class="fas fa-wind"></i> {{localize "MNBL.invoquerElementaire"}}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section-grid">
|
||||
@@ -388,8 +393,49 @@
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
<div class="header-actions">
|
||||
{{#if (gt runes.length 1)}}
|
||||
<button class="chat-card-button" data-action="rollSortilege">
|
||||
<i class="fas fa-layer-group"></i> Lancer un Sortilège
|
||||
</button>
|
||||
{{/if}}
|
||||
{{#if (gt runes.length 0)}}
|
||||
<button class="chat-card-button" data-action="preparePotion">
|
||||
<i class="fas fa-flask"></i> Préparer une Potion
|
||||
</button>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{!-- Invocations actives --}}
|
||||
{{#if (gt system.invocationsElementaires.length 0)}}
|
||||
<div class="section-grid">
|
||||
<h4 class="section-title">{{localize "MNBL.invocationsActives"}}</h4>
|
||||
<ul class="item-list compact-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header">{{localize "MNBL.invocationsActives"}}</span>
|
||||
<span class="item-field-label-short">{{localize "MNBL.invocationElement"}}</span>
|
||||
<span class="item-field-label-short">{{localize "MNBL.invocationTier"}}</span>
|
||||
<span class="item-field-label-short">{{localize "MNBL.invocationAmeBloque"}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed"></div>
|
||||
</li>
|
||||
{{#each system.invocationsElementaires as |invoc idx|}}
|
||||
<li class="item flexrow">
|
||||
<span class="item-name-label competence-name">{{invoc.actorName}}</span>
|
||||
<span class="item-field-label-short">{{invoc.element}}</span>
|
||||
<span class="item-field-label-short">{{invoc.tier}}</span>
|
||||
<span class="item-field-label-short">{{invoc.soulCost}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a data-action="bannirElementaire" data-invoc-index="{{@index}}" title="{{localize 'MNBL.bannirElementaire'}}"><i class="fas fa-ban"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
|
||||
<div class="section-grid">
|
||||
<h4 class="section-title">{{localize "MNBL.tendancies"}}</h4>
|
||||
|
||||
Reference in New Issue
Block a user