forked from public/fvtt-cthulhu-eternal
22 lines
488 B
JavaScript
22 lines
488 B
JavaScript
import CthulhuEternalItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class CthulhuEternalMentalDisorderSheet extends CthulhuEternalItemSheet {
|
|
/** @override */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["mentaldisorder"],
|
|
position: {
|
|
width: 450,
|
|
},
|
|
window: {
|
|
contentClasses: ["mentaldisorder-content"],
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
static PARTS = {
|
|
main: {
|
|
template: "systems/fvtt-cthulhu-eternal/templates/mentaldisorder.hbs",
|
|
},
|
|
}
|
|
}
|