Files
fvtt-hellborn/module/applications/sheets/equipment-sheet.mjs
2025-05-25 17:41:32 +02:00

29 lines
716 B
JavaScript

import HellbornItemSheet from "./base-item-sheet.mjs"
export default class HellbornEquipmentSheet extends HellbornItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["equipment"],
position: {
width: 500,
},
window: {
contentClasses: ["equipment-content"],
},
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-hellborn/templates/equipment.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
}
}