/** * Hawkmoon system * Author: Uberwald * Software License: Prop */ /* -------------------------------------------- */ /* -------------------------------------------- */ // Import Modules import { HawkmoonActor } from "./hawkmoon-actor.js"; import { HawkmoonItemSheet } from "./hawkmoon-item-sheet.js"; import { HawkmoonActorSheet } from "./hawkmoon-actor-sheet.js"; import { HawkmoonCreatureSheet } from "./hawkmoon-creature-sheet.js"; import { HawkmoonCelluleSheet } from "./hawkmoon-cellule-sheet.js"; import { HawkmoonUtility } from "./hawkmoon-utility.js"; import { HawkmoonCombat } from "./hawkmoon-combat.js"; import { HawkmoonItem } from "./hawkmoon-item.js"; import { HawkmoonAutomation } from "./hawkmoon-automation.js"; import { HawkmoonTokenHud } from "./hawkmoon-hud.js"; import { HAWKMOON_CONFIG } from "./hawkmoon-config.js"; /* -------------------------------------------- */ /* Foundry VTT Initialization */ /* -------------------------------------------- */ /************************************************************************************/ Hooks.once("init", async function () { console.log(`Initializing Hawkmoon RPG`); /* -------------------------------------------- */ // preload handlebars templates HawkmoonUtility.preloadHandlebarsTemplates() /* -------------------------------------------- */ // Set an initiative formula for the system CONFIG.Combat.initiative = { formula: "1d10", decimals: 1 }; /* -------------------------------------------- */ game.socket.on("system.fvtt-hawkmoon-cyd", data => { HawkmoonUtility.onSocketMesssage(data) }); /* -------------------------------------------- */ // Define custom Entity classes CONFIG.Combat.documentClass = HawkmoonCombat CONFIG.Actor.documentClass = HawkmoonActor CONFIG.Item.documentClass = HawkmoonItem game.system.hawkmoon = { HawkmoonUtility, HawkmoonAutomation, config : HAWKMOON_CONFIG } /* -------------------------------------------- */ // Register sheet application classes Actors.unregisterSheet("core", ActorSheet); Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonActorSheet, { types: ["personnage"], makeDefault: true }) Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonCreatureSheet, { types: ["creature"], makeDefault: true }) Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonCelluleSheet, { types: ["cellule"], makeDefault: true }); Items.unregisterSheet("core", ItemSheet); Items.registerSheet("fvtt-hawkmoon-cyd", HawkmoonItemSheet, { makeDefault: true }) HawkmoonUtility.init() HawkmoonAutomation.init() HawkmoonTokenHud.init() }); /* -------------------------------------------- */ function welcomeMessage() { ChatMessage.create({ user: game.user.id, whisper: [game.user.id], content: `
Bienvenue dans Hawkmoon et le troisième Millénaire !

Les livres de Hawkmoon sont nécessaires pour jouer : https://www.titam-france.fr

Hawkmoon est jeu de rôle publié par Titam France/Sombres projets, tout les droits leur appartiennent.

Système développé par LeRatierBretonnien, support sur le Discord FR de Foundry.

` }); } /* -------------------------------------------- */ async function importDefaultScene() { let exists = game.scenes.find(j => j.name == "Accueil"); if (!exists) { const scenes = await HawkmoonUtility.loadCompendium("fvtt-hawkmoon.scenes") let newDocuments = scenes.filter(i => i.name == "Accueil"); if (newDocuments) { await game.scenes.documentClass.create(newDocuments); game.scenes.find(i => i.name == "Accueil").activate(); } } } /* -------------------------------------------- */ /* Foundry VTT Initialization */ /* -------------------------------------------- */ Hooks.once("ready", function () { HawkmoonUtility.ready() // User warning if (!game.user.isGM && game.user.character == undefined) { ui.notifications.info("Attention ! Aucun personnage n'est relié au joueur !"); ChatMessage.create({ content: "ATTENTION Le joueur " + game.user.name + " n'est relié à aucun personnage !", user: game.user._id }); } import("https://www.uberwald.me/fvtt_appcount/count-class-ready.js").then(moduleCounter=>{ console.log("ClassCounter loaded", moduleCounter) moduleCounter.ClassCounter.registerUsageCount() }).catch(err=> console.log("No stats available, giving up.") ) importDefaultScene() welcomeMessage() }); /* -------------------------------------------- */ /* Foundry VTT Initialization */ /* -------------------------------------------- */ Hooks.on("chatMessage", (html, content, msg) => { if (content[0] == '/') { let regExp = /(\S+)/g; let commands = content.match(regExp); if (game.system.mournblade.commands.processChatCommand(commands, content, msg)) { return false; } } return true; });