Skip to content

greedyj4ck/DEGENESIS-FoundryVTT

Repository files navigation

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

  • Code and UI authors:
    • Moo Man (Moo Man#7518)
    • Darkhan (Darkhan#1534)
    • ClemEvilzz (societe simulator#2110)
    • KristjanLaane
    • Greedyj4ck (greedyjack)
  • Item packs icons:
    • Renart de Maupertuis (Renart de Maupertuis#1302)
    • Pablo Ruiz Valls (Pabruva#1968)
    • Greedyj4ck (GЯΣΣDYJΛCK#2690)
    • Calion (calion16)
  • Translations:
    • Meldinov
    • Herugrim (Herugrim#3880)
    • Pablo Ruiz Valls (Pabruva#1968)
    • Hozon - Nico (Hozon#7832)
    • Calion (calion16)
    • Dentatum (.dentatum)
    • diskordanz (diskordanz)

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

  • Git clone the repo. Use --recurse-submodules flag to get the packs.
  • Rename the directory to "degenesis" under your Foundry Data/systems directory.

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"]
}