Add rituals and tomes and creatures
All checks were successful
Release Creation / build (release) Successful in 48s

This commit is contained in:
2025-02-07 18:06:08 +01:00
parent 2ac0f53c4f
commit b3eb908f05
23 changed files with 1855 additions and 28 deletions

View File

@ -33,7 +33,8 @@ Hooks.once("init", function () {
CONFIG.Actor.documentClass = documents.CthulhuEternalActor
CONFIG.Actor.dataModels = {
protagonist: models.CthulhuEternalProtagonist,
vehicle: models.CthulhuEternalVehicle
vehicle: models.CthulhuEternalVehicle,
creature: models.CthulhuEternalCreature
}
CONFIG.Item.documentClass = documents.CthulhuEternalItem
@ -56,6 +57,7 @@ Hooks.once("init", function () {
Actors.unregisterSheet("core", ActorSheet)
Actors.registerSheet("fvtt-cthulhu-eternal", applications.CthulhuEternalProtagonistSheet, { types: ["protagonist"], makeDefault: true })
Actors.registerSheet("fvtt-cthulhu-eternal", applications.CthulhuEternalVehicleSheet, { types: ["vehicle"], makeDefault: true })
Actors.registerSheet("fvtt-cthulhu-eternal", applications.CthulhuEternalCreatureSheet, { types: ["creature"], makeDefault: true })
Items.unregisterSheet("core", ItemSheet)
Items.registerSheet("fvtt-cthulhu-eternal", applications.CthulhuEternalSkillSheet, { types: ["skill"], makeDefault: true })