18 lines
391 B
JavaScript
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"
|
|
}
|
|
}
|
|
}
|