mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
23 lines
924 B
JavaScript
23 lines
924 B
JavaScript
import DHItemSheetV2 from '../item.mjs'
|
|
|
|
const { ItemSheetV2 } = foundry.applications.sheets;
|
|
export default class ConsumableSheet extends DHItemSheetV2(ItemSheetV2) {
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ['consumable'],
|
|
position: { width: 550 }
|
|
};
|
|
|
|
static PARTS = {
|
|
header: { template: 'systems/daggerheart/templates/sheets/items/consumable/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/consumable/settings.hbs',
|
|
scrollable: ['.settings']
|
|
}
|
|
};
|
|
}
|