Merge pull request #177 from hppeng-wynn/atree_hotfix

patch 10 changes
This commit is contained in:
hppeng-wynn 2022-07-28 21:45:59 -07:00 committed by GitHub
commit 00dffe62fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 6 deletions

View file

@ -289,7 +289,7 @@ const atrees = {
"base_spell": 1,
"target_part": "Single Arrow",
"multipliers": [
-15,
-10,
0,
0,
0,
@ -3715,7 +3715,7 @@ const atrees = {
{
"display_name": "Enraged Blow",
"desc": "While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)",
"desc": "While Corriupted, every 1% of Health you lose will increase your damage by +2.2% (Max 220%)",
"archetype": "Fallen",
"archetype_req": 0,
"base_abil": "Bak'al's Grasp",
@ -3966,7 +3966,7 @@ const atrees = {
{
"display_name": "Intoxicating Blood",
"desc": "After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted",
"desc": "After leaving Corrupted, gain 5% of the health lost back for each enemy killed while Corrupted",
"archetype": "Fallen",
"archetype_req": 5,
"base_abil": "Bak'al's Grasp",
@ -4277,7 +4277,7 @@ const atrees = {
"parts": [
{
"name": "Damage Tick",
"multipliers": [10, 0, 5, 0, 0, 0]
"multipliers": [20, 0, 10, 0, 0, 0]
}
]
}

File diff suppressed because one or more lines are too long

View file

@ -232,7 +232,13 @@ function shareBuild(build) {
"> "+build.items[5].statMap.get("displayName")+"\n"+
"> "+build.items[6].statMap.get("displayName")+"\n"+
"> "+build.items[7].statMap.get("displayName")+"\n"+
"> "+build.items[15].statMap.get("displayName")+" ["+build_powders[4].map(x => powderNames.get(x)).join("")+"]";
"> "+build.items[15].statMap.get("displayName")+" ["+build_powders[4].map(x => powderNames.get(x)).join("")+"]\n";
for (let tomeslots = 8; tomeslots < 15; tomeslots++) {
if (!build.items[tomeslots].statMap.has('NONE')) {
text += ">"+' (Has Tomes)' ;
break;
}
}
copyTextToClipboard(text);
document.getElementById("share-button").textContent = "Copied!";
}