37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import { BaseItemSheetL5r5e } from "./base-item-sheet.js";
|
|
|
|
/**
|
|
* Sheet for Mystère items (Chiaroscuro).
|
|
* @extends {BaseItemSheetL5r5e}
|
|
*/
|
|
export class MystereSheetL5r5e extends BaseItemSheetL5r5e {
|
|
/** @override */
|
|
static get defaultOptions() {
|
|
return foundry.utils.mergeObject(super.defaultOptions, {
|
|
classes: ["l5r5e", "sheet", "mystere"],
|
|
template: CONFIG.l5r5e.paths.templates + "items/mystere/mystere-sheet.html",
|
|
width: 500,
|
|
height: 380,
|
|
});
|
|
}
|
|
|
|
/** @override */
|
|
async getData(options = {}) {
|
|
const sheetData = await super.getData(options);
|
|
|
|
sheetData.data.mystereTypes = [
|
|
{ id: "mineur", label: game.i18n.localize("chiaroscuro.mystere.mineur") },
|
|
{ id: "majeur", label: game.i18n.localize("chiaroscuro.mystere.majeur") },
|
|
];
|
|
|
|
sheetData.data.enrichedHtml = {
|
|
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(
|
|
sheetData.data.system.description ?? "",
|
|
{ async: true }
|
|
),
|
|
};
|
|
|
|
return sheetData;
|
|
}
|
|
}
|