mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
something to mess with
This commit is contained in:
parent
ef45240c51
commit
a0f1441373
1 changed files with 23 additions and 1 deletions
|
|
@ -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) {
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue