Enhance sheets and add skill+effects

This commit is contained in:
2026-05-22 20:14:28 +02:00
parent 78fa804dc5
commit e3f9dedcf6
18 changed files with 459 additions and 35 deletions
@@ -0,0 +1,17 @@
import AwEItemSheet from "./base-item-sheet.mjs"
export default class AwESkillSheet extends AwEItemSheet {
/** @override */
static DEFAULT_OPTIONS = {
classes: ["skill"],
position: { width: 500 },
window: { contentClasses: ["skill-content"] }
}
/** @override */
static PARTS = {
main: {
template: "systems/fvtt-adventures-with-emmy/templates/skill.hbs"
}
}
}