/* global game */ /** * Define all game settings here * @return {Promise} */ export const loadSettings = async function () { (game as Game).settings.register("midgard5", "automatedPP", { name: "Automatische Praxispunkte", hint: "Falls aktiv, werden Praxispunkte automatisch angerechnet.", scope: "world", config: true, default: true, type: Boolean, }); (game as Game).settings.register("midgard5", "automatedRoll", { name: "Automatische Würfelwürfe", hint: "Falls aktiv, wird bei Würfelwürfen kein Dialog gezeigt. Das Verhalten kann mit gleichzeitig gedrückter Shift Taste umgekehrt werden.", scope: "world", config: true, default: false, type: Boolean, }); };