This is the Broken Compass system for FoundryVTT based on the TTRPG from Two Little Mice. Take a look at the great work from Two Little Mice: https://twolittlemice.net/brokencompass/
The BrokenCompass game system is not usable standalone. This system does not contain any copyrighted content or rules. To play this game, get a copy of the core rulebook from the official store.
Manifest URL: https://github.com/anvil-vtt/BrokenCompass/releases/latest/download/system.json
For manual installation, use the provided manifest URL in the "Install System" popup window while managing game systems.
Command | Description |
---|---|
npm install |
Install/Update node modules after new dependencies were added by other developers |
npm install --save-dev <package-name> |
Installs a new node module and saves it as a dev-dependency (inside package.json) |
npm run build |
Builds the project and puts everything inside dist |
npm run watch |
Same as npm run build but watches for changes and rebuilds automatically |
npm run start |
Starts the webpack dev-server on port 8080 which allows developers to use HMR |
npm run prettier |
Checks if every file is formatted in the right way |
npm run prettier:fix |
Automatically fixes the code style for most files inside the project |
- Ensure that Node.js is installed (version requirement 14+)
- Download the linux version of FoundryVTT
- Extract the downloaded archive, e.g. to
~/foundryvtt/
- Create an empty data folder, e.g
~/foundryvttdata/
- Start FoundryVTT from your console via
node ~/foundryvtt/resources/app/main.js --dataPath=$HOME/foundryvttdata
- Ensure that Node.js is installed (version requirement 14+)
- Download the linux version of FoundryVTT
- Extract the downloaded archive, e.g. to
D:\foundryvtt\
- Create an empty data folder, e.g
D:\foundryvttdata\
- Start FoundryVTT from your console via
C:\Program Files\nodejs\node.exe D:\foundryvtt\resources\app\main.js --dataPath=D:\foundryvttdata\
- Request write access to the repository or fork the project
- Clone the repository, e.g. via console
git clone [email protected]:anvil-vtt/BrokenCompass.git ~/BrokenCompass
cd ~/foundryvttdata/Data/systems
- When using build/watch:
ln -s ~/BrokenCompass/dist/ brokencompass
- When using the webpack devserver:
ln -s ~/BrokenCompass/system/ brokencompass
cd D:\foundryvttdata\Data\systems
- When using build/watch:
mklink /d D:\foundryvttdata\Data\systems\brokencompass D:\BrokenCompass\dist
- When using the webpack devserver:
mklink /d D:\foundryvttdata\Data\systems\brokencompass D:\BrokenCompass\system
MIT License
Copyright (c) 2021 Patrick Bauer and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.