31 lines
804 B
JavaScript
31 lines
804 B
JavaScript
import HellbornItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class HellbornTarotSheet extends HellbornItemSheet {
|
|
/** @override */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["tarot"],
|
|
position: {
|
|
width: 800,
|
|
height: 640
|
|
},
|
|
window: {
|
|
contentClasses: ["tarot-content"],
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
static PARTS = {
|
|
main: {
|
|
template: "systems/fvtt-hellborn/templates/tarot.hbs",
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
async _prepareContext() {
|
|
const context = await super._prepareContext()
|
|
context.enrichedPositiveEffect = await TextEditor.enrichHTML(this.document.system.positiveEffect, { async: true })
|
|
context.enrichedNegativeEffect = await TextEditor.enrichHTML(this.document.system.negativeEffect, { async: true })
|
|
return context
|
|
}
|
|
}
|