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.

72 lines
2.4 KiB

1 year ago
  1. <form class="{{cssClass}} flexcol" autocomplete="off">
  2. {{!-- Item Sheet Header --}}
  3. <header class="sheet-header flexrow">
  4. <img class="profile" src="{{item.img}}" data-tooltip="{{item.name}}" data-edit="img"/>
  5. <div class="header-details flexrow">
  6. <h1 class="charname">
  7. <input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'DND5E.SubclassName' }}"/>
  8. </h1>
  9. <div class="item-subtitle">
  10. <h4 class="item-type">{{itemType}}</h4>
  11. <span class="item-status">{{itemStatus}}</span>
  12. </div>
  13. <ul class="summary flexrow">
  14. <li>
  15. <input type="text" name="system.source" value="{{system.source}}" placeholder="{{ localize 'DND5E.Source' }}"/>
  16. </li>
  17. </ul>
  18. </div>
  19. </header>
  20. {{!-- Item Sheet Navigation --}}
  21. <nav class="sheet-navigation tabs" data-group="primary">
  22. <a class="item active" data-tab="description">{{localize "DND5E.Description"}}</a>
  23. <a class="item" data-tab="details">{{localize "DND5E.Details"}}</a>
  24. <a class="item" data-tab="advancement">{{localize "DND5E.AdvancementTitle"}}</a>
  25. </nav>
  26. {{!-- Item Sheet Body --}}
  27. <section class="sheet-body">
  28. {{!-- Description Tab --}}
  29. <div class="tab flexrow active" data-group="primary" data-tab="description">
  30. {{editor descriptionHTML target="system.description.value" button=true editable=editable engine="prosemirror"
  31. collaborate=false}}
  32. </div>
  33. {{!-- Details Tab --}}
  34. <div class="tab details" data-group="primary" data-tab="details">
  35. {{!-- Identifier --}}
  36. <div class="form-group">
  37. <label>{{localize "DND5E.Identifier"}}</label>
  38. <div class="form-fields">
  39. <input type="text" name="system.identifier" value="{{system.identifier}}" placeholder="{{item.identifier}}">
  40. </div>
  41. </div>
  42. <div class="form-group">
  43. <label>{{localize "DND5E.ClassIdentifier"}}</label>
  44. <div class="form-fields">
  45. <input type="text" name="system.classIdentifier" value="{{system.classIdentifier}}">
  46. </div>
  47. <p class="hint">
  48. {{localize "DND5E.SubclassIdentifierHint"}}
  49. </p>
  50. </div>
  51. {{!-- Spellcasting --}}
  52. <h3 class="form-header">{{localize "DND5E.Spellcasting"}}</h3>
  53. {{> "dnd5e.item-spellcasting"}}
  54. </div>
  55. {{!-- Advancement Tab --}}
  56. {{> "dnd5e.item-advancement"}}
  57. </section>
  58. </form>