An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.
Go to file
2020-12-30 22:24:12 +01:00
.gitlab/issue_templates rename issue template 2020-12-23 14:15:56 +01:00
.vscode Make tests and implementation interact. 2020-12-30 21:28:22 +01:00
spec/support Add additional single-roll tests. 2020-12-30 22:19:36 +01:00
src Merge remote-tracking branch 'origin/master' into 007-rollsLib 2020-12-30 22:20:51 +01:00
.editorconfig switch to using TypeScript 2020-12-23 16:52:20 +01:00
.eslintrc.js add prettier and eslint 2020-12-23 17:26:53 +01:00
.gitignore simplify formatting 2020-12-23 18:27:46 +01:00
.gitlab-ci.yml Remove now obsolete test preScript. 2020-12-30 22:24:12 +01:00
.npmignore initial commit 2020-10-29 16:18:38 +01:00
.prettierrc.js add eslint and prettier 2020-12-23 18:23:26 +01:00
gulpfile.js format files 2020-12-23 17:14:02 +01:00
LICENSE add LICENSE 2020-12-23 18:30:06 +01:00
package-lock.json Make tests and implementation interact. 2020-12-30 21:28:22 +01:00
package.json Make tests and implementation interact. 2020-12-30 21:28:22 +01:00
README.md adjust README 2020-12-27 13:22:14 +01:00
tsconfig.json Make tests and implementation interact. 2020-12-30 21:28:22 +01:00

DS4

An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.

Prerequisites

In order to build this system, a recent version of npm is required.

Building

To build the system, first install all required dependencies:

npm install

Then build the project by running

npm run build

If you'd like the built system to be automatically linked to your local Foundry VTT installation's data folder, add a file called foundryconfig.json to the project root with the following contents:

{
    "dataPath": "/<absolute path to your home>/.local/share/FoundryVTT",
    "repository": "",
    "rawURL": ""
}

Then run

npm run link

If you want the system to be continuously build upon every saved change, just run

npm run build:watch