greedyj4ck / DEGENESIS-FoundryVTT

DEGENESIS: Rebirth system for Foundry Virtual Tabletop
26 stars 22 forks source link
degenesis foundry js rpg vtt

DEGENESIS: Rebirth for Foundry VTT

CurrentIssues GitHub release (latest by date)

CourtOfThePiast

An unoffical, community-supported system for playing Degenesis on Foundry VTT.

Degenesis® is ™ SIXMOREVODKA Studio GmbH. All rights reserved. This module contains information and graphics from Katharsys that have been used with permission from the publisher. All used content from the handbook belong to the respective authors.

WARNING: Data compendiums (/packs folder) are hosted as a submodule in https://github.com/greedyj4ck/degenesis-db/ and are included in the zip releases, but if you download the source code you have to fetch them (either by cloning/pulling with --recurse-submodules flag on git or manually if you're downloading the source code that way).

Credits

If you have worked on or contributed to the translation of the system and you are not on the list - please write a message.

Artwork

Default world background Potentials by Claudiu-Antoniu Magherusan https://www.artstation.com/artwork/PmA5aB
Github banner Homo Degenesis by Marko Djurdjevic https://www.sixmorevodka.com/
Skull from THE JACKAL'S PROPHECY https://www.youtube.com/watch?v=6y1kQFN5zB0

COMPENDIUM BANNERS

Work in progress disclaimer

The system module represented is not in its final version. Functionality and content will be subject to change.

System.json manifest

https://github.com/greedyj4ck/DEGENESIS-FoundryVTT/releases/latest/download/system.json

Developer Installation

Live SASS Compiler settings

The new version of the system uses SCSS to compile the resulting CSS file. We recommend using VSCode with the Live SASS Compiler extension installed and the following settings.

Insert settings inside .vscode/settings.json
{
  "liveSassCompile.settings.formats": [
    {
      "format": "expanded",
      "extensionName": ".css",
      "savePath": "/styles"
    }
  ],
  "liveSassCompile.settings.excludeList": ["**/node_modules/**", ".vscode/**"],
  "liveSassCompile.settings.generateMap": false,
  //autoprefix, will auto add perfix like -webkit- -moz-..
  "liveSassCompile.settings.autoprefix": ["> 1%", "last 2 versions"]
}