fvtt-cthulhu-eternal/module/applications/sheets/mentaldisorder-sheet.mjs
LeRatierBretonnien 36279aa6eb
Some checks failed
Release Creation / build (release) Failing after 53s
Foundry v13 migration
2025-05-09 22:41:08 +02:00

30 lines
762 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",
},
}
/** @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
}
}