├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── checks.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .versionrc.js ├── .vscode └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gulpfile.js ├── jest-unit.config.json ├── jest.config.js ├── manifest-version-updater.js ├── package.json ├── rollup.config.js ├── src ├── lang │ └── en.json ├── module.json ├── module │ ├── actor │ │ ├── convert.ts │ │ ├── handleInput.ts │ │ ├── interfaces.ts │ │ ├── parserTypes.ts │ │ ├── parsers │ │ │ ├── available.ts │ │ │ ├── generic.ts │ │ │ ├── index.ts │ │ │ ├── typeGuardParserRunners.ts │ │ │ └── wtcTextBlock.ts │ │ └── templates │ │ │ └── fifthedition.ts │ ├── constants.ts │ ├── formatters.ts │ ├── foundryvtt-importer.ts │ ├── game │ │ └── index.ts │ ├── guards │ │ └── game.ts │ ├── importActorForm.ts │ ├── importForm.ts │ ├── importGenericForm.ts │ ├── importItemForm.ts │ ├── importJournalForm.ts │ ├── importTableForm.ts │ ├── item │ │ ├── compendium │ │ │ ├── interfaces.ts │ │ │ └── item.ts │ │ ├── convert.ts │ │ ├── handleInput.ts │ │ ├── interfaces.ts │ │ ├── parsers │ │ │ ├── available.ts │ │ │ ├── index.ts │ │ │ └── textBlock.ts │ │ ├── process.ts │ │ └── typeGuardParserRunners.ts │ ├── journal │ │ ├── builder │ │ │ ├── api.ts │ │ │ ├── index.ts │ │ │ └── textBlock.ts │ │ ├── index.ts │ │ ├── parsers │ │ │ ├── index.ts │ │ │ ├── multipleTextBlocks.ts │ │ │ ├── pdfJson.ts │ │ │ └── textBlock.ts │ │ └── routes │ │ │ ├── index.ts │ │ │ └── journalFromJson.ts │ ├── preloadTemplates.ts │ ├── renderSidebarButtons.ts │ ├── settings.ts │ └── table │ │ ├── lineManipulators.ts │ │ ├── parse.ts │ │ ├── process.ts │ │ ├── reddit.ts │ │ └── stringInspectors.ts ├── styles │ └── foundryvtt-importer.css └── templates │ ├── importActorForm.hbs │ ├── importItemForm.hbs │ ├── importJournalForm.hbs │ └── importTableForm.hbs ├── test ├── actor │ ├── __fixtures__ │ │ ├── abolethObserver.ts │ │ ├── abolethSpells.ts │ │ ├── arakocra.ts │ │ ├── augustRooster.ts │ │ ├── bigBara.ts │ │ ├── chevraGlist.ts │ │ ├── gigglesTheClown.ts │ │ ├── goblin.ts │ │ ├── goblinBoss.ts │ │ ├── goblinCutpurse.ts │ │ ├── goblinPotionVendor.ts │ │ ├── goblinSniper.ts │ │ ├── goblinSpinecleaver.ts │ │ ├── greenDragon.ts │ │ ├── halflingMageChef.ts │ │ ├── helmedHorror.ts │ │ ├── humanGuard.ts │ │ ├── kipTheWarlord.ts │ │ ├── multiLineSwashbuckler.ts │ │ ├── niblewright.ts │ │ ├── onceEliasCrueltyOfTheAncient.ts │ │ ├── queenBargnot.ts │ │ ├── shiftingHulk.ts │ │ ├── spythronarSac.ts │ │ ├── swashbuckler.ts │ │ ├── theral.ts │ │ └── zathuraSwashbuckler.ts │ ├── convert.test.ts │ ├── parsers.test.ts │ └── parsers │ │ └── wtcTextBlocks.test.ts ├── item.process.test.ts ├── item.weapon.test.ts ├── item │ └── parsers │ │ └── textBlock.test.ts ├── journal │ └── parsers │ │ ├── multipleTextBlocks.test.ts │ │ ├── pdfJson.test.ts │ │ └── textBlock.test.ts ├── mock.spythronarsac.ts ├── mock.swashbuckler.ts ├── table │ ├── process.test.ts │ └── reddit.test.ts └── tsconfig.test.json ├── tsconfig.eslint.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.versionrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.versionrc.js -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jest-unit.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/jest-unit.config.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest-version-updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/manifest-version-updater.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module.json -------------------------------------------------------------------------------- /src/module/actor/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/convert.ts -------------------------------------------------------------------------------- /src/module/actor/handleInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/handleInput.ts -------------------------------------------------------------------------------- /src/module/actor/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/interfaces.ts -------------------------------------------------------------------------------- /src/module/actor/parserTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/parserTypes.ts -------------------------------------------------------------------------------- /src/module/actor/parsers/available.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/parsers/available.ts -------------------------------------------------------------------------------- /src/module/actor/parsers/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/parsers/generic.ts -------------------------------------------------------------------------------- /src/module/actor/parsers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/parsers/index.ts -------------------------------------------------------------------------------- /src/module/actor/parsers/typeGuardParserRunners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/parsers/typeGuardParserRunners.ts -------------------------------------------------------------------------------- /src/module/actor/parsers/wtcTextBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/parsers/wtcTextBlock.ts -------------------------------------------------------------------------------- /src/module/actor/templates/fifthedition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/actor/templates/fifthedition.ts -------------------------------------------------------------------------------- /src/module/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/constants.ts -------------------------------------------------------------------------------- /src/module/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/formatters.ts -------------------------------------------------------------------------------- /src/module/foundryvtt-importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/foundryvtt-importer.ts -------------------------------------------------------------------------------- /src/module/game/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/game/index.ts -------------------------------------------------------------------------------- /src/module/guards/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/guards/game.ts -------------------------------------------------------------------------------- /src/module/importActorForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/importActorForm.ts -------------------------------------------------------------------------------- /src/module/importForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/importForm.ts -------------------------------------------------------------------------------- /src/module/importGenericForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/importGenericForm.ts -------------------------------------------------------------------------------- /src/module/importItemForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/importItemForm.ts -------------------------------------------------------------------------------- /src/module/importJournalForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/importJournalForm.ts -------------------------------------------------------------------------------- /src/module/importTableForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/importTableForm.ts -------------------------------------------------------------------------------- /src/module/item/compendium/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/compendium/interfaces.ts -------------------------------------------------------------------------------- /src/module/item/compendium/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/compendium/item.ts -------------------------------------------------------------------------------- /src/module/item/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/convert.ts -------------------------------------------------------------------------------- /src/module/item/handleInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/handleInput.ts -------------------------------------------------------------------------------- /src/module/item/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/interfaces.ts -------------------------------------------------------------------------------- /src/module/item/parsers/available.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/parsers/available.ts -------------------------------------------------------------------------------- /src/module/item/parsers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './available'; 2 | -------------------------------------------------------------------------------- /src/module/item/parsers/textBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/parsers/textBlock.ts -------------------------------------------------------------------------------- /src/module/item/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/process.ts -------------------------------------------------------------------------------- /src/module/item/typeGuardParserRunners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/item/typeGuardParserRunners.ts -------------------------------------------------------------------------------- /src/module/journal/builder/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/builder/api.ts -------------------------------------------------------------------------------- /src/module/journal/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/builder/index.ts -------------------------------------------------------------------------------- /src/module/journal/builder/textBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/builder/textBlock.ts -------------------------------------------------------------------------------- /src/module/journal/index.ts: -------------------------------------------------------------------------------- 1 | export { processInputJSON } from './routes/journalFromJson'; 2 | -------------------------------------------------------------------------------- /src/module/journal/parsers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/parsers/index.ts -------------------------------------------------------------------------------- /src/module/journal/parsers/multipleTextBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/parsers/multipleTextBlocks.ts -------------------------------------------------------------------------------- /src/module/journal/parsers/pdfJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/parsers/pdfJson.ts -------------------------------------------------------------------------------- /src/module/journal/parsers/textBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/parsers/textBlock.ts -------------------------------------------------------------------------------- /src/module/journal/routes/index.ts: -------------------------------------------------------------------------------- 1 | export { processInputJSON } from './journalFromJson'; 2 | -------------------------------------------------------------------------------- /src/module/journal/routes/journalFromJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/journal/routes/journalFromJson.ts -------------------------------------------------------------------------------- /src/module/preloadTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/preloadTemplates.ts -------------------------------------------------------------------------------- /src/module/renderSidebarButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/renderSidebarButtons.ts -------------------------------------------------------------------------------- /src/module/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/settings.ts -------------------------------------------------------------------------------- /src/module/table/lineManipulators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/table/lineManipulators.ts -------------------------------------------------------------------------------- /src/module/table/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/table/parse.ts -------------------------------------------------------------------------------- /src/module/table/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/table/process.ts -------------------------------------------------------------------------------- /src/module/table/reddit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/table/reddit.ts -------------------------------------------------------------------------------- /src/module/table/stringInspectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/module/table/stringInspectors.ts -------------------------------------------------------------------------------- /src/styles/foundryvtt-importer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/styles/foundryvtt-importer.css -------------------------------------------------------------------------------- /src/templates/importActorForm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/templates/importActorForm.hbs -------------------------------------------------------------------------------- /src/templates/importItemForm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/templates/importItemForm.hbs -------------------------------------------------------------------------------- /src/templates/importJournalForm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/templates/importJournalForm.hbs -------------------------------------------------------------------------------- /src/templates/importTableForm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/src/templates/importTableForm.hbs -------------------------------------------------------------------------------- /test/actor/__fixtures__/abolethObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/abolethObserver.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/abolethSpells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/abolethSpells.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/arakocra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/arakocra.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/augustRooster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/augustRooster.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/bigBara.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/bigBara.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/chevraGlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/chevraGlist.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/gigglesTheClown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/gigglesTheClown.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/goblin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/goblin.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/goblinBoss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/goblinBoss.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/goblinCutpurse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/goblinCutpurse.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/goblinPotionVendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/goblinPotionVendor.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/goblinSniper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/goblinSniper.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/goblinSpinecleaver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/goblinSpinecleaver.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/greenDragon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/greenDragon.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/halflingMageChef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/halflingMageChef.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/helmedHorror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/helmedHorror.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/humanGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/humanGuard.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/kipTheWarlord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/kipTheWarlord.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/multiLineSwashbuckler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/multiLineSwashbuckler.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/niblewright.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/niblewright.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/onceEliasCrueltyOfTheAncient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/onceEliasCrueltyOfTheAncient.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/queenBargnot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/queenBargnot.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/shiftingHulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/shiftingHulk.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/spythronarSac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/spythronarSac.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/swashbuckler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/swashbuckler.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/theral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/theral.ts -------------------------------------------------------------------------------- /test/actor/__fixtures__/zathuraSwashbuckler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/__fixtures__/zathuraSwashbuckler.ts -------------------------------------------------------------------------------- /test/actor/convert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/convert.test.ts -------------------------------------------------------------------------------- /test/actor/parsers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/parsers.test.ts -------------------------------------------------------------------------------- /test/actor/parsers/wtcTextBlocks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/actor/parsers/wtcTextBlocks.test.ts -------------------------------------------------------------------------------- /test/item.process.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/item.process.test.ts -------------------------------------------------------------------------------- /test/item.weapon.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/item.weapon.test.ts -------------------------------------------------------------------------------- /test/item/parsers/textBlock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/item/parsers/textBlock.test.ts -------------------------------------------------------------------------------- /test/journal/parsers/multipleTextBlocks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/journal/parsers/multipleTextBlocks.test.ts -------------------------------------------------------------------------------- /test/journal/parsers/pdfJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/journal/parsers/pdfJson.test.ts -------------------------------------------------------------------------------- /test/journal/parsers/textBlock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/journal/parsers/textBlock.test.ts -------------------------------------------------------------------------------- /test/mock.spythronarsac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/mock.spythronarsac.ts -------------------------------------------------------------------------------- /test/mock.swashbuckler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/mock.swashbuckler.ts -------------------------------------------------------------------------------- /test/table/process.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/table/process.test.ts -------------------------------------------------------------------------------- /test/table/reddit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/table/reddit.test.ts -------------------------------------------------------------------------------- /test/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/test/tsconfig.test.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanJWright/foundryvtt-importer/HEAD/tsconfig.json --------------------------------------------------------------------------------