Add missing items/actors

This commit is contained in:
2025-02-14 13:28:09 +01:00
parent b29cbfb8fa
commit 0b4ae7a097
30 changed files with 636 additions and 116 deletions

View File

@@ -0,0 +1,27 @@
import FTLNomadItemSheet from "./base-item-sheet.mjs"
export default class FTLNomadImplantSheet extends FTLNomadItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["implant"],
position: {
width: 600,
},
window: {
contentClasses: ["implant-content"],
},
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-cthulhu-eternal/templates/implant.hbs",
},
}
/** @override */
async _prepareContext() {
const context = await super._prepareContext()
return context
}
}