From a483a4f44862de79d97999a73e573bb4ac10ad63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=AB=E8=B0=B7=E5=89=91=E4=BB=99?= Date: Thu, 7 May 2020 15:24:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=9F=E6=9D=A5=E5=8D=8F=E5=8A=9B=E7=9A=84?= =?UTF-8?q?=E8=BF=98=E6=B2=A1=E6=90=9E=E5=A5=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script-json_data.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/script-json_data.js b/script-json_data.js index bddf9238..ff7970b0 100644 --- a/script-json_data.js +++ b/script-json_data.js @@ -77,15 +77,15 @@ const sort_function_list = [ if (!solo) { const multiSort = [ - {tag:"sort_hpMax110_Multi",name:"最大协力攻击(Lv110)",function:(a,b)=> - (a.atk.max * (1 + a.limitBreakIncr/100) + (a.overlay || a.types[0] == 15 && a.types[1] == -1) ? 0 : 495) * Math.pow(1.5, a.awakenings.filter(ak=>ak===30).length) - - (b.atk.max * (1 + b.limitBreakIncr/100) + (b.overlay || b.types[0] == 15 && b.types[1] == -1) ? 0 : 495) * Math.pow(1.5, b.awakenings.filter(ak=>ak===30).length) + {tag:"sort_hpMax110_Multi",name:"最大协力攻击(Lv110+297)",function:(a,b)=> + (a.atk.max * (1 + a.limitBreakIncr/100) + ((a.overlay || a.types[0] == 15 && a.types[1] == -1) ? 0 : 495)) * Math.pow(1.5, a.awakenings.filter(ak=>ak===30).length) - + (b.atk.max * (1 + b.limitBreakIncr/100) + ((b.overlay || b.types[0] == 15 && b.types[1] == -1) ? 0 : 495)) * Math.pow(1.5, b.awakenings.filter(ak=>ak===30).length) }, - {tag:"sort_hpMax110_Multi",name:"最大协力HP(Lv110)",function:(a,b)=> - (a.hp.max * (1 + a.limitBreakIncr/100) + (a.overlay || a.types[0] == 15 && a.types[1] == -1) ? 0 : 990) * Math.pow(1.5, a.awakenings.filter(ak=>ak===30).length) - - (b.hp.max * (1 + b.limitBreakIncr/100) + (b.overlay || b.types[0] == 15 && b.types[1] == -1) ? 0 : 990) * Math.pow(1.5, b.awakenings.filter(ak=>ak===30).length) + {tag:"sort_hpMax110_Multi",name:"最大协力HP(Lv110+297)",function:(a,b)=> + (a.hp.max * (1 + a.limitBreakIncr/100) + ((a.overlay || a.types[0] == 15 && a.types[1] == -1) ? 0 : 990)) * Math.pow(1.5, a.awakenings.filter(ak=>ak===30).length) - + (b.hp.max * (1 + b.limitBreakIncr/100) + ((b.overlay || b.types[0] == 15 && b.types[1] == -1) ? 0 : 990)) * Math.pow(1.5, b.awakenings.filter(ak=>ak===30).length) }, - {tag:"sort_hpMax110_Multi",name:"最大协力回复(Lv110)",function:(a,b)=> + {tag:"sort_hpMax110_Multi",name:"最大协力回复(Lv110+297)",function:(a,b)=> (a.rcv.max * (1 + a.limitBreakIncr/100) + ((a.overlay || a.types[0] == 15 && a.types[1] == -1) ? 0 : 297)) * Math.pow(1.5, a.awakenings.filter(ak=>ak===30).length) - (b.rcv.max * (1 + b.limitBreakIncr/100) + ((b.overlay || b.types[0] == 15 && b.types[1] == -1) ? 0 : 297)) * Math.pow(1.5, b.awakenings.filter(ak=>ak===30).length) },