forked from GitHub-Mirrors/foundry-sw5e

add structure for Hull, Shield, and Power Dice to allow for recharge, refitting, and regeneration. Not complete.
20 lines
711 B
HTML
20 lines
711 B
HTML
<form id="refitting-rest" class="dialog-content" onsubmit="event.preventDefault();">
|
|
<p>Take a refitting rest? On a refitting rest you will recover hull points, your hull dice, and shields.</p>
|
|
|
|
{{#if promptNewDay}}
|
|
<div class="form-group">
|
|
<label>Is New Day?</label>
|
|
<input type="checkbox" name="newDay" {{checked newDay}}/>
|
|
<p class="hint">Recover limited use abilities which recharge "per day"?</p>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="dialog-buttons">
|
|
{{#each buttons as |button id|}}
|
|
<button class="dialog-button" data-button="{{id}}">
|
|
{{{button.icon}}}
|
|
{{{button.label}}}
|
|
</button>
|
|
{{/each}}
|
|
</div>
|
|
</form>
|