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.

30 lines
1.3 KiB

1 year ago
  1. <header class="char-header">
  2. <div class="char-details">
  3. <h1 class="char-name">
  4. <input name="name" type="text" value="{{actor.name}}" placeholder="{{localize "PF2E.CharacterNamePlaceholder"}}" />
  5. </h1>
  6. <div class="tags">
  7. <select class="rarity rarity-select {{data.traits.rarity}}" name="system.traits.rarity" data-dtype="String">
  8. {{#select data.traits.rarity}}
  9. {{#each actorRarities as |label key|}}
  10. <option value="{{key}}">{{localize label}}</option>
  11. {{/each}}
  12. {{/select}}
  13. </select>
  14. <select class="size size-select" name="system.traits.size.value" data-dtype="String">
  15. {{#select data.traits.size.value}}
  16. {{#each actorSizes as |label size|}}
  17. <option value="{{size}}">{{localize label}}</option>
  18. {{/each}}
  19. {{/select}}
  20. </select>
  21. </div>
  22. </div>
  23. <div class="char-level">
  24. <div class="level">
  25. <label>{{localize "PF2E.vehicle.VehicleLevelLabel"}}</label>
  26. <input name="system.details.level.value" type="number" value="{{data.details.level.value}}" placeholder="1" size="2" />
  27. </div>
  28. </div>
  29. </header>