ditch typhon in favor of doing it raw

This commit is contained in:
iamBadgers
2025-07-11 20:26:57 -07:00
parent b7948d18d7
commit fcb1b25cec
17 changed files with 40 additions and 6400 deletions

20
scripts/index.js Normal file
View File

@@ -0,0 +1,20 @@
import { initializeSettings } from "./settings.js";
Hooks.on('init', async function () {
initializeSettings();
});
Hooks.on("getActorSheetHeaderButtons", (app, buttons) => {
let theatreButtons = [];
theatreButtons.push({
label: "Archive",
class: "send-to-archive",
icon: "fas fa-mask",
onclick: (ev) => {
console.log("ARCHIVE ME!");
}
});
buttons.unshift(...theatreButtons);
});