Update Core to 1.4.1

Update Core to 1.4.1 and internal Version to 1.4.1.R1-A8
This commit is contained in:
supervj 2021-08-06 16:38:15 -04:00
parent f16383841b
commit 5bb253d9c3
56 changed files with 5440 additions and 3827 deletions

View file

@ -16,7 +16,9 @@
<ul class="summary flexrow">
<li>
<input type="text" name="data.rarity" value="{{data.rarity}}" placeholder="{{ localize 'SW5E.Rarity' }}"/>
<select name="data.rarity">
{{selectOptions config.itemRarity selected=data.rarity blank="&nbsp;"}}
</select>
</li>
<li>
<input type="text" name="data.source" value="{{data.source}}" placeholder="{{ localize 'SW5E.Source' }}"/>
@ -40,27 +42,27 @@
{{!-- Details Tab --}}
<div class="tab details" data-group="primary" data-tab="details">
{{!-- Tool Type --}}
<div class="form-group">
<label>{{ localize "SW5E.ItemToolType" }}</label>
<select name="data.toolType">
{{selectOptions config.toolTypes selected=data.toolType blank=""}}
</select>
</div>
{{!-- Tool Proficiency --}}
<div class="form-group">
<label>{{ localize "SW5E.ItemToolProficiency" }}</label>
<select name="data.proficient" data-dtype="Number">
{{#select data.proficient}}
{{#each config.proficiencyLevels as |label p|}}
<option value="{{p}}">{{label}}</option>
{{/each}}
{{/select}}
</select>
{{selectOptions config.proficiencyLevels selected=data.proficient}}
</select>
</div>
{{!-- Ability Check --}}
<div class="form-group">
<label>{{ localize "SW5E.DefaultAbilityCheck" }}</label>
<select name="data.ability">
{{#select data.ability}}
{{#each config.abilities as |name a|}}
<option value="{{a}}">{{name}}</option>
{{/each}}
{{/select}}
{{selectOptions config.abilities selected=data.ability}}
</select>
</div>