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.

26 lines
1.1 KiB

1 year ago
  1. <form autocomplete="off" onsubmit="event.preventDefault();">
  2. <label>{{localize "PF2E.CastingItemCreateDialog.label"}}</label>
  3. {{#if (ne itemType "cantripDeck5")}}
  4. <div class="form-group">
  5. <p><label>{{localize "PF2E.CastingItemCreateDialog.spellLevelLabel"}}</label>
  6. <select name="level" data-dtype="Number">
  7. {{#select level}}
  8. {{#each validLevels as |key|}}
  9. <option value="{{key}}">{{key}}</option>
  10. {{/each}}
  11. {{/select}}
  12. </select></p>
  13. </div>
  14. {{/if}}
  15. <div class="form-group">
  16. <p><label>{{localize "PF2E.CastingItemCreateDialog.itemTypeLabel"}}</label>
  17. <select name="itemType" data-dtype="String">
  18. {{#select itemType}}
  19. {{#each itemTypeOptions}}
  20. <option value="{{@key}}">{{localize this}}</option>
  21. {{/each}}
  22. {{/select}}
  23. </select></p>
  24. </div>
  25. <button type="submit"><i class="far fa-save"></i>{{localize "PF2E.CastingItemCreateDialog.submit"}}</button>
  26. </form>