diff --git a/module/applications/sheets/rollTable/rollTable.mjs b/module/applications/sheets/rollTable/rollTable.mjs index 0b03a89a..fa0adf7e 100644 --- a/module/applications/sheets/rollTable/rollTable.mjs +++ b/module/applications/sheets/rollTable/rollTable.mjs @@ -1,4 +1,26 @@ //Setting RollTable -export default class DhRollTable extends foundry.applications.sheets.RollTableSheet{ +export default class DhRollTableSheet extends foundry.applications.sheets.RollTableSheet{ + static get PARTS() { + const parts= super.PARTS; + return{ + summary: { + template: "ournewmodifiedsummary.hbs" + }, + ...parts + }; + } + static actions = { + addAltFormula: DhRollTableSheet.#onAddAltFormula, + removeAltForuma: DhRollTableSheet.#onRemoveAltFormula + }; + //Add formulafield + static async #onAddAltFormula (event,target) { + + } + + //Remove formulafield + static async #onRemoveAltFormula (event,target) { + + } } \ No newline at end of file