An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.
Go to file
Gesina Schwalbe 2ac6d3a919 working weapons section in char sheet
Additions:
- re-added getData() method of actor sheet for sorted items
- added an item-description CSS class for handling of overflow
- added a 1.5 CSS flex box

Changes:
- restricted previous sample items section to only weapons
  (to be re-used for other item types)

Fixes:
- fixed input types in weapon sheet
2020-12-29 01:44:54 +01:00
.gitlab/issue_templates rename issue template 2020-12-23 14:15:56 +01:00
src working weapons section in char sheet 2020-12-29 01:44:54 +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 gitlab-ci: remove testing stuff 2020-12-28 00:15:53 +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 Update to new data bindings, everythings an interface now. 2020-12-28 17:34:40 +01:00
package.json use fork of foundry-pc-types 2020-12-28 16:50:32 +01:00
README.md adjust README 2020-12-27 13:22:14 +01:00
tsconfig.json format files 2020-12-23 17:14:02 +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