From ee5bc24fc7bf62aa5bbc635ca6dd681ce63212e7 Mon Sep 17 00:00:00 2001 From: bietiaop <1527109126@qq.com> Date: Mon, 29 Jul 2024 17:26:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AF=84=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- model/avatar.js | 14 +++++++------- model/equip.js | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/model/avatar.js b/model/avatar.js index d9c8b95..9945dd5 100644 --- a/model/avatar.js +++ b/model/avatar.js @@ -414,25 +414,25 @@ export class ZZZAvatarInfo { /** @type {'C'|'B'|'A'|'S'|'SS'|'SSS'|'ACE'|false} */ get equip_comment() { - if (this.equip_score < 50) { + if (this.equip_score < 45) { return 'C'; } - if (this.equip_score <= 100) { + if (this.equip_score <= 80) { return 'B'; } - if (this.equip_score <= 140) { + if (this.equip_score <= 115) { return 'A'; } - if (this.equip_score <= 180) { + if (this.equip_score <= 150) { return 'S'; } - if (this.equip_score <= 210) { + if (this.equip_score <= 185) { return 'SS'; } - if (this.equip_score <= 240) { + if (this.equip_score <= 220) { return 'SSS'; } - if (this.equip_score > 240) { + if (this.equip_score > 220) { return 'ACE'; } return false; diff --git a/model/equip.js b/model/equip.js index fb81fe8..940686c 100644 --- a/model/equip.js +++ b/model/equip.js @@ -247,25 +247,25 @@ export class Equip { /** @type {'C'|'B'|'A'|'S'|'SS'|'SSS'|'ACE'|false} */ get comment() { - if (this.score < 8) { + if (this.score < 10) { return 'C'; } - if (this.score <= 13) { + if (this.score <= 15) { return 'B'; } - if (this.score <= 18) { + if (this.score <= 20) { return 'A'; } - if (this.score <= 23) { + if (this.score <= 25) { return 'S'; } - if (this.score <= 28) { + if (this.score <= 30) { return 'SS'; } - if (this.score <= 33) { + if (this.score <= 35) { return 'SSS'; } - if (this.score > 33) { + if (this.score > 35) { return 'ACE'; } return false;