This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
foundryvtt-beam-saber/templates/items/simple.html

21 lines
896 B
HTML
Raw Normal View History

2020-04-23 16:11:04 +00:00
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
2022-09-03 15:44:26 +00:00
<img src="{{img}}" data-edit="img" title="{{name}}"/>
2020-04-23 16:11:04 +00:00
<div class="header-fields">
2022-09-03 15:44:26 +00:00
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="{{localize 'BITD.Name'}}"/></h1>
2020-04-23 16:11:04 +00:00
</div>
</header>
2022-09-03 15:44:26 +00:00
2020-04-23 16:11:04 +00:00
{{!-- Sheet Body --}}
<section class="sheet-body flex-vertical">
<label class="label-stripe">{{localize "BITD.Description"}}</label>
2022-09-03 15:44:26 +00:00
{{editor system.description target="system.description" button=true editable=editable}}
2021-06-10 22:57:01 +00:00
{{#if isGM}}
<div class="label-stripe">{{localize "BITD.Logic"}}</div>
2022-09-03 15:44:26 +00:00
<textarea name="system.logic">{{{system.logic}}}</textarea>
2021-06-10 22:57:01 +00:00
<div class="label-stripe">{{localize "BITD.Effects"}}</div>
<div id="effects">{{> "systems/beam-saber/templates/parts/active-effects.html"}}</div>
2021-06-10 22:57:01 +00:00
{{/if}}
2020-04-23 16:11:04 +00:00
</section>
</form>