mirror of
https://github.com/RoY7x/worldbuilding.git
synced 2025-07-04 13:47:10 -04:00
Update the simple worldbuilding system for new manifest properties and to allow decimal initiative
This commit is contained in:
parent
df11172628
commit
c3402a0acf
2 changed files with 7 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue