forked from GitHub-Mirrors/foundry-sw5e
20 lines
754 B
HTML
20 lines
754 B
HTML
<form id="long-rest" class="dialog-content" onsubmit="event.preventDefault();">
|
|
<p>Take a long rest? On a long rest you will recover hit points, half your maximum hit dice, class resources, limited use item charges, and spell slots.</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>
|