22 lines
448 B
JavaScript
22 lines
448 B
JavaScript
import LethalFantasyItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class LethalFantasySpellSheet 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",
|
|
},
|
|
}
|
|
}
|