/** * Extend the basic ActorSheet with some very simple modifications * @extends {ActorSheet} */ import { MournbladeCYD2ActorSheet } from "./mournblade-cyd2-actor-sheet.js"; import { MournbladeCYD2Utility } from "./mournblade-cyd2-utility.js"; import { MournbladeCYD2Automation } from "./mournblade-cyd2-automation.js"; /* -------------------------------------------- */ export class MournbladeCYD2CreatureSheet extends MournbladeCYD2ActorSheet { /** @override */ static get defaultOptions() { return foundry.utils.mergeObject(super.defaultOptions, { classes: ["fvtt-mournblade-cyd2", "sheet", "actor"], template: "systems/fvtt-mournblade-cyd2/templates/creature-sheet.html", width: 640, height: 720, tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }], dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }], editScore: false }) } }