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.

27 lines
997 B

1 year ago
  1. <div class="form-group">
  2. <label>{{localize "DND5E.AbilityModifier"}}</label>
  3. <div class="form-fields">
  4. <select name="configuration.spell.ability">
  5. {{selectOptions CONFIG.abilities selected=configuration.spell.ability labelAttr="label" blank="—"}}
  6. </select>
  7. </div>
  8. </div>
  9. <div class="form-group">
  10. <label>{{localize "DND5E.SpellPreparationMode"}}</label>
  11. <div class="form-fields">
  12. <select name="configuration.spell.preparation">
  13. {{selectOptions CONFIG.spellPreparationModes selected=configuration.spell.preparation blank="—"}}
  14. </select>
  15. </div>
  16. </div>
  17. <div class="form-group">
  18. <label>{{localize "DND5E.LimitedUses"}}</label>
  19. <div class="form-fields">
  20. <input type="text" name="configuration.spell.uses.max" value="{{configuration.spell.uses.max}}" data-formula-editor>
  21. <select name="configuration.spell.uses.per">
  22. {{selectOptions CONFIG.limitedUsePeriods selected=configuration.spell.uses.per blank="—"}}
  23. </select>
  24. </div>
  25. </div>