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.
 
 
 

23 lines
746 B

<div class="item-piles-chat-card" data-actor-id="{{actor.id}}">
<div class="item-piles-chat-card-title">
<p>
<img src="{{merchant.img}}" data-fast-tooltip="{{merchant.name}}" height="32"/>
<i class="fas fa-handshake"></i> <img src="{{actor.img}}" data-fast-tooltip="{{actor.name}}" height="32"/>
</p>
<p>{{message}}</p>
</div>
<ul>
{{#each priceInformation as |bought basePriceString|}}
{{#each bought.buyerReceive as |item id|}}
<li>
<img src="{{item.img}}" data-fast-tooltip="{{item.name}}" height="16"/>
<label>{{item.name}} <small>(x{{item.quantity}})</small></label>
<label class="item-piles-chat-price">{{bought.basePriceString}}</label>
</li>
{{/each}}
{{/each}}
</ul>
</div>