Update the simple worldbuilding system for new manifest properties and to allow decimal initiative

This commit is contained in:
Andrew 2020-03-02 20:34:14 -08:00
parent df11172628
commit c3402a0acf
2 changed files with 7 additions and 3 deletions

View file

@ -19,7 +19,10 @@ Hooks.once("init", async function() {
* Set an initiative formula for the system
* @type {String}
*/
CONFIG.initiative.formula = "1d20";
CONFIG.Combat.initiative = {
formula: "1d20",
decimals: 2
};
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);

View file

@ -2,14 +2,15 @@
"name": "worldbuilding",
"title": "Simple World-Building",
"description": "A minimalist game system with very simple Actor and Item models to support free-form system agnostic gameplay.",
"version": 0.31,
"version": 0.32,
"minimumCoreVersion": "0.4.4",
"compatibleCoreVersion": "0.5.0",
"templateVersion": 2,
"author": "Atropos",
"esmodules": ["module/simple.js"],
"styles": ["styles/simple.css"],
"packs": [],
"initiative": "1d20",
"languages": [],
"gridDistance": 5,
"gridUnits": "ft",
"primaryTokenAttribute": "health",