From 82069cfa3a74a3aad570de3122cef64774583643 Mon Sep 17 00:00:00 2001 From: yoimiya-kokomi <592981798@qq.com> Date: Sun, 26 Jun 2022 07:51:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=98=E6=9B=B4=E5=9C=A3=E9=81=97=E7=89=A9?= =?UTF-8?q?=E8=AF=84=E5=88=86=E8=AE=A1=E7=AE=97=E6=AD=A6=E5=99=A8=E5=B9=B3?= =?UTF-8?q?=E5=9D=87=E7=99=BD=E5=80=BC=E4=B8=BA520?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/models/Artifact.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/models/Artifact.js b/components/models/Artifact.js index 74283ded..219c89b8 100644 --- a/components/models/Artifact.js +++ b/components/models/Artifact.js @@ -24,7 +24,8 @@ let Artifact = { attrMark.hpPlus = attrMark.hp / baseAttr[0] * 100; } if (attrMark.atk) { - attrMark.atkPlus = attrMark.atk / (baseAttr[1] * 1 + 400) * 100; + // 以520作为武器白值均值计算 + attrMark.atkPlus = attrMark.atk / (baseAttr[1] * 1 + 520) * 100; } if (attrMark.def) { attrMark.defPlus = attrMark.def / baseAttr[2] * 100;