From d5b8d106caa009f046289b4c9f2a742cd5d6b71e Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 19 Nov 2023 22:23:55 -0700 Subject: [PATCH] Begin work on a non-functional character sheet registration --- dotdungeon.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 dotdungeon.mjs diff --git a/dotdungeon.mjs b/dotdungeon.mjs new file mode 100644 index 0000000..5909391 --- /dev/null +++ b/dotdungeon.mjs @@ -0,0 +1,8 @@ +Hooks.once(`init`, () => { + Actors.unregisterSheet("core", ActorSheet); + Actors.registerSheet("dotdungeon", applications.actor.ActorSheet5eCharacter, { + types: ["pc", "pug"], + makeDefault: true, + label: "DND5E.SheetClassCharacter" + }); +}) \ No newline at end of file