forked from GitHub-Mirrors/foundry-sw5e
DND5e Core 1.3.5
DND5e Core 1.3.5 modded to SW5e System Combining with DND5e Core 1.3.2 to see one big commit since last core update DND5e Core 1.3.2 modded to SW5e System
This commit is contained in:
parent
c208552f70
commit
b56a074697
147 changed files with 3615 additions and 1875 deletions
23
templates/apps/hit-dice-config.html
Normal file
23
templates/apps/hit-dice-config.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<form autocomplete="off">
|
||||
<p class="notes">{{ localize "SW5E.HitDiceConfigHint" }}</p>
|
||||
{{#each classes}}
|
||||
<div class="form-group">
|
||||
<label>{{this.name}} ({{this.diceDenom}})</label>
|
||||
<div class="form-fields">
|
||||
<button class="decrement" type="button">-</button>
|
||||
<input title="{{ localize 'SW5E.HitDiceRemaining' }}" class="current" name="{{this.classItemId}}" type="number" value="{{this.currentHitDice}}" />
|
||||
<span class="sep">/</span>
|
||||
<input title="{{ localize 'SW5E.HitDiceMax' }}" class="max" type="number" value="{{this.maxHitDice}}" disabled />
|
||||
<button class="increment" type="button">+</button>
|
||||
|
||||
<button class="roll-hd" data-hd-denom="{{this.diceDenom}}" {{#unless this.canRoll}}disabled{{/unless}}>
|
||||
<i class="fas fa-dice-d20"></i> {{ localize "SW5E.Roll" }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{{/each}}
|
||||
<div class="dialog-buttons">
|
||||
<button type="reset" name="reset"><i class="fas fa-redo"></i> {{ localize "SETTINGS.5eUndoChanges" }}</button>
|
||||
<button type="submit" name="submit" value="1"><i class="far fa-save"></i> {{ localize "SETTINGS.Save"}}</button>
|
||||
</div>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue