Merge pull request #195 from hppeng-wynn/forest_aconite_fix
Forest aconite spelldamage fix
This commit is contained in:
commit
0b92f69394
5 changed files with 6 additions and 6 deletions
|
@ -17497,7 +17497,7 @@
|
||||||
"aDefPct": -25,
|
"aDefPct": -25,
|
||||||
"fixID": true,
|
"fixID": true,
|
||||||
"spPct4": 28,
|
"spPct4": 28,
|
||||||
"rainbowRaw": 1275,
|
"rSdRaw": 1275,
|
||||||
"id": 720
|
"id": 720
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -165,7 +165,7 @@ let rolledIDs = [
|
||||||
"spPct2", "spRaw2",
|
"spPct2", "spRaw2",
|
||||||
"spPct3", "spRaw3",
|
"spPct3", "spRaw3",
|
||||||
"spPct4", "spRaw4",
|
"spPct4", "spRaw4",
|
||||||
"pDamRaw",
|
"rSdRaw",
|
||||||
"sprint",
|
"sprint",
|
||||||
"sprintReg",
|
"sprintReg",
|
||||||
"jh",
|
"jh",
|
||||||
|
|
|
@ -70,7 +70,7 @@ let idPrefixes = {"displayName": "",
|
||||||
"spRaw3":"3rd Spell Cost Raw: ",
|
"spRaw3":"3rd Spell Cost Raw: ",
|
||||||
"spPct4":"4th Spell Cost %: ",
|
"spPct4":"4th Spell Cost %: ",
|
||||||
"spRaw4":"4th Spell Cost Raw: ",
|
"spRaw4":"4th Spell Cost Raw: ",
|
||||||
"rainbowRaw":"Rainbow Spell Damage Raw: ",
|
"rSdRaw":"Rainbow Spell Damage Raw: ",
|
||||||
"sprint":"Sprint Bonus: ",
|
"sprint":"Sprint Bonus: ",
|
||||||
"sprintReg":"Sprint Regen Bonus: ",
|
"sprintReg":"Sprint Regen Bonus: ",
|
||||||
"jh":"Jump Height: ",
|
"jh":"Jump Height: ",
|
||||||
|
@ -323,7 +323,7 @@ let sq2_item_display_commands = [
|
||||||
"fDefPct", "wDefPct", "aDefPct", "tDefPct", "eDefPct",
|
"fDefPct", "wDefPct", "aDefPct", "tDefPct", "eDefPct",
|
||||||
"!elemental",
|
"!elemental",
|
||||||
"spPct1", "spRaw1", "spPct2", "spRaw2", "spPct3", "spRaw3", "spPct4", "spRaw4",
|
"spPct1", "spRaw1", "spPct2", "spRaw2", "spPct3", "spRaw3", "spPct4", "spRaw4",
|
||||||
"rainbowRaw",
|
"rSdRaw",
|
||||||
"sprint", "sprintReg",
|
"sprint", "sprintReg",
|
||||||
"jh",
|
"jh",
|
||||||
"xpb", "lb", "lq",
|
"xpb", "lb", "lq",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const DB_VERSION = 105;
|
const DB_VERSION = 106;
|
||||||
// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA
|
// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA
|
||||||
|
|
||||||
let db;
|
let db;
|
||||||
|
|
Loading…
Reference in a new issue