28 lines
571 B
JavaScript
28 lines
571 B
JavaScript
import FTLNomadItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class FTLNomadEquipmentSheet extends FTLNomadItemSheet {
|
|
/** @override */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["equipment"],
|
|
position: {
|
|
width: 600,
|
|
},
|
|
window: {
|
|
contentClasses: ["equipment-content"],
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
static PARTS = {
|
|
main: {
|
|
template: "systems/fvtt-cthulhu-eternal/templates/equipment.hbs",
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
async _prepareContext() {
|
|
const context = await super._prepareContext()
|
|
return context
|
|
}
|
|
}
|