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>
|
||||
|
||||
{{!-- Powercasting --}}
|
||||
<div class="form-group">
|
||||
<label>{{localize 'SW5E.PowerProgression'}}</label>
|
||||
<div class="form-fields">
|
||||
<select name="data.powercasting">
|
||||
{{#select data.powercasting}}
|
||||
{{#each config.powerProgression}}
|
||||
<option value="{{@key}}">{{localize this}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
<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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue