Add special abilities to creature sheet

This commit is contained in:
Johannes Loher 2021-01-13 17:20:25 +01:00
parent 864a65fed2
commit e36f30a787
12 changed files with 107 additions and 15 deletions

View file

@ -0,0 +1,11 @@
import { DS4ActorSheet } from "./actor-sheet";
export class DS4CharacterActorSheet extends DS4ActorSheet {
/** @override */
static get defaultOptions(): FormApplicationOptions {
return mergeObject(super.defaultOptions, {
classes: ["ds4", "sheet", "actor", "character"],
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "inventory" }],
});
}
}