This commit is contained in:
2025-06-09 21:52:22 +02:00
parent 436c867dd5
commit 84a2ef8aeb
7 changed files with 49 additions and 5 deletions

8
pokemon.js Normal file
View File

@ -0,0 +1,8 @@
import PokemonItemSheet from "./modules/sheets/PokemonItemSheet";
Hooks.once("init", function() {
console.log("pokemon | Initializing the Pokémon system");
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("pokemon", PokemonItemSheet, { makeDefault: true });
});