Tweak the design so that Drops and a Description can be fit into the sheet

This commit is contained in:
Oliver-Akins 2024-02-02 19:07:07 -07:00
parent dabbc4e850
commit e862165689
3 changed files with 75 additions and 51 deletions

View file

@ -7,8 +7,8 @@ export class MobSheet extends GenericActorSheet {
super.defaultOptions,
{
template: `systems/dotdungeon/templates/actors/mobs/main.hbs`,
width: 300,
height: 360,
width: 750,
height: 390,
}
);
opts.classes.push(`dotdungeon`);
@ -34,6 +34,8 @@ export class MobSheet extends GenericActorSheet {
ctx.computed = {};
// Compute rolls here
console.log(actor.uuid, `context:`, ctx)
return ctx;
};