Compare commits
2 Commits
v12-compat
...
develop
| Author | SHA1 | Date |
|---|---|---|
|
|
4a9afcf150 | |
|
|
6a90581c4e |
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "foundry-system-midgard5",
|
"name": "foundry-system-midgard5",
|
||||||
"version": "2.7.1",
|
"version": "2.7.2",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
@ -58,4 +58,4 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"handlebars-helpers": "^0.10.0"
|
"handlebars-helpers": "^0.10.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -155,14 +155,14 @@ export class M5Roll {
|
||||||
async toMessage(toggleAutomatedRoll = false) {
|
async toMessage(toggleAutomatedRoll = false) {
|
||||||
let automatedRoll = (game as Game).settings.get("midgard5", "automatedRoll");
|
let automatedRoll = (game as Game).settings.get("midgard5", "automatedRoll");
|
||||||
automatedRoll = toggleAutomatedRoll ? !automatedRoll : automatedRoll;
|
automatedRoll = toggleAutomatedRoll ? !automatedRoll : automatedRoll;
|
||||||
const rMode = (game as Game).settings.get("core", "rollMode");
|
let rMode = (game as Game).settings.get("core", "rollMode");
|
||||||
|
|
||||||
if (!automatedRoll) {
|
if (!automatedRoll) {
|
||||||
let checkOptions = await this.popUp({ isPW: this.data.rolls[0].label === (game as Game).i18n.localize("midgard5.pw") });
|
let checkOptions = await this.popUp({ isPW: this.data.rolls[0].label === (game as Game).i18n.localize("midgard5.pw") });
|
||||||
if (checkOptions["cancelled"]) {
|
if (checkOptions["cancelled"]) {
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
const rMode = checkOptions["rollMode"];
|
rMode = checkOptions["rollMode"];
|
||||||
this.data.b = checkOptions;
|
this.data.b = checkOptions;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -222,7 +222,7 @@ export class M5Roll {
|
||||||
rollData.rolls["0"] = {
|
rollData.rolls["0"] = {
|
||||||
formula: "1d20 + @i.fw + @i.bonus",
|
formula: "1d20 + @i.fw + @i.bonus",
|
||||||
enabled: true,
|
enabled: true,
|
||||||
label: (game as Game).i18n.localize("midgard5.pw"),
|
label: (game as Game).i18n.localize("midgard5.ew"),
|
||||||
result: "",
|
result: "",
|
||||||
total: 0,
|
total: 0,
|
||||||
totalStr: "",
|
totalStr: "",
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,17 @@
|
||||||
"name": "midgard5",
|
"name": "midgard5",
|
||||||
"title": "Midgard 5. Edition",
|
"title": "Midgard 5. Edition",
|
||||||
"description": "The German RPG Midgard 5. Edition",
|
"description": "The German RPG Midgard 5. Edition",
|
||||||
"version": "2.7.1",
|
"version": "2.7.2",
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": "10",
|
"minimum": "10",
|
||||||
"verified": "11",
|
"verified": "11",
|
||||||
"maximum": "11"
|
"maximum": "11"
|
||||||
},
|
},
|
||||||
"authors": [{ "name": "Byroks" }, { "name": "Le-Frique" }, { "name": "Oskaloq" }],
|
"authors": [
|
||||||
|
{"name": "Byroks"},
|
||||||
|
{"name": "Le-Frique"},
|
||||||
|
{"name": "Oskaloq"}
|
||||||
|
],
|
||||||
"scripts": ["bundle.js"],
|
"scripts": ["bundle.js"],
|
||||||
"styles": ["bundle.css"],
|
"styles": ["bundle.css"],
|
||||||
"languages": [
|
"languages": [
|
||||||
|
|
@ -28,4 +32,4 @@
|
||||||
"download": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5/releases/download/latest/midgard5.zip?token=2455375115b92bc8d87c93df7159eec232456f2d",
|
"download": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5/releases/download/latest/midgard5.zip?token=2455375115b92bc8d87c93df7159eec232456f2d",
|
||||||
"initiative": "@c.calc.attributes.gw.value",
|
"initiative": "@c.calc.attributes.gw.value",
|
||||||
"license": "LICENSE.txt"
|
"license": "LICENSE.txt"
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue