forked from GitHub-Mirrors/foundry-sw5e
Update class.html
forgot to hit save apparently, although this is all commented out anyway.
This commit is contained in:
parent
9a86bf7857
commit
fe520f2c0d
1 changed files with 31 additions and 6 deletions
|
@ -82,19 +82,44 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{!-- Powercasting --}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize 'SW5E.PowerProgression'}}</label>
|
<label>{{localize 'SW5E.PowerProgression'}}</label>
|
||||||
<div class="form-fields">
|
<div class="form-fields">
|
||||||
<select name="data.powercasting">
|
<select name="data.powercasting.progression">
|
||||||
{{#select data.powercasting}}
|
{{selectOptions config.powerProgression selected=data.powercasting.progression localize=true}}
|
||||||
{{#each config.powerProgression}}
|
|
||||||
<option value="{{@key}}">{{localize this}}</option>
|
|
||||||
{{/each}}
|
|
||||||
{{/select}}
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</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 --}}
|
{{!-- Level 1 skills --}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "SW5E.ClassSkillsNumber"}}</label>
|
<label>{{localize "SW5E.ClassSkillsNumber"}}</label>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue