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.

36 lines
1.4 KiB

1 year ago
  1. <div class="inventory-details">
  2. <div class="form-group">
  3. <label>{{localize "PF2E.HitPointsHeader"}}</label>
  4. <input type="number" name="system.hp" value="{{data.hp}}" />
  5. </div>
  6. <div class="form-group">
  7. <label>{{localize "PF2E.SizeLabel"}}</label>
  8. <select name="system.size">
  9. {{#select data.size}}
  10. {{#each sizes}}
  11. <option value="{{@key}}">{{localize this.label}}</option>
  12. {{/each}}
  13. {{/select}}
  14. </select>
  15. </div>
  16. <div class="form-group">
  17. <label>{{localize "PF2E.Reach"}}</label>
  18. <input type="number" name="system.reach" value="{{data.reach}}" />
  19. </div>
  20. <div class="form-group">
  21. <label>{{localize "PF2E.SpeedFeet"}}</label>
  22. <input type="number" name="system.speed" value="{{data.speed}}" />
  23. </div>
  24. <div class="form-group">
  25. <label>{{localize "PF2E.Item.Ancestry.Vision.Label"}}</label>
  26. <select name="system.vision">
  27. {{#select data.vision}}
  28. <option value="normal">{{localize "PF2E.Item.Ancestry.Vision.Normal"}}</option>
  29. <option value="lowLightVision">{{localize "PF2E.Actor.Creature.Sense.Type.LowLightVision"}}</option>
  30. <option value="darkvision">{{localize "PF2E.Actor.Creature.Sense.Type.Darkvision"}}</option>
  31. {{/select}}
  32. </select>
  33. </div>
  34. </div>