Initial rework

This commit is contained in:
2024-12-10 17:22:28 +01:00
parent 9b25cc053a
commit 2b9361d3bd
16 changed files with 299 additions and 232 deletions

View File

@ -2,13 +2,13 @@
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
export class KidsOnBroomsActorSheet extends ActorSheet {
export class NeverStopBlowingUpActorSheet extends ActorSheet {
/** @override */
static get defaultOptions()
{
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["kidsonbrooms", "sheet", "actor"],
classes: ["fvtt-never-stop-blowing-up", "sheet", "actor"],
width: 800,
height: 800,
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "features" }]
@ -19,7 +19,7 @@ export class KidsOnBroomsActorSheet extends ActorSheet {
get template()
{
console.log("template", this.actor)
return `systems/kidsonbrooms/templates/actor/actor-${this.actor.type}-sheet.html`;
return `systems/fvtt-never-stop-blowing-up/templates/actor/actor-${this.actor.type}-sheet.html`;
}