2020-06-24 14:31:52 -04:00
|
|
|
<form id="ability-use-form">
|
2020-09-11 17:11:11 -04:00
|
|
|
<p>{{ title }}</p>
|
|
|
|
<p class="notes">{{note}}</p>
|
|
|
|
{{#each errors}}
|
2021-01-18 23:49:04 -05:00
|
|
|
<p class="notification error">{{this}}</p>
|
2020-09-11 17:11:11 -04:00
|
|
|
{{/each}}
|
2020-06-24 14:31:52 -04:00
|
|
|
|
2021-01-04 15:23:30 -05:00
|
|
|
{{#if consumePowerSlot}}
|
2020-09-11 17:11:11 -04:00
|
|
|
<div class="form-group">
|
|
|
|
<label>{{ localize "SW5E.PowerCastUpcast" }}</label>
|
|
|
|
<div class="form-fields">
|
2021-01-04 15:23:30 -05:00
|
|
|
<select name="level">
|
2020-09-11 17:11:11 -04:00
|
|
|
{{#select item.data.level}}
|
|
|
|
{{#each powerLevels as |l|}}
|
|
|
|
<option value="{{l.level}}" {{#unless l.canCast}}disabled{{/unless}}>{{l.label}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="checkbox"><input type="checkbox" name="consumeSlot" checked/>{{ localize "SW5E.PowerCastConsume" }}</label>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2020-06-24 14:31:52 -04:00
|
|
|
|
2021-01-04 15:23:30 -05:00
|
|
|
{{#if consumeUses}}
|
2020-06-24 14:31:52 -04:00
|
|
|
<div class="form-group">
|
2020-09-11 17:11:11 -04:00
|
|
|
<label class="checkbox"><input type="checkbox" name="consumeUse" checked/>{{ localize "SW5E.AbilityUseConsume" }}</label>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2020-06-24 14:31:52 -04:00
|
|
|
|
2021-01-04 15:23:30 -05:00
|
|
|
{{#if consumeResource}}
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="checkbox"><input type="checkbox" name="consumeResource" checked/>{{ localize "SW5E.ConsumeResource" }}</label>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if consumeRecharge}}
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="checkbox"><input type="checkbox" name="consumeRecharge" checked/>{{ localize "SW5E.ConsumeRecharge" }}</label>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if createTemplate}}
|
2020-09-11 17:11:11 -04:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="checkbox">
|
|
|
|
<input type="checkbox" name="placeTemplate" checked/>
|
|
|
|
{{ localize "SW5E.PlaceTemplate" }}
|
|
|
|
</label>
|
2020-06-24 14:31:52 -04:00
|
|
|
</div>
|
2020-09-11 17:11:11 -04:00
|
|
|
{{/if}}
|
2020-06-24 14:31:52 -04:00
|
|
|
</form>
|