-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix for gear parsing, e.g. Combat Gear and Other Gear on separate lines (#488) * Fix for wrongly calculated BAB for attacks with enchanted weapons (#503)
- Loading branch information
1 parent
93ee680
commit 4a510ad
Showing
5 changed files
with
97 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
{ | ||
"name": "pf1-statblock-converter", | ||
"title": "sbc | PF1 Stackblock Converter", | ||
"description": "Convert Pathfinder 1. Edition Statblocks into working NPC or PC Actors", | ||
"version": "3.3.3", | ||
"author": "Lavaeolous", | ||
"systems": ["pf1"], | ||
"esmodules": ["./scripts/sbc.js"], | ||
"styles": ["./styles/sbc.css"], | ||
"templates": ["./templates/sbcModal.html", "./templates/sbcPreview"], | ||
"packs": [], | ||
"url": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module", | ||
"bugs": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module/issues", | ||
"manifest": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module/releases/download/v3.3.3/module.json", | ||
"download": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module/releases/download/v3.3.3/3.3.3_statblock-converter.zip", | ||
"minimumCoreVersion": "9", | ||
"compatibleCoreVersion": "9" | ||
} | ||
"name": "pf1-statblock-converter", | ||
"title": "sbc | PF1 Stackblock Converter", | ||
"description": "Convert Pathfinder 1. Edition Statblocks into working NPC or PC Actors", | ||
"author": "Lavaeolous", | ||
"authors": [], | ||
"url": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module", | ||
"bugs": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module/issues", | ||
"flags": {}, | ||
"version": "3.3.4", | ||
"minimumCoreVersion": "9", | ||
"compatibleCoreVersion": "9", | ||
"scripts": [], | ||
"esmodules": [ | ||
"./scripts/sbc.js" | ||
], | ||
"styles": [ | ||
"./styles/sbc.css" | ||
], | ||
"languages": [], | ||
"packs": [], | ||
"system": [ | ||
"pf1" | ||
], | ||
"dependencies": [], | ||
"socket": false, | ||
"manifest": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module/releases/download/v3.3.4/module.json", | ||
"download": "https://github.com/Lavaeolous/PF1-StatBlock-Converter-Module/releases/download/v3.3.4/3.3.4_statblock-converter.zip", | ||
"protected": false, | ||
"coreTranslation": false, | ||
"library": false | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Author: Lavaeolous | ||
* Additional Authors: Noon | ||
* Version: 3.3.3 | ||
* Version: 3.3.4 | ||
* | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters