Add mana+AP reset buttons and conditions
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<div class="new-round-message prismrpg-chat-card">
|
||||
<div class="chat-header">
|
||||
<div class="chat-title">
|
||||
<div class="roll-name">{{localize "PRISMRPG.Combat.newRound"}} {{round}}</div>
|
||||
<div class="new-round-label">{{localize "PRISMRPG.Combat.restoreAP"}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="new-round-actors">
|
||||
<button class="new-round-restore-btn new-round-all-btn" type="button" data-actor-id="all" data-tooltip="{{localize "PRISMRPG.Combat.allPC"}}">
|
||||
<i class="fas fa-users"></i>
|
||||
<span>{{localize "PRISMRPG.Combat.allPC"}}</span>
|
||||
</button>
|
||||
{{#each actors}}
|
||||
<button class="new-round-restore-btn" type="button" data-actor-id="{{id}}" data-tooltip="{{name}}">
|
||||
<img src="{{img}}" width="24" height="24" />
|
||||
<span>{{name}}</span>
|
||||
</button>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user