From 9f45ba54ab0a8097ae63e5f71cd82a35320dda71 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Mon, 20 Nov 2023 23:09:41 -0700 Subject: [PATCH] Add the base class definition for the PC sheet --- module/sheets/pc.mjs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 module/sheets/pc.mjs diff --git a/module/sheets/pc.mjs b/module/sheets/pc.mjs new file mode 100644 index 0000000..452b4f7 --- /dev/null +++ b/module/sheets/pc.mjs @@ -0,0 +1,15 @@ +/** + * Extend the basic ActorSheet with some very simple modifications + * @extends {ActorSheet} + */ +export class ActorSheetPC extends ActorSheet { + static get defaultOptions() { + return mergeObject( + super.defaultOptions, + { + classes: ["dotdungeon", "sheet", "actor"], + template: "systems/dotdungeon/templates/actors/character-sheet-mvp.hbs" + } + ); + }; +} \ No newline at end of file