125 lines
3.7 KiB
Markdown
125 lines
3.7 KiB
Markdown
# DS4
|
|
|
|
An implementation of the Dungeonslayers 4 game system for [Foundry Virtual
|
|
Tabletop].
|
|
|
|
This system provides sheet support for Actors and Items and mechanical support
|
|
for dice and rules necessary to play games of Dungeonslayers 4.
|
|
|
|
## Installation
|
|
|
|
To install and use the Dungeonslayers 4 system for Foundry Virtual Tabletop,
|
|
simply paste the following URL into the **Install System** dialog on the Setup
|
|
menu of the application.
|
|
|
|
https://git.f3l.de/dungeonslayers/ds4/-/raw/latest/src/system.json?inline=false
|
|
|
|
## Development
|
|
|
|
### Prerequisites
|
|
|
|
In order to build this system, recent versions of `node` and `yarn` are
|
|
required. Most likely using `npm` also works but only `yarn` is officially
|
|
supported. We recommend using the latest lts version of `node`, which is
|
|
`v14.15.5` at the time of writing. If you use `nvm` to manage your `node`
|
|
versions, you can simply run
|
|
|
|
```
|
|
nvm install
|
|
```
|
|
|
|
in the project's root directory.
|
|
|
|
You also need to install the the project's dependencies. To do so, run
|
|
|
|
```
|
|
yarn install
|
|
```
|
|
|
|
### Building
|
|
|
|
You can build the project by running
|
|
|
|
```
|
|
yarn build
|
|
```
|
|
|
|
Alternatively, you can run
|
|
|
|
```
|
|
yarn build:watch
|
|
```
|
|
|
|
to watch for changes and automatically build as necessary.
|
|
|
|
### Linking the built system to Foundry VTT
|
|
|
|
In order to provide a fluent development experience, it is recommended to link
|
|
the built system to your local Foundry VTT installation's data folder. In order
|
|
to do so, first add a file called `foundryconfig.json` to the project root with
|
|
the following content:
|
|
|
|
```
|
|
{
|
|
"dataPath": "<path to your home directory>/.local/share/FoundryVTT"
|
|
}
|
|
```
|
|
|
|
On platforms other than Linux you need to adjust the path accordingly.
|
|
|
|
Then run
|
|
|
|
```
|
|
yarn link-project
|
|
```
|
|
|
|
### Running the tests
|
|
|
|
You can run the tests with the following command:
|
|
|
|
```
|
|
yarn test
|
|
```
|
|
|
|
## Contributing
|
|
|
|
Code and content contributions are accepted. Please feel free to submit issues
|
|
to the issue tracker or submit merge requests for code changes. To create an
|
|
issue, send a mail to [git+dungeonslayers-ds4-155-issue-@git.f3l.de].
|
|
|
|
## Licensing
|
|
|
|
[Dungeonslayers] (© Christian Kennig) is licensed
|
|
under [CC BY-NC-SA 3.0].
|
|
|
|
The icons in [src/assets/icons/official] are slightly
|
|
modified 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/icons/official/LICENSE].
|
|
|
|
Similarly, the compendium packs found in [src/packs] are based on Dungeonslayers
|
|
and thus are also released under CC BY-NC-SA 3.0.
|
|
|
|
The icons in [src/assets/icons/game-icons] have
|
|
been published on https://game-icons.net/. You can find a list of the icons with
|
|
their corresponding authors and licenses at
|
|
[src/assets/icons/game-icons/authors.md].
|
|
|
|
The images in [src/assets/tokens/devins-token-packs] have been published on
|
|
https://immortalnights.com/product/all-free-tokens-in-one-file/. You can find
|
|
the "Token Usage Rights" under https://immortalnights.com/tokens/token-usage-rights/
|
|
|
|
The software component of this project is licensed under the MIT License, a copy
|
|
of which can be found under [LICENSE](LICENSE).
|
|
|
|
[Foundry Virtual Tabletop]: http://foundryvtt.com
|
|
[git+dungeonslayers-ds4-155-issue-@git.f3l.de]: mailto:git+dungeonslayers-ds4-155-issue-@git.f3l.de
|
|
[CC BY-NC-SA 3.0]: https://creativecommons.org/licenses/by-nc-sa/3.0/de/deed.en
|
|
[Dungeonslayers]: http://dungeonslayers.de/
|
|
[src/assets/icons/official]: src/assets/icons/official
|
|
[src/assets/icons/official/LICENSE]: src/assets/icons/official/LICENSE
|
|
[src/packs]: src/packs
|
|
[src/assets/icons/game-icons]: src/assets/icons/game-icons
|
|
[src/assets/icons/game-icons/authors.md]: src/assets/icons/game-icons/authors.md
|
|
[src/assets/tokens/devins-token-packs]: src/assets/tokens/devins-token-pack
|