forked from GitHub-Mirrors/foundry-sw5e
155 lines
6.2 KiB
HTML
155 lines
6.2 KiB
HTML
<form class="{{cssClass}} flexcol" autocomplete="off">
|
|
|
|
{{!-- Item Sheet Header --}}
|
|
<header class="sheet-header flexrow">
|
|
<img class="profile" src="{{item.img}}" title="{{item.name}}" data-edit="img"/>
|
|
|
|
<div class="header-details flexrow">
|
|
<h1 class="charname">
|
|
<input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'SW5E.ClassName' }}"/>
|
|
</h1>
|
|
|
|
<div class="item-subtitle">
|
|
<h4 class="item-type">{{itemType}}</h4>
|
|
<span class="item-status">{{itemStatus}}</span>
|
|
</div>
|
|
|
|
<ul class="summary flexrow">
|
|
<li>
|
|
<input type="text" name="data.source" value="{{data.source}}" placeholder="{{ localize 'SW5E.Source' }}"/>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</header>
|
|
|
|
{{!-- Item Sheet Navigation --}}
|
|
<nav class="sheet-navigation tabs" data-group="primary">
|
|
<a class="item active" data-tab="description">{{ localize "SW5E.Description" }}</a>
|
|
<a class="item" data-tab="details">{{ localize "SW5E.Details" }}</a>
|
|
<a class="item" data-tab="archetypes">{{ localize "SW5E.Archetypes" }}</a>
|
|
</nav>
|
|
|
|
{{!-- Item Sheet Body --}}
|
|
<section class="sheet-body">
|
|
|
|
{{!-- Description Tab --}}
|
|
<div class="tab flexrow active" data-group="primary" data-tab="description">
|
|
{{editor content=data.description.value target="data.description.value" button=true owner=owner editable=editable}}
|
|
</div>
|
|
|
|
{{!-- Details Tab --}}
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
{{!-- Class Levels Table and Features --}}
|
|
|
|
{{editor content=data.classFeatures.value target="data.classFeatures.value" button=true owner=owner editable=editable}}
|
|
</div>
|
|
<!-- {{{data.classFeatures.value}}} -->
|
|
<!--
|
|
{{!-- Class Levels --}}
|
|
<div class="form-group">
|
|
<label>{{ localize "SW5E.ClassLevels" }}</label>
|
|
<div class="form-fields">
|
|
<input type="text" name="data.levels" value="{{data.levels}}" data-dtype="Number"/>
|
|
</div>
|
|
</div>
|
|
|
|
{{!-- Archetype Name --}}
|
|
<div class="form-group">
|
|
<label>{{ localize "SW5E.ArchetypeName" }}</label>
|
|
<div class="form-fields">
|
|
<input type="text" name="data.archetype" value="{{data.archetype}}"/>
|
|
</div>
|
|
</div>
|
|
|
|
{{!-- Class Hit Dice --}}
|
|
<div class="form-group">
|
|
<label>{{localize "SW5E.HitDice"}}</label>
|
|
<div class="form-fields">
|
|
<select name="data.hitDice">
|
|
{{#select data.hitDice}}
|
|
{{#each config.hitDieTypes}}
|
|
<option value="{{this}}">{{this}}</option>
|
|
{{/each}}
|
|
{{/select}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{{localize "SW5E.HitDiceUsed"}}</label>
|
|
<div class="form-fields">
|
|
<input type="text" placeholder="0" name="data.hitDiceUsed" value="{{data.hitDiceUsed}}" data-dtype="Number"/>
|
|
</div>
|
|
</div>
|
|
|
|
{{!-- Powercasting --}}
|
|
<div class="form-group">
|
|
<label>{{localize 'SW5E.PowerProgression'}}</label>
|
|
<div class="form-fields">
|
|
<select name="data.powercasting.progression">
|
|
{{selectOptions config.powerProgression selected=data.powercasting.progression localize=true}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{{localize "SW5E.PowerAbility"}}</label>
|
|
<div class="form-fields">
|
|
<select name="data.powercasting.ability">
|
|
{{selectOptions config.abilities selected=data.powercasting.ability blank=""}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
{{!-- Proficiencies --}}
|
|
<div class="form-group">
|
|
<label>
|
|
{{ localize "SW5E.ClassSaves" }}
|
|
{{#if editable}}
|
|
<a class="trait-selector class-saves" data-target="data.saves" data-options="saves">
|
|
<i class="fas fa-edit"></i>
|
|
</a>
|
|
{{/if}}
|
|
</label>
|
|
<div class="form-fields">
|
|
<ul class="traits-list">
|
|
{{#each data.saves}}
|
|
<li class="tag {{this}}">{{lookup ../config.abilities this}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{{!-- Level 1 skills --}}
|
|
<div class="form-group">
|
|
<label>{{localize "SW5E.ClassSkillsNumber"}}</label>
|
|
<div class="form-fields">
|
|
<input type="text" placeholder="0" name="data.skills.number" value="{{data.skills.number}}" data-dtype="Number"/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>
|
|
{{localize "SW5E.ClassSkillsChosen"}}
|
|
{{#if editable }}
|
|
<a class="trait-selector class-skills" data-target="data.skills" data-options="skills">
|
|
<i class="fas fa-edit"></i></a>
|
|
{{/if}}
|
|
</label>
|
|
<div class="form-fields">
|
|
<ul class="traits-list">
|
|
{{#each data.skills.value}}
|
|
<li class="tag {{this}}">{{lookup ../config.skills this}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
-->
|
|
{{!-- Archetypes Tab --}}
|
|
<div class="tab flexrow active" data-group="primary" data-tab="archetypes">
|
|
|
|
{{editor content=data.atFlavorText.value target="data.atFlavorText.value" button=true owner=owner editable=editable}}
|
|
|
|
</div>
|
|
</section>
|
|
</form>
|