21 lines
798 B
Handlebars
21 lines
798 B
Handlebars
<div class="control-icon bol-action ">
|
|
<img class="bol-hud-togglebutton" src="icons/svg/sword.svg" width="36" height="36" title="Action" />
|
|
<div class="bol-hud-list tokenhudext right">
|
|
{{#each actionsList as |action key|}}
|
|
{{#if (eq system.subtype "weapon")}}
|
|
<div class="control-icon tokenhudicon bol-hud-menu" data-action-index="{{key}}" title="{{action.name}}">
|
|
<label>{{action.name}}</label>
|
|
</div>
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
<div class="bol-hud-list tokenhudext right2">
|
|
{{#each actionsList as |action key|}}
|
|
{{#if (eq system.subtype "fightoption")}}
|
|
<div class="control-icon tokenhudicon bol-hud-menu" data-action-index="{{key}}" title="{{action.name}}">
|
|
<label>{{action.name}}</label>
|
|
</div>
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
</div> |