start resources tab

This commit is contained in:
moliloo 2025-08-29 00:45:09 -03:00
parent 5b7272c2c7
commit 8b1850fc5c
5 changed files with 57 additions and 16 deletions

View file

@ -22,13 +22,14 @@ export default class Party extends DHBaseActorSheet {
header: { template: 'systems/daggerheart/templates/sheets/actors/party/header.hbs' },
tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' },
partyMembers: { template: 'systems/daggerheart/templates/sheets/actors/party/party-members.hbs' },
resources: { template: 'systems/daggerheart/templates/sheets/actors/party/resources.hbs' },
notes: { template: 'systems/daggerheart/templates/sheets/actors/party/notes.hbs' }
};
/** @inheritdoc */
static TABS = {
primary: {
tabs: [{ id: 'partyMembers' }, { id: 'notes' }],
tabs: [{ id: 'partyMembers' }, { id: 'resources' }, { id: 'notes' }],
initial: 'partyMembers',
labelPrefix: 'DAGGERHEART.GENERAL.Tabs'
}