|
|
- <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}}
- {{{actionGlyph item.system.actions.value}}}
- </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>
|