Update location of sheets to keep them more organized

This commit is contained in:
Oliver-Akins 2024-02-04 20:04:26 -07:00
parent 6fbb480f83
commit e284529a45
5 changed files with 7 additions and 5 deletions

View file

@ -0,0 +1,35 @@
import { GenericItemSheet } from "./GenericItemSheet.mjs";
export class AspectSheet extends GenericItemSheet {
static get defaultOptions() {
let opts = mergeObject(
super.defaultOptions,
{
template: `systems/dotdungeon/templates/items/aspect.hbs`,
width: 280,
height: 340,
}
);
opts.classes.push(`dotdungeon`);
return opts;
};
activateListeners(html) {
super.activateListeners(html);
if (!this.isEditable) return;
console.debug(`.dungeon | Adding event listeners for Item: ${this.id}`);
};
async getData() {
const ctx = {};
const item = this.item;
ctx.item = item;
ctx.system = item.system;
ctx.flags = item.flags;
console.log(item.uuid, `context:`, ctx);
return ctx;
};
};