mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
26 lines
No EOL
644 B
JavaScript
26 lines
No EOL
644 B
JavaScript
//Setting RollTable
|
|
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) {
|
|
|
|
}
|
|
} |