Initialize the BookGeistSheet
This commit is contained in:
parent
163423ea5b
commit
7935a85188
9 changed files with 153 additions and 8 deletions
|
|
@ -1,6 +1,7 @@
|
|||
// Applications
|
||||
import { AllItemSheetV1 } from "../Apps/ItemSheets/AllItemSheetV1.mjs";
|
||||
import { ArmourSheet } from "../Apps/ItemSheets/ArmourSheet.mjs";
|
||||
import { BookGeistSheet } from "../Apps/ActorSheets/BookGeistSheet.mjs";
|
||||
import { CombinedHeroSheet } from "../Apps/ActorSheets/CombinedHeroSheet.mjs";
|
||||
import { CraftCardV1 } from "../Apps/ActorSheets/CraftCardV1.mjs";
|
||||
import { DelveDiceHUD } from "../Apps/DelveDiceHUD.mjs";
|
||||
|
|
@ -90,22 +91,21 @@ Hooks.once(`init`, () => {
|
|||
label: `RipCrypt.sheet-names.StatsCardV1`,
|
||||
themes: StatsCardV1.themes,
|
||||
});
|
||||
Actors.registerSheet(game.system.id, StatsCardV1, {
|
||||
makeDefault: true,
|
||||
types: [`geist`],
|
||||
label: `RipCrypt.sheet-names.StatsCardV1`,
|
||||
themes: StatsCardV1.themes,
|
||||
});
|
||||
Actors.registerSheet(game.system.id, SkillsCardV1, {
|
||||
types: [`hero`, `geist`],
|
||||
types: [`hero`],
|
||||
label: `RipCrypt.sheet-names.SkillsCardV1`,
|
||||
themes: SkillsCardV1.themes,
|
||||
});
|
||||
Actors.registerSheet(game.system.id, CraftCardV1, {
|
||||
types: [`hero`, `geist`],
|
||||
types: [`hero`],
|
||||
label: `RipCrypt.sheet-names.CraftCardV1`,
|
||||
themes: CraftCardV1.themes,
|
||||
});
|
||||
Actors.registerSheet(game.system.id, BookGeistSheet, {
|
||||
types: [`geist`],
|
||||
label: `RipCrypt.sheet-names.BookGeistSheet`,
|
||||
themes: BookGeistSheet.themes,
|
||||
});
|
||||
// #endregion
|
||||
|
||||
// #region Items
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue