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.

38 lines
1.8 KiB

1 year ago
  1. <div class="tab effects actions-pane" data-group="primary" data-tab="effects">
  2. <h3 class="header">{{localize "PF2E.ConditionsLabel"}}</h3>
  3. <ol class="effects-list directory-list item-list">
  4. {{> "systems/pf2e/templates/actors/partials/conditions.hbs"}}
  5. </ol>
  6. <h3 class="header">{{localize "PF2E.EffectsLabel"}}</h3>
  7. <ol class="effects-list directory-list item-list">
  8. {{> "systems/pf2e/templates/actors/partials/conditions.hbs" conditions=document.itemTypes.effect}}
  9. </ol>
  10. <h3 class="header">
  11. {{localize "PF2E.FeatDeityBoonCursesHeader"}}
  12. {{#if options.editable}}
  13. <button type="button" class="item-control feat-browse" data-type="feat"><i class="fas fa-fw fa-search"></i>{{localize "PF2E.BrowseLabel"}}</button>
  14. {{/if}}
  15. </h3>
  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="fas fa-comment-alt"></i>
  24. </div>
  25. <h4>{{feat.name}}</h4>
  26. </div>
  27. {{#if @root.options.editable}}
  28. <div class="item-controls">
  29. <a class="item-control item-edit" title="{{localize "PF2E.EditItemTitle"}}"><i class="fas fa-fw fa-edit"></i></a>
  30. <a class="item-control item-delete" title="{{localize "PF2E.DeleteItemTitle"}}"><i class="fas fa-fw fa-trash"></i></a>
  31. </div>
  32. {{/if}}
  33. </li>
  34. {{/each}}
  35. </ol>
  36. </div>