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.

25 lines
1.2 KiB

1 year ago
1 year ago
1 year ago
1 year ago
  1. <div class="form-group">
  2. <label for="{{fieldIdPrefix}}bulk-held-stowed">{{localize "PF2E.Item.Physical.Bulk.HeldOrStowed"}}</label>
  3. <select name="system.bulk.heldOrStowed" id="{{fieldIdPrefix}}bulk-held-stowed" data-dtype="Number">
  4. {{#select item._source.system.bulk.heldOrStowed}}
  5. {{#each bulks as |bulk|}}
  6. <option value="{{bulk.value}}">{{bulk.label}}</option>
  7. {{/each}}
  8. {{/select}}
  9. </select>
  10. </div>
  11. <div class="form-group">
  12. <label for="{{fieldIdPrefix}}capacity">{{localize "PF2E.Item.Container.Bulk.Capacity"}}</label>
  13. <input type="number" name="system.bulk.capacity" id="{{fieldIdPrefix}}capacity" value="{{data.bulk.capacity}}" />
  14. </div>
  15. <div class="form-group">
  16. <label for="{{fieldIdPrefix}}ignored">{{localize "PF2E.Item.Container.Bulk.Ignored"}}</label>
  17. <input type="number" name="system.bulk.ignored" id="{{fieldIdPrefix}}ignored" value="{{data.bulk.ignored}}" />
  18. </div>
  19. <div class="form-group">
  20. <label for="{{fieldIdPrefix}}stowing">{{localize "PF2E.Item.Container.Stowing"}}</label>
  21. <input type="checkbox" name="system.stowing" id="{{fieldIdPrefix}}stowing" {{checked data.stowing}} />
  22. </div>