├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── assets ├── journal-example.webp ├── narrator-tools.webp └── scenery-tool.webp ├── compatibility └── chat-commands-lib.js ├── context-menu.min.css ├── context-menu.min.js ├── global.d.ts ├── lang ├── cn.json ├── de.json ├── en.json ├── es.json ├── fr.json ├── it.json ├── ja.json ├── ko.json ├── pl.json ├── pt-BR.json ├── ru.json └── th.json ├── module.json ├── narrator.css ├── narrator.ts ├── package.json ├── packs └── macros.db ├── releases.md ├── scripts └── foundry-release.ts ├── templates └── config.html └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/README.md -------------------------------------------------------------------------------- /assets/journal-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/assets/journal-example.webp -------------------------------------------------------------------------------- /assets/narrator-tools.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/assets/narrator-tools.webp -------------------------------------------------------------------------------- /assets/scenery-tool.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/assets/scenery-tool.webp -------------------------------------------------------------------------------- /compatibility/chat-commands-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/compatibility/chat-commands-lib.js -------------------------------------------------------------------------------- /context-menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/context-menu.min.css -------------------------------------------------------------------------------- /context-menu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/context-menu.min.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/global.d.ts -------------------------------------------------------------------------------- /lang/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/cn.json -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/it.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/ko.json -------------------------------------------------------------------------------- /lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/pl.json -------------------------------------------------------------------------------- /lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/pt-BR.json -------------------------------------------------------------------------------- /lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/ru.json -------------------------------------------------------------------------------- /lang/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/lang/th.json -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/module.json -------------------------------------------------------------------------------- /narrator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/narrator.css -------------------------------------------------------------------------------- /narrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/narrator.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/package.json -------------------------------------------------------------------------------- /packs/macros.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/packs/macros.db -------------------------------------------------------------------------------- /releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/releases.md -------------------------------------------------------------------------------- /scripts/foundry-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/scripts/foundry-release.ts -------------------------------------------------------------------------------- /templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/templates/config.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elizeuangelo/fvtt-module-narrator-tools/HEAD/tsconfig.json --------------------------------------------------------------------------------