All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40 lines
1009 B

<div class="item-piles-chat-card" data-actor-id="{{actor.id}}">
<div class="item-piles-chat-card-title">
<p>
<img src="{{itemPile.img}}" data-fast-tooltip="{{itemPile.name}}" height="32"/>
{{#if actor}}<i class="fas fa-arrow-right"></i> <img src="{{actor.img}}" data-fast-tooltip="{{actor.name}}"
height="32"/>{{/if}}
</p>
<p>{{message}}</p>
</div>
{{#if items}}
<ul>
{{#each items as |item id|}}
<li>
<img src="{{item.img}}" data-fast-tooltip="{{item.name}}" height="16"/>
<label>{{item.name}}</label>
<small>{{item.quantity}}</small>
</li>
{{/each}}
</ul>
{{/if}}
{{#if items}}
{{#if currencies}}
<hr>
{{/if}}
{{/if}}
{{#if currencies}}
<ul>
{{#each currencies as |currency id|}}
<li>
<img src="{{currency.img}}" data-fast-tooltip="{{currency.name}}" height="16"/>
<label>{{currency.name}}</label>
<small>{{currency.quantity}}</small>
</li>
{{/each}}
</ul>
{{/if}}
</div>