daggerheart/module/applications/sheets/rollTables/rollTable.mjs
WBHarry 38dd2993a1 .
2026-01-14 23:04:20 +01:00

22 lines
641 B
JavaScript

//Setting RollTable
export default class DhRollTableSheet extends foundry.applications.sheets.RollTableSheet {
static get PARTS() {
const parts = super.PARTS;
return {
summary: {
template: 'templates\sheets\rollTable\summary.hbs'
},
...parts
};
}
static actions = {
addAltFormula: DhRollTableSheet.#onAddAltFormula,
removeAltForuma: DhRollTableSheet.#onRemoveAltFormula
};
//Add formulafield
static async #onAddAltFormula(event, target) {}
//Remove formulafield
static async #onRemoveAltFormula(event, target) {}
}