Files
2026-03-05 21:51:31 +01:00

18 lines
391 B
JavaScript

import AwEItemSheet from "./base-item-sheet.mjs"
export default class AwEKitSheet extends AwEItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["kit"],
position: { width: 620 },
window: { contentClasses: ["kit-content"] }
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-adventures-with-emmy/templates/kit.hbs"
}
}
}