All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.

79 lines
6.2 KiB

1 year ago
  1. <div class="tab details character" data-group="primary" data-tab="details">
  2. <div class="details-content">
  3. <div class="bio-item trait-size">
  4. <section class="vehicle-details">
  5. <div class="frame image-container">
  6. <img class="actor-image" src="{{actor.img}}" title="{{actor.name}}" height="auto" width="100%" data-edit="img" />
  7. <a class="hover-icon" data-action="show-image"><i class="fas fa-image fa-fw"></i></a>
  8. </div>
  9. <div class="detail-sheet">
  10. <div class="detail-small row-nr-1 span-2-columns" title="{{localize "PF2E.vehicle.PropertyDescriptionSpace"}}">
  11. <div class="inputSplit">
  12. <label class="details-label" for="{{options.id}}-vehicle-space-long">{{localize "PF2E.vehicle.SpaceLongLabel"}}</label>
  13. <input class="details-input" id="{{options.id}}-vehicle-space-long" name="system.details.space.long" type="number" min="5" step="5" value="{{data.details.space.long}}" placeholder="2" />
  14. </div>
  15. <div class="inputSplit">
  16. <label class="details-label" for="{{options.id}}-vehicle-space-wide">{{localize "PF2E.vehicle.SpaceWideLabel"}}</label>
  17. <input class="details-input" id="{{options.id}}-vehicle-space-wide" name="system.details.space.wide" type="number" min="5" step="5" value="{{data.details.space.wide}}" placeholder="2" />
  18. </div>
  19. <div class="inputSplit">
  20. <label class="details-label" for="{{options.id}}-vehicle-spac-high">{{localize "PF2E.vehicle.SpaceHighLabel"}}</label>
  21. <input class="details-input" id="{{options.id}}-vehicle-spac-high" name="system.details.space.high" type="number" min="1" step="1" value="{{data.details.space.high}}" placeholder="1" />
  22. </div>
  23. <div title="{{localize "PF2E.vehicle.PropertyDescriptionPrice"}}">
  24. <label class="details-label" for="{{options.id}}-vehicle-price">{{localize "PF2E.PriceLabel"}}</label>
  25. <input class="details-input" id="{{options.id}}-vehicle-price" name="system.details.price" type="number" value="{{data.details.price}}" placeholder="0" />
  26. </div>
  27. </div>
  28. <div class="row-nr-2 span-2-columns" title="{{localize "PF2E.vehicle.PropertyDescriptionSpeed"}}">
  29. <label class="details-label" for="{{options.id}}-vehicle-speed">{{localize "PF2E.Speed"}}</label>
  30. <input class="details-input" id="{{options.id}}-vehicle-speed" name="system.details.speed" type="text" value="{{data.details.speed}}" placeholder="0" />
  31. </div>
  32. </div>
  33. </section>
  34. <section class="vehicle-properties">
  35. <div class="detailsInput flexitem-5" title="{{localize "PF2E.vehicle.PropertyDescriptionCrew"}}">
  36. <label class="details-label" for="{{options.id}}-vehicle-crew">{{localize "PF2E.vehicle.CrewLabel"}}</label>
  37. <input class="details-input" id="{{options.id}}-vehicle-crew" name="system.details.crew" type="text" value="{{data.details.crew}}" />
  38. </div>
  39. <div class="detailsInput flexitem-1"
  40. title="{{localize "PF2E.vehicle.PropertyDescriptionPassengers"}}">
  41. <label class="details-label" for="{{options.id}}-vehicle-passengers">{{localize "PF2E.vehicle.PassengersLabel"}}</label>
  42. <input class="details-input" id="{{options.id}}-vehicle-passengers" name="system.details.passengers" type="text" value="{{data.details.passengers}}" />
  43. </div>
  44. <div class="detailsInput flexitem-2"
  45. title="{{localize "PF2E.vehicle.PropertyDescriptionCollisionDC"}}">
  46. <label class="details-label" for="{{options.id}}-vehicle-collisionDC">{{localize "PF2E.vehicle.collisionDCLabel"}}</label>
  47. <input class="details-input" id="{{options.id}}-vehicle-collisionDC" name="system.attributes.collisionDC.value" type="number" value="{{data.attributes.collisionDC.value}}" />
  48. </div>
  49. <div class="detailsInput flexitem-1"
  50. title="{{localize "PF2E.vehicle.PropertyDescriptionCollisionDamage"}}">
  51. <label class="details-label" for="{{options.id}}-vehicle-collisionDamage">{{localize "PF2E.vehicle.collisionDamageLabel"}}</label>
  52. <input class="details-input" id="{{options.id}}-vehicle-collisionDamage" name="system.attributes.collisionDamage.value" type="text" value="{{data.attributes.collisionDamage.value}}" />
  53. </div>
  54. <div class="detailsInput flexitem-5"
  55. title="{{localize "PF2E.vehicle.PropertyDescriptionPilotingCheck"}}">
  56. <label class="details-label" for="{{options.id}}-vehicle-pilotingCheck">{{localize "PF2E.vehicle.PilotingCheckLabel"}}</label>
  57. <input class="details-input" id="{{options.id}}-vehicle-pilotingCheck" name="system.details.pilotingCheck" type="text" value="{{data.details.pilotingCheck}}" />
  58. </div>
  59. <div class="detailsInput flexitem-full">
  60. <span class="details-label">{{localize "PF2E.Traits"}}</span>
  61. <ul class="tags">
  62. {{#each data.traits.selected as |v k|}}
  63. <li class="tag tag_alt {{k}}">{{localize v}}</li>
  64. {{/each}}
  65. <li class="tag tag_secondary edit-btn">
  66. {{#if editable}}
  67. <a class="crb-tag-selector" data-tag-selector="basic" data-config-types="vehicleTraits" data-property="system.traits">
  68. {{> "systems/pf2e/templates/actors/character/icons/plus.hbs"}}
  69. </a>
  70. {{/if}}
  71. </li>
  72. </ul>
  73. </div>
  74. </section>
  75. </div>
  76. </div>
  77. </div>