foundryvtt-beam-saber/templates/npc-sheet.html
2022-09-05 13:58:51 +03:00

18 lines
1.4 KiB
HTML

<form class="{{cssClass}} actor-sheet" autocomplete="off">
<img src="{{img}}" data-edit="img" title="{{name}}" height="100" width="100"/>
<input type="text" id="character-{{_id}}-name" name="name" value="{{name}} ">
<label for="character-{{_id}}-name">Name</label>
<input type="text" id="character-{{_id}}-short-description" name="system.description_short" value="{{system.description_short}} ">
<label for="character-{{_id}}-short-description">Short description</label>
<input type="text" id="character-{{_id}}-associated-class" name="system.associated_class" value="{{system.associated_class}} ">
<label for="character-{{_id}}-associated-class">Associated Class</label>
<input type="text" id="character-{{_id}}-description" name="system.description" value="{{system.description}} ">
<label for="character-{{_id}}-description">Description</label>
<input type="text" id="character-{{_id}}-associated-crew-type" name="system.associated_crew_type" value="{{system.associated_crew_type}} ">
<label for="character-{{_id}}-associated-crew-type">Associated Crew Type</label>
<input type="text" id="character-{{_id}}-notes" name="system.notes" value="{{system.notes}} ">
<label for="character-{{_id}}-notes">Notes</label>
<input type="text" id="character-{{_id}}-associated-faction" name="system.associated_faction" value="{{system.associated_faction}}" >
<label for="character-{{_id}}-associated-faction">Associated Faction</label>
</form>