Files
fvtt-hellborn/module/applications/sheets/ritual-sheet.mjs
2025-05-25 17:41:32 +02:00

30 lines
705 B
JavaScript

import HellbornItemSheet from "./base-item-sheet.mjs"
export default class HellbornRitualSheet extends HellbornItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["ritual"],
position: {
width: 600,
},
window: {
contentClasses: ["ritual-content"],
},
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-hellborn/templates/ritual.hbs",
},
}
/** @override */
async _prepareContext() {
const context = await super._prepareContext()
context.enrichedDescription = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.document.system.description, { async: true })
return context
}
}