An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.
Go to file
2021-01-03 16:40:29 +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 Fix jasmine imports/symbol visibility. 2020-12-31 02:29:27 +01:00
src adjust licensing 2020-12-31 05:02:38 +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 Create explicit ci test task. 2020-12-30 22:41:55 +01:00
.gitlab-ci.yml Add 'run'. 2020-12-30 22:46:01 +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 adjust licensing 2020-12-31 05:02:38 +01:00
package-lock.json Add test result report. 2020-12-30 22:37:34 +01:00
package.json Add email addresses in package.json 2021-01-03 16:38:33 +01:00
README.md adjust README 2021-01-03 16:40:29 +01:00
tsconfig.json Fix jasmine imports/symbol visibility. 2020-12-31 02:29:27 +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

Licensing

Dungeonslayers (© Christian Kennig) is licensed under CC BY-NC-SA 3.0.

The icons in src/assets/official are slightly modifed versions of original Dungeonslayers icons, which have also been published under CC BY-NC-SA 3.0. Hence the modified icons are also published under this license. A copy of this license can be found under src/assets/official/LICENSE.

The rest of this project is licensed under the MIT License, a copy of which can be found under LICENSE.