commit
cf2bb58b5e
|
@ -1,3 +1,14 @@
|
|||
**v0.7.5 Saving Throw changes, Investments, and compatibility**
|
||||
|
||||
**MINOR CHANGES:**
|
||||
Thank you to Olle Skogren for contributing the Investment Vagary tables from AXIOMS 3. You can find them in the ACKS Compendium.
|
||||
Clarified language for Saving Throw bonuses to more clearly indicate when the bonus was being given.
|
||||
Certified compatibility with Foundry 0.7.9.
|
||||
|
||||
**BUG FIXES:**
|
||||
Fixed template preloading url error.
|
||||
Fixed character creation dialog box not closing properly.
|
||||
|
||||
**v0.7.4 Saving Throw bonus**
|
||||
**MINOR CHANGES:**
|
||||
Changed wording in settings menu to reflect that the Wisdom bonus applies to all saves is not a houserule, but an HFH option.
|
||||
|
@ -12,7 +23,7 @@ Monster sheet was unable to add abilities.
|
|||
|
||||
**v0.7.2 Monster Save Fix**
|
||||
**MINOR CHANGES:**
|
||||
Changed the changlog to bold text.
|
||||
Changed the changelog to bold text.
|
||||
|
||||
**BUG FIXES:**
|
||||
Monster sheet was unable to roll saves for monsters pre-dating 0.7.0 release.
|
||||
|
|
|
@ -38,6 +38,8 @@ Code and content contributions are accepted. Please feel free to submit issues t
|
|||
|
||||
Big thank you to Bobloblah for laying the foundation of the ACKS compendium! He put in an enormous effort, all to save judges tons of work in getting their campaigns started.
|
||||
|
||||
Thank you to Olle Skogren for contributing the Investment Vagary tables from AXIOMS 3.
|
||||
|
||||
## License
|
||||
#### System
|
||||
This system is offered and may be used under the terms of the Open Game License v1.0a and the Adventurer Conqueror King Product Identity License v1.0. Permission to develop and distribute the ACKS system for Foundry, and to create and distribute the content in the compendium have been granted by Autarch LLC.
|
||||
|
|
Binary file not shown.
|
@ -104,8 +104,7 @@ export class AcksCharacterCreator extends FormApplication {
|
|||
});
|
||||
}
|
||||
|
||||
async close() {
|
||||
super.close();
|
||||
async close(options) {
|
||||
// Gather scores
|
||||
let scores = {};
|
||||
$(this.form.children).find(".score-roll").each((_, d) => {
|
||||
|
@ -127,6 +126,7 @@ export class AcksCharacterCreator extends FormApplication {
|
|||
content: content,
|
||||
speaker,
|
||||
});
|
||||
return super.close(options);
|
||||
}
|
||||
|
||||
/** @override */
|
||||
|
|
|
@ -349,7 +349,7 @@ export class AcksDice {
|
|||
callback: (html) => {
|
||||
rolled = true;
|
||||
rollData.form = html[0].querySelector("form");
|
||||
rollData.data.roll.target = parseInt(rollData.data.roll.target) - parseInt(rollData.data.roll.magic);
|
||||
rollData.parts.push(`${rollData.data.roll.magic}`);
|
||||
rollData.title += ` ${game.i18n.localize("ACKS.saves.magic.short")} (${rollData.data.roll.magic})`;
|
||||
roll = AcksDice.sendRoll(rollData);
|
||||
},
|
||||
|
@ -368,7 +368,7 @@ export class AcksDice {
|
|||
callback: (html) => {
|
||||
rolled = true;
|
||||
rollData.form = html[0].querySelector("form");
|
||||
rollData.data.roll.target = parseInt(rollData.data.roll.target) - parseInt(rollData.data.roll.magic);
|
||||
rollData.parts.push(`${rollData.data.roll.magic}`);
|
||||
roll = AcksDice.sendRoll(rollData);
|
||||
},
|
||||
},
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
export const preloadHandlebarsTemplates = async function () {
|
||||
const templatePaths = [
|
||||
//Character Sheets
|
||||
'systems/acks/templates/actors/character-html.html',
|
||||
'systems/acks/templates/actors/monster-html.html',
|
||||
'systems/acks/templates/actors/character-sheet.html',
|
||||
'systems/acks/templates/actors/monster-sheet.html',
|
||||
//Actor partials
|
||||
//Sheet tabs
|
||||
'systems/acks/templates/actors/partials/character-header.html',
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2,9 +2,9 @@
|
|||
"name": "acks",
|
||||
"title": "Adventurer Conqueror King System",
|
||||
"description": "Play B/X or other OSR compatible content using the ACKS system",
|
||||
"version": "0.7.4",
|
||||
"version": "0.7.5",
|
||||
"minimumCoreVersion": "0.7.4",
|
||||
"compatibleCoreVersion": "0.7.5",
|
||||
"compatibleCoreVersion": "0.7.9",
|
||||
"templateVersion": 2,
|
||||
"author": "The Happy Anarchist",
|
||||
"esmodules": ["acks.js"],
|
||||
|
@ -100,6 +100,15 @@
|
|||
"module": "acks-packs"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "acks-investment-vagaries.db",
|
||||
"label": "ACKS Investment Vagaries",
|
||||
"system": "acks",
|
||||
"path": "packs/acks-investment-vagaries.db",
|
||||
"entity": "RollTable",
|
||||
"module": "acks-packs"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "acks-monster-abilities",
|
||||
"label": "ACKS Monster Abilities",
|
||||
|
@ -185,5 +194,5 @@
|
|||
"gridUnits": "ft",
|
||||
"url": "https://github.com/thehappyanarchist/foundryacks",
|
||||
"manifest": "https://github.com/thehappyanarchist/foundryacks/raw/master/src/system.json",
|
||||
"download": "https://github.com/thehappyanarchist/foundryacks/raw/master/package/acks-v0.7.4.zip"
|
||||
"download": "https://github.com/thehappyanarchist/foundryacks/raw/master/package/acks-v0.7.5.zip"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue