Add spell

This commit is contained in:
2022-01-09 14:52:24 +01:00
parent 54ba3225dd
commit e595a16289
5 changed files with 21 additions and 6 deletions

View File

@ -1,7 +1,16 @@
<h3 class="form-header">{{localize "BOL.ui.spellProperties"}}</h3>
<div class="form-group">
<div class="form-fields">
<label class="property-label">{{localize "BOL.ui.difficulty"}}111</label>
<div class="form-fields center">
<label class="property-label">{{localize "BOL.ui.difficulty"}}</label>
<input class="field-value" type="text" name="data.properties.difficulty" value="{{data.properties.difficulty}}" data-dtype="Number"/>
</div>
</div>
<div class="form-group">
<div class="form-fields center">
<label class="property-label">{{localize "BOL.ui.mandatoryConditions"}}</label>
{{#each data.properties.mandatoryconditions as |cond key|}}
<input class="field-value" type="text" name="data.properties.mandatoryconditions.{{key}}.text" value="{{cond.text}}" data-dtype="String"/>
{{/each}}
</div>
</div>