foundry-sw5e/templates/chat/consumable-card.html
2020-06-24 14:27:55 -04:00

22 lines
796 B
HTML

<div class="sw5e chat-card consumable-card" data-actor-id="{{actor._id}}" data-item-id="{{item._id}}" {{#if tokenId}}data-token-id="{{tokenId}}"{{/if}}>
<header class="card-header flexrow">
<img src="{{item.img}}" title="{{item.name}}" width="36" height="36"/>
<h3>{{item.name}}</h3>
</header>
<div class="card-content">{{{data.description.value}}}</div>
<div class="card-buttons">
{{#if data.hasCharges}}
<button data-action="consume">{{ localize "SW5E.Use" }} {{data.consumableType.str}}</button>
{{else}}
<button disabled>{{ localize "SW5E.NoCharges" }}</button>
{{/if}}
</div>
<footer class="card-footer">
{{#each data.properties}}
<span>{{this}}</span>
{{/each}}
</footer>
</div>