foundryvtt-beam-saber/templates/items/class.html

25 lines
1.1 KiB
HTML
Raw Normal View History

2020-04-21 16:06:33 +00:00
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
2020-04-21 16:06:33 +00:00
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="{{localize 'BITD.Name'}}"/></h1>
2020-04-21 16:06:33 +00:00
</div>
</header>
<section class="flex-vertical">
<label class="label-stripe">{{localize "BITD.Description"}}</label>
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
<label class="label-stripe">{{localize "BITD.ExpClues"}}</label>
<div><i>- {{localize "BITD.ClassExpClue1"}}</i></div>
<div>{{localize "BITD.ClassExpClueDescription"}}</div>
<div><i>- {{localize "BITD.ClassExpClue2"}}</i></div>
<div><i>- {{localize "BITD.ClassExpClue3"}}</i></div>
{{editor content=data.experience_clues target="data.experience_clues" button=true owner=owner editable=editable}}
{{isG}}
<label class="label-stripe">{{localize "BITD.Logic"}}</label>
<textarea name="data.logic">{{data.logic}}</textarea>
2020-04-21 16:06:33 +00:00
</section>
2020-04-21 16:06:33 +00:00
</form>