All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.

18 lines
685 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <li class="item flexrow" data-entry-uuid="{{entry.uuid}}" data-type="Actor">
  2. <div class="image">
  3. <img src="{{entry.img}}" alt="{{entry.name}}" loading="lazy" />
  4. </div>
  5. <div class="name">
  6. <a class="actor-link">{{entry.name}}</a>
  7. </div>
  8. <div class="tags paizo-style">
  9. {{#unless (eq entry.rarity "common")}}
  10. <span class="tag rarity {{entry.rarity}}" data-tooltip="PF2E.Rarity">
  11. {{lookup (lookup filterData.checkboxes.rarity.options entry.rarity) "label"}}
  12. </span>
  13. {{/unless}}
  14. </div>
  15. <div class="level">
  16. <span data-tooltip="PF2E.LevelLabel">{{entry.level}}</span>
  17. </div>
  18. </li>