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.

40 lines
1.9 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <section class="tab effects actions-pane major" data-group="primary" data-tab="effects">
  2. <header>{{localize "PF2E.ConditionsLabel"}}</header>
  3. <ol class="effects-list directory-list item-list">
  4. {{> "systems/pf2e/templates/actors/partials/effects.hbs" effects=document.conditions.active}}
  5. </ol>
  6. <header>{{localize "PF2E.EffectsLabel"}}</header>
  7. <ol class="effects-list directory-list item-list">
  8. {{> "systems/pf2e/templates/actors/partials/effects.hbs" effects=document.itemTypes.effect}}
  9. </ol>
  10. <header>
  11. {{localize "PF2E.FeatDeityBoonCursesHeader"}}
  12. {{#if options.editable}}
  13. <button type="button" class="item-control" data-action="browse-feats" data-type="feat"><i class="fa-solid fa-fw fa-search"></i>{{localize "PF2E.BrowseLabel"}}</button>
  14. {{/if}}
  15. </header>
  16. <ol class="effects-list directory-list item-list">
  17. {{#each actor.deityBoonsCurses as |feat|}}
  18. <li class="item feat-item" data-item-id="{{feat.id}}">
  19. <div class="item-name rollable">
  20. <div class="feat-slot-title"></div>
  21. <div class="item-image framed">
  22. <img src="{{feat.img}}"/>
  23. <i class="fa-solid fa-comment-alt"></i>
  24. </div>
  25. <h4 class="name"><a data-action="toggle-summary">{{feat.name}}</a></h4>
  26. </div>
  27. {{#if @root.options.editable}}
  28. <div class="item-controls">
  29. <a class="item-control item-edit" data-tooltip="PF2E.EditItemTitle"><i class="fa-solid fa-fw fa-edit"></i></a>
  30. <a class="item-control item-delete" data-tooltip="PF2E.DeleteItemTitle"><i class="fa-solid fa-fw fa-trash"></i></a>
  31. </div>
  32. {{/if}}
  33. <div class="item-summary" hidden="hidden"></div>
  34. </li>
  35. {{/each}}
  36. </ol>
  37. </section>