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.

33 lines
1.3 KiB

  1. <fieldset class="basics">
  2. <div class="form-group">
  3. <label>{{localize "PF2E.ProficiencyLabel"}}</label>
  4. <select name="system.proficient.value" data-dtype="Number">
  5. {{#select data.proficient.value}}
  6. {{#each proficiencies as |label p|}}
  7. <option value="{{p}}">{{localize label}}</option>
  8. {{/each}}
  9. {{/select}}
  10. </select>
  11. </div>
  12. </fieldset>
  13. <fieldset>
  14. <legend>Situational Skill Rolls</legend>
  15. <table class="skill-variants">
  16. <tr>
  17. <th>Label</th>
  18. <th>Roll Options</th>
  19. <th>&nbsp;</th>
  20. </tr>
  21. {{#each data.variants as |variant idx|}}
  22. <tr>
  23. <td><input name="system.variants.{{idx}}.label" value="{{variant.label}}"></td>
  24. <td><input name="system.variants.{{idx}}.options" value="{{variant.options}}" placeholder="separated by comma"></td>
  25. <td><div class="remove-skill-variant" data-skill-variant-index="{{idx}}" title="{{localize "PF2E.ItemRemoveRuleElement"}}"><i class="fa-solid fa-trash"></i></div></td>
  26. </tr>
  27. {{/each}}
  28. </table>
  29. <div class="add-skill-variant"><i class="fa-solid fa-plus"></i> {{localize "PF2E.ItemNewSkillVariant"}}</div>
  30. <div class="form-group">{{localize "PF2E.LoreProficiencyDisclaimer"}}</div>
  31. </fieldset>