fvtt-lethal-fantasy/.history/module/applications/sheets/miracle-sheet_20241209151239.mjs
2024-12-17 07:09:20 +01:00

22 lines
450 B
JavaScript

import LethalFantasyItemSheet from "./base-item-sheet.mjs"
export default class LethalFantasyMiracleSheet extends LethalFantasyItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["spell"],
position: {
width: 450,
},
window: {
contentClasses: ["spell-content"],
},
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-lethal-fantasy/templates/spell.hbs",
},
}
}