Initial system import

This commit is contained in:
2025-05-01 09:29:56 +02:00
commit 7672f861ff
94 changed files with 12616 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import HellbornItemSheet from "./base-item-sheet.mjs"
export default class HellbornWeaponSheet extends HellbornItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["weapon"],
position: {
width: 620,
},
window: {
contentClasses: ["weapon-content"],
},
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-hellborn/templates/weapon.hbs",
},
}
}