Skip to content

Instantly share code, notes, and snippets.

@dmoisset
Created August 7, 2021 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmoisset/3c014879fd2275096fb9e58598788fbb to your computer and use it in GitHub Desktop.
Save dmoisset/3c014879fd2275096fb9e58598788fbb to your computer and use it in GitHub Desktop.
Add extra skill to 5e system in FoundryVTT
import { DND5E } from "../../../systems/dnd5e/module/config.js";
// Update list of skills
DND5E.skills.eng = "Engineering";
Hooks.once("init", function () {
game.system.model.Actor.character.skills.eng = {value: 0, ability: "int"};
});
// This seems to work. are there any issues?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment