Initial skeleton

This commit is contained in:
2026-03-05 21:51:31 +01:00
commit 12458925a1
53 changed files with 6646 additions and 0 deletions
@@ -0,0 +1,17 @@
import AwEItemSheet from "./base-item-sheet.mjs"
export default class AwEEquipmentSheet extends AwEItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["equipment"],
position: { width: 620 },
window: { contentClasses: ["equipment-content"] }
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-adventures-with-emmy/templates/equipment.hbs"
}
}
}