foundryvtt-beam-saber/templates/items/simple.html
2021-06-16 14:49:54 +03:00

21 lines
933 B
HTML

<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="{{localize 'BITD.Name'}}"/></h1>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body flex-vertical">
<label class="label-stripe">{{localize "BITD.Description"}}</label>
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
{{#if isGM}}
<div class="label-stripe">{{localize "BITD.Logic"}}</div>
<textarea name="data.logic">{{{data.logic}}}</textarea>
<div class="label-stripe">{{localize "BITD.Effects"}}</div>
<div id="effects">{{> "systems/blades-in-the-dark/templates/parts/active-effects.html"}}</div>
{{/if}}
</section>
</form>