mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
22 lines
886 B
JavaScript
22 lines
886 B
JavaScript
import DHBaseItemSheet from '../api/base-item.mjs';
|
|
|
|
export default class DomainCardSheet extends DHBaseItemSheet {
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ['domain-card'],
|
|
position: { width: 450, height: 700 }
|
|
};
|
|
|
|
static PARTS = {
|
|
header: { template: 'systems/daggerheart/templates/sheets/items/domainCard/header.hbs' },
|
|
tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' },
|
|
description: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-description.hbs' },
|
|
actions: {
|
|
template: 'systems/daggerheart/templates/sheets/global/tabs/tab-actions.hbs',
|
|
scrollable: ['.actions']
|
|
},
|
|
settings: {
|
|
template: 'systems/daggerheart/templates/sheets/items/domainCard/settings.hbs',
|
|
scrollable: ['.settings']
|
|
}
|
|
};
|
|
}
|