Options given to ActorPF.performRest affecting an actor's resting.

interface ActorRestOptions {
    hours: undefined | number;
    longTermCare: undefined | boolean;
    restoreDailyUses: undefined | boolean;
    restoreHealth: undefined | boolean;
    verbose: undefined | boolean;
}

Properties

hours: undefined | number

The number of hours the actor will rest.

longTermCare: undefined | boolean

Whether additional hit and ability score points should be restored through the Heal skill.

restoreDailyUses: undefined | boolean

Whether daily uses of spells and abilities should be restored.

restoreHealth: undefined | boolean

Whether the actor's health should be restored.

verbose: undefined | boolean

Display notification once rest processing finishes.