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.
 
 
 

22 lines
811 B

<div class="pf2e chat-card item-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="tags">
{{#each data.traits}}
{{#unless trait.mystified}}
<span class="tag" data-trait="{{this.name}}" data-description="{{this.description}}">{{localize this.label}}</span>
{{/unless}}
{{/each}}
</div>
<div class="card-content">
{{{item.description}}}
</div>
<footer class="card-footer">
{{#each data.properties}}
<span>{{localize this}}</span>
{{/each}}
</footer>
</div>