mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
18 lines
542 B
JavaScript
18 lines
542 B
JavaScript
import DHHeritageSheet from '../api/heritage-sheet.mjs';
|
|
|
|
export default class CommunitySheet extends DHHeritageSheet {
|
|
/**@inheritdoc */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ['community']
|
|
};
|
|
|
|
/**@inheritdoc */
|
|
static PARTS = {
|
|
header: { template: 'systems/daggerheart/templates/sheets/items/community/header.hbs' },
|
|
...super.PARTS,
|
|
feature: {
|
|
template: 'systems/daggerheart/templates/sheets/global/tabs/tab-features.hbs',
|
|
scrollable: ['.feature']
|
|
}
|
|
};
|
|
}
|