forked from GitHub-Mirrors/foundry-sw5e
Add files via upload
This commit is contained in:
parent
a59213e72e
commit
36e5bee2f4
7 changed files with 212 additions and 0 deletions
26
templates/apps/ability-use.html
Normal file
26
templates/apps/ability-use.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<form id="ability-use-form">
|
||||
<p>{{ localize "SW5E.AbilityUseHint" }} <strong>{{item.name}}</strong> {{ localize "SW5E.Ability" }}.</p>
|
||||
|
||||
<p type="note">
|
||||
{{#if recharges}}
|
||||
{{ localize "SW5E.AbilityUseRechargeHint" }} <strong>{{#if isCharged}}{{ localize "SW5E.AbilityUseCharged" }}{{else}}{{ localize "SW5E.AbilityUseDepleted" }}{{/if}}</strong>.</p>
|
||||
{{else}}
|
||||
{{ localize "SW5E.AbilityUseWarnStart" }} <strong>{{uses.value}} {{ localize "SW5E.of" }} {{uses.max}}</strong> {{ localize "SW5E.AbilityUseWarnEnd" }} {{perLabel}}.
|
||||
{{/if}}
|
||||
{{#unless canUse}}
|
||||
{{ localize "SW5E.AbilityUseCantUse" }}
|
||||
{{/unless}}
|
||||
</p>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="checkbox">{{ localize "SW5E.AbilityUseConsume" }} <input type="checkbox" name="consume" {{checked consume}}/></label>
|
||||
|
||||
{{#if hasPlaceableTemplate}}
|
||||
<div class="form-group">
|
||||
<label class="checkbox">{{ localize "SW5E.PlaceTemplate" }}
|
||||
<input type="checkbox" name="placeTemplate" checked/>
|
||||
</label>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue