Created
August 7, 2021 10:22
-
-
Save dmoisset/3c014879fd2275096fb9e58598788fbb to your computer and use it in GitHub Desktop.
Add extra skill to 5e system in FoundryVTT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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