something to mess with

This commit is contained in:
Nikhil Nagarajan 2026-01-14 16:37:13 -05:00
parent ef45240c51
commit a0f1441373

View file

@ -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) {
}
}