forked from public/fvtt-cthulhu-eternal
29 lines
690 B
JavaScript
29 lines
690 B
JavaScript
|
import CthulhuEternalItemSheet from "./base-item-sheet.mjs"
|
||
|
|
||
|
export default class CthulhuEternalInjurySheet extends CthulhuEternalItemSheet {
|
||
|
/** @override */
|
||
|
static DEFAULT_OPTIONS = {
|
||
|
classes: ["injury"],
|
||
|
position: {
|
||
|
width: 600,
|
||
|
},
|
||
|
window: {
|
||
|
contentClasses: ["injury-content"],
|
||
|
},
|
||
|
}
|
||
|
|
||
|
/** @override */
|
||
|
static PARTS = {
|
||
|
main: {
|
||
|
template: "systems/fvtt-cthulhu-eternal/templates/injury.hbs",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
/** @override */
|
||
|
async _prepareContext() {
|
||
|
const context = await super._prepareContext()
|
||
|
context.enrichedDescription = await TextEditor.enrichHTML(this.document.system.description, { async: true })
|
||
|
return context
|
||
|
}
|
||
|
}
|