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.

29 lines
1.4 KiB

1 year ago
  1. <div class="sidebar_title">
  2. <h2>{{localize "PF2E.SavesHeader"}}</h2>
  3. </div>
  4. <ul class="sidebar-saves">
  5. {{#each data.saves as |save sid|}}
  6. <li class="roll-data" data-save="{{sid}}">
  7. <h2 class="sidebar_label">{{localize save.label}}</h2>
  8. <div class="save-prof button-group skill-container">
  9. <select class="save-proficiency pf-rank adjust-stat-select{{#if rank.immutable}} readonly{{/if}}" data-property="system.saves.{{sid}}.rank" data-rank="{{save.rank}}" data-dtype="Number">
  10. {{> "systems/pf2e/templates/actors/character/partials/proficiencylevels-dropdown.hbs" proflevel=save.rank}}
  11. </select>
  12. </div>
  13. <div class="save-roll">
  14. <a class="roll-icon save-name">
  15. {{> "systems/pf2e/templates/actors/character/icons/d20.hbs"}}
  16. </a>
  17. <h3>{{numberFormat save.totalModifier decimals=0 sign=true}}</h3>
  18. </div>
  19. <button type="button" class="modifiers_button hover" data-tooltip-content="#{{@root.options.id}}-{{save.slug}}-modifiers">
  20. {{localize "PF2E.ModifiersTitle"}}
  21. </button>
  22. {{#with save}}
  23. {{> "systems/pf2e/templates/actors/character/partials/modifiers-tooltip.hbs" title=label}}
  24. {{/with}}
  25. </li>
  26. {{/each}}
  27. </ul>