mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 05:37:46 +00:00
调整角色驱动盘整体评级分数
This commit is contained in:
parent
b46537ea3d
commit
289a0a9a6d
3 changed files with 8 additions and 8 deletions
|
|
@ -368,25 +368,25 @@ export class ZZZAvatarInfo {
|
|||
|
||||
/** @type {'C'|'B'|'A'|'S'|'SS'|'SSS'|'ACE'|false} */
|
||||
get equip_comment() {
|
||||
if (this.equip_score < 90) {
|
||||
if (this.equip_score < 80) {
|
||||
return 'C';
|
||||
}
|
||||
if (this.equip_score < 120) {
|
||||
return 'B';
|
||||
}
|
||||
if (this.equip_score < 150) {
|
||||
if (this.equip_score < 160) {
|
||||
return 'A';
|
||||
}
|
||||
if (this.equip_score < 170) {
|
||||
if (this.equip_score < 180) {
|
||||
return 'S';
|
||||
}
|
||||
if (this.equip_score < 190) {
|
||||
if (this.equip_score < 200) {
|
||||
return 'SS';
|
||||
}
|
||||
if (this.equip_score < 210) {
|
||||
if (this.equip_score < 220) {
|
||||
return 'SSS';
|
||||
}
|
||||
if (this.equip_score >= 210) {
|
||||
if (this.equip_score >= 220) {
|
||||
return 'ACE';
|
||||
}
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue