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

21 lines
904 B
HTML

<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img src="{{img}}" data-edit="img" title="{{name}}"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{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 system.description target="system.description" button=true editable=editable}}
{{#if isGM}}
<div class="label-stripe">{{localize "BITD.Logic"}}</div>
<textarea name="system.logic">{{{system.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>