All checks were successful
Release Creation / build (release) Successful in 58s
30 lines
730 B
JavaScript
30 lines
730 B
JavaScript
import LethalFantasyItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class LethalFantasyMiracleSheet extends LethalFantasyItemSheet {
|
|
/** @override */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["miracle"],
|
|
position: {
|
|
width: 450,
|
|
},
|
|
window: {
|
|
contentClasses: ["miracle-content"],
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
static PARTS = {
|
|
main: {
|
|
template: "systems/fvtt-lethal-fantasy/templates/miracle.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
|
|
}
|
|
|
|
}
|