mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
.
This commit is contained in:
parent
e1d89999d7
commit
38dd2993a1
5 changed files with 11 additions and 15 deletions
22
module/applications/sheets/rollTables/rollTable.mjs
Normal file
22
module/applications/sheets/rollTables/rollTable.mjs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
//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) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue