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/ability.html

20 lines
1,006 B
HTML
Raw Normal View History

2020-04-23 16:11:04 +00:00
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
2020-04-23 16:11:04 +00:00
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="{{localize 'BITD.Name'}}"/></h1>
2020-04-23 16:11:04 +00:00
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body">
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
2020-04-23 16:11:04 +00:00
</section>
2020-05-04 17:28:02 +00:00
<div class="flex-vertical">
<label class="label-stripe">{{localize "BITD.AbilityPrice"}}</label>
<input id="ability-price" type="text" name="data.price" value="{{data.price}}" placeholder="{{localize 'BITD.AbilityPrice'}}">
<label class="label-stripe">{{localize "BITD.AbilityClass"}}</label>
<input id="ability-class" type="text" name="data.class" value="{{data.class}}" placeholder="{{localize 'BITD.AbilityClass'}}">
2020-05-04 17:28:02 +00:00
</div>
2020-04-23 16:11:04 +00:00
</form>