Fix skills and multiple maneuvers per weapons

This commit is contained in:
2025-11-29 11:14:16 +01:00
parent 7dfffcb855
commit 58d9b10251
8 changed files with 233 additions and 97 deletions
+5 -7
View File
@@ -17,13 +17,11 @@
<label>{{localize "PRISMRPG.Label.attributeBonusChoice"}}</label>
<select name="system.attributeBonus">
<option value="">{{localize "PRISMRPG.Label.selectAttribute"}}</option>
{{#with (lookup config.CORE_SKILLS system.coreSkill)}}
{{#each attributeChoices}}
<option value="{{this}}" {{#if (eq ../../system.attributeBonus this)}}selected{{/if}}>
{{localize (concat "PRISMRPG.Label." this)}}
</option>
{{/each}}
{{/with}}
{{#each config.CHARACTERISTICS}}
<option value="{{@key}}" {{#if (eq ../system.attributeBonus @key)}}selected{{/if}}>
{{localize this.label}}
</option>
{{/each}}
</select>
<p class="hint">{{localize "PRISMRPG.Hint.attributeBonus"}}</p>
</div>