├── .eslintignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── exhaustion-1.svg ├── exhaustion-10.svg ├── exhaustion-2.svg ├── exhaustion-3.svg ├── exhaustion-4.svg ├── exhaustion-5.svg ├── exhaustion-6.svg ├── exhaustion-7.svg ├── exhaustion-8.svg ├── exhaustion-9.svg └── exhaustion.svg ├── changelog.md ├── docs ├── README.md ├── actor-traits.md ├── all-together-now-v2.psd ├── all-together-now.png ├── all-together-now.psd ├── api.md ├── food-and-water-settings.md ├── general-settings.md ├── index.html ├── item-recognition-settings.md ├── long-rest-settings.md ├── short-rest-settings.md └── sidebar.md ├── languages ├── cs.json ├── de.json ├── en.json ├── fr.json ├── pt_BR.json └── ru.json ├── module.json ├── package.json ├── packs └── exhaustion │ ├── 000057.ldb │ ├── 000064.log │ ├── CURRENT │ ├── LOCK │ ├── LOG │ ├── LOG.old │ ├── MANIFEST-000062 │ └── lost │ ├── 000022.log │ ├── 000051.log │ ├── MANIFEST-000020 │ └── MANIFEST-000049 ├── scripts ├── api.js ├── apps │ ├── promptRest.js │ ├── quickSetup.js │ ├── rest.js │ ├── saveProfile.js │ └── settings.js ├── constants.js ├── helpers.js ├── hooks.js ├── lib │ └── lib.js ├── migrations.js ├── module.js ├── plugins.js ├── rest-workflow.js ├── settings.js └── sheet-overrides.js ├── styles └── style.scss ├── templates ├── components │ ├── health-bar.hbs │ └── hit-die-roller.hbs ├── prompt-rest.hbs ├── quick-setup.hbs ├── rest.hbs ├── saveProfile │ ├── errors.hbs │ └── input.hbs ├── settings │ ├── header.hbs │ └── settings-tab.hbs └── steps │ ├── food-water.hbs │ ├── long-rest-default.hbs │ ├── short-rest-default.hbs │ ├── spell-recovery.hbs │ └── steps.hbs └── vite.config.mjs /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/README.md -------------------------------------------------------------------------------- /assets/exhaustion-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-1.svg -------------------------------------------------------------------------------- /assets/exhaustion-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-10.svg -------------------------------------------------------------------------------- /assets/exhaustion-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-2.svg -------------------------------------------------------------------------------- /assets/exhaustion-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-3.svg -------------------------------------------------------------------------------- /assets/exhaustion-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-4.svg -------------------------------------------------------------------------------- /assets/exhaustion-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-5.svg -------------------------------------------------------------------------------- /assets/exhaustion-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-6.svg -------------------------------------------------------------------------------- /assets/exhaustion-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-7.svg -------------------------------------------------------------------------------- /assets/exhaustion-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-8.svg -------------------------------------------------------------------------------- /assets/exhaustion-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion-9.svg -------------------------------------------------------------------------------- /assets/exhaustion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/assets/exhaustion.svg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/actor-traits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/actor-traits.md -------------------------------------------------------------------------------- /docs/all-together-now-v2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/all-together-now-v2.psd -------------------------------------------------------------------------------- /docs/all-together-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/all-together-now.png -------------------------------------------------------------------------------- /docs/all-together-now.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/all-together-now.psd -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/food-and-water-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/food-and-water-settings.md -------------------------------------------------------------------------------- /docs/general-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/general-settings.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/item-recognition-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/item-recognition-settings.md -------------------------------------------------------------------------------- /docs/long-rest-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/long-rest-settings.md -------------------------------------------------------------------------------- /docs/short-rest-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/short-rest-settings.md -------------------------------------------------------------------------------- /docs/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/docs/sidebar.md -------------------------------------------------------------------------------- /languages/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/languages/cs.json -------------------------------------------------------------------------------- /languages/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/languages/de.json -------------------------------------------------------------------------------- /languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/languages/en.json -------------------------------------------------------------------------------- /languages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/languages/fr.json -------------------------------------------------------------------------------- /languages/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/languages/pt_BR.json -------------------------------------------------------------------------------- /languages/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/languages/ru.json -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/package.json -------------------------------------------------------------------------------- /packs/exhaustion/000057.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/packs/exhaustion/000057.ldb -------------------------------------------------------------------------------- /packs/exhaustion/000064.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/exhaustion/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000062 2 | -------------------------------------------------------------------------------- /packs/exhaustion/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/exhaustion/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/packs/exhaustion/LOG -------------------------------------------------------------------------------- /packs/exhaustion/LOG.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/packs/exhaustion/LOG.old -------------------------------------------------------------------------------- /packs/exhaustion/MANIFEST-000062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/packs/exhaustion/MANIFEST-000062 -------------------------------------------------------------------------------- /packs/exhaustion/lost/000022.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/exhaustion/lost/000051.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/exhaustion/lost/MANIFEST-000020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/packs/exhaustion/lost/MANIFEST-000020 -------------------------------------------------------------------------------- /packs/exhaustion/lost/MANIFEST-000049: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/packs/exhaustion/lost/MANIFEST-000049 -------------------------------------------------------------------------------- /scripts/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/api.js -------------------------------------------------------------------------------- /scripts/apps/promptRest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/apps/promptRest.js -------------------------------------------------------------------------------- /scripts/apps/quickSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/apps/quickSetup.js -------------------------------------------------------------------------------- /scripts/apps/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/apps/rest.js -------------------------------------------------------------------------------- /scripts/apps/saveProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/apps/saveProfile.js -------------------------------------------------------------------------------- /scripts/apps/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/apps/settings.js -------------------------------------------------------------------------------- /scripts/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/constants.js -------------------------------------------------------------------------------- /scripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/helpers.js -------------------------------------------------------------------------------- /scripts/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/hooks.js -------------------------------------------------------------------------------- /scripts/lib/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/lib/lib.js -------------------------------------------------------------------------------- /scripts/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/migrations.js -------------------------------------------------------------------------------- /scripts/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/module.js -------------------------------------------------------------------------------- /scripts/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/plugins.js -------------------------------------------------------------------------------- /scripts/rest-workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/rest-workflow.js -------------------------------------------------------------------------------- /scripts/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/settings.js -------------------------------------------------------------------------------- /scripts/sheet-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/scripts/sheet-overrides.js -------------------------------------------------------------------------------- /styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/styles/style.scss -------------------------------------------------------------------------------- /templates/components/health-bar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/components/health-bar.hbs -------------------------------------------------------------------------------- /templates/components/hit-die-roller.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/components/hit-die-roller.hbs -------------------------------------------------------------------------------- /templates/prompt-rest.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/prompt-rest.hbs -------------------------------------------------------------------------------- /templates/quick-setup.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/quick-setup.hbs -------------------------------------------------------------------------------- /templates/rest.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/rest.hbs -------------------------------------------------------------------------------- /templates/saveProfile/errors.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/saveProfile/errors.hbs -------------------------------------------------------------------------------- /templates/saveProfile/input.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/saveProfile/input.hbs -------------------------------------------------------------------------------- /templates/settings/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/settings/header.hbs -------------------------------------------------------------------------------- /templates/settings/settings-tab.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/settings/settings-tab.hbs -------------------------------------------------------------------------------- /templates/steps/food-water.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/steps/food-water.hbs -------------------------------------------------------------------------------- /templates/steps/long-rest-default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/steps/long-rest-default.hbs -------------------------------------------------------------------------------- /templates/steps/short-rest-default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/steps/short-rest-default.hbs -------------------------------------------------------------------------------- /templates/steps/spell-recovery.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/steps/spell-recovery.hbs -------------------------------------------------------------------------------- /templates/steps/steps.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/templates/steps/steps.hbs -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roth-michael/FoundryVTT-RestRecovery/HEAD/vite.config.mjs --------------------------------------------------------------------------------