Addnew sheets (armor, weapons, malefica) and v13 support
This commit is contained in:
28
module/applications/sheets/malefica-sheet.mjs
Normal file
28
module/applications/sheets/malefica-sheet.mjs
Normal file
@@ -0,0 +1,28 @@
|
||||
import HellbornItemSheet from "./base-item-sheet.mjs"
|
||||
|
||||
export default class HellbornMaleficaSheet extends HellbornItemSheet {
|
||||
/** @override */
|
||||
static DEFAULT_OPTIONS = {
|
||||
classes: ["malefica"],
|
||||
position: {
|
||||
width: 500,
|
||||
},
|
||||
window: {
|
||||
contentClasses: ["malefica-content"],
|
||||
},
|
||||
}
|
||||
|
||||
/** @override */
|
||||
static PARTS = {
|
||||
main: {
|
||||
template: "systems/fvtt-hellborn/templates/malefica.hbs",
|
||||
},
|
||||
}
|
||||
|
||||
/** @override */
|
||||
async _prepareContext() {
|
||||
const context = await super._prepareContext()
|
||||
context.enrichedDescription = await TextEditor.enrichHTML(this.document.system.description, { async: true })
|
||||
return context
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user