LeRatierBretonnien b4d6616cb4
All checks were successful
Release Creation / build (release) Successful in 58s
Foundry v13 migration
2025-05-14 10:02:08 +02:00

29 lines
721 B
JavaScript

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