Merge branch 'dev' of https://github.com/hppeng-wynn/hppeng-wynn.github.io into dev
This commit is contained in:
commit
1e82559f72
6 changed files with 15 additions and 7 deletions
10
clean.json
10
clean.json
|
@ -88,9 +88,9 @@
|
|||
"majorIds": [],
|
||||
"category": "weapon",
|
||||
"displayName": "Divzer",
|
||||
"basedps": 297,
|
||||
"basedps": 299,
|
||||
"slots": 3,
|
||||
"nDam": "46-48",
|
||||
"nDam": "48-50",
|
||||
"fDam": "0-0",
|
||||
"wDam": "0-0",
|
||||
"aDam": "0-0",
|
||||
|
@ -105,6 +105,10 @@
|
|||
"agi": -550,
|
||||
"def": -39,
|
||||
"atkTier": 1,
|
||||
"sdRaw": 253,
|
||||
"mdRaw": 536,
|
||||
"fDamPct": -550,
|
||||
"wDamPct": -550,
|
||||
"id": 1692
|
||||
},
|
||||
{
|
||||
|
@ -130,6 +134,8 @@
|
|||
"mdPct": 15,
|
||||
"str": 25,
|
||||
"sdRaw": -275,
|
||||
"mdRaw": 575,
|
||||
"spRaw4": -3,
|
||||
"id": 1700
|
||||
},
|
||||
{
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5,8 +5,8 @@
|
|||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="stylesheet" href="article.css">
|
||||
<link rel="stylesheet" href="/css/styles.css">
|
||||
<link rel="stylesheet" href="/css/article.css">
|
||||
<link rel="icon" href="./media/icons/new/searcher.png">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<title>WynnAtlas</title>
|
||||
|
|
|
@ -976,6 +976,8 @@ function optimizeStrDex() {
|
|||
const base_skillpoints = player_build.base_skillpoints;
|
||||
const max_str_boost = 100 - base_skillpoints[0];
|
||||
const max_dex_boost = 100 - base_skillpoints[1];
|
||||
if (Math.min(remaining, max_str_boost, max_dex_boost) < 0) return; // Unwearable
|
||||
|
||||
const base_total_skillpoints = player_build.total_skillpoints;
|
||||
let str_bonus = remaining;
|
||||
let dex_bonus = 0;
|
||||
|
|
|
@ -197,7 +197,7 @@ const spell_table = {
|
|||
{ subtitle: "Total Heal (Ally)", type: "heal", strength: 0.4 }
|
||||
] },
|
||||
{ title: "Teleport", cost: 4, parts: [
|
||||
{ subtitle: "Total Damage", type: "damage", multiplier: 100, conversion: [60, 0, 40, 0, 0, 0], summary: true },
|
||||
{ subtitle: "Total Damage", type: "damage", multiplier: 150, conversion: [60, 0, 40, 0, 0, 0], summary: true },
|
||||
] },
|
||||
{ title: "Meteor", cost: 8, parts: [
|
||||
{ subtitle: "Blast Damage", type: "damage", multiplier: 500, conversion: [40, 30, 0, 0, 30, 0], summary: true },
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const DB_VERSION = 80;
|
||||
const DB_VERSION = 81;
|
||||
// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA
|
||||
|
||||
let db;
|
||||
|
|
Loading…
Reference in a new issue