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.

25 lines
980 B

1 year ago
  1. <li class="item flexrow" data-entry-uuid="{{entry.uuid}}" data-level="{{entry.level}}" data-type="Item">
  2. <div class="image">
  3. <img class="" src="{{entry.img}}" title="{{entry.name}}" width="32" height="32" loading="lazy"/>
  4. </div>
  5. {{#if entry.time.img}}
  6. <div class="image" style="margin-left: 5px;">
  7. <img src="{{entry.time.img}}" title="{{entry.data.time.value}}" width="32" height="32" loading="lazy"/>
  8. </div>
  9. {{else}}
  10. <div class="image" style="margin-left: 5px;"></div>
  11. {{/if}}
  12. <div class="name">
  13. <a class="item-link">{{entry.name}}</a>
  14. </div>
  15. <div class="rarity tags">
  16. {{#unless (eq entry.rarity "common")}}
  17. <span class="tag {{entry.rarity}}">
  18. {{lookup (lookup filterData.checkboxes.rarity.options entry.rarity) "label"}}
  19. </span>
  20. {{/unless}}
  21. </div>
  22. <div class="level">
  23. <span title="Spell level">{{entry.level}}</span>
  24. </div>
  25. </li>