30 lines
753 B
JavaScript
30 lines
753 B
JavaScript
import LethalFantasyItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class LethalFantasyTalentSheet extends LethalFantasyItemSheet {
|
|
/** @override */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["talent"],
|
|
position: {
|
|
width: 600,
|
|
},
|
|
window: {
|
|
contentClasses: ["talent-content"],
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
static PARTS = {
|
|
main: {
|
|
template: "systems/fvtt-lethal-fantasy/templates/talent.hbs",
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
async _prepareContext() {
|
|
const context = await super._prepareContext()
|
|
context.enrichedDescription = await TextEditor.enrichHTML(this.document.system.improvedDescription, { async: true })
|
|
context.canProgress = this.document.system.canProgress
|
|
return context
|
|
}
|
|
}
|