Browse Source

原来协力的还没搞好

tags/v6.5
枫谷剑仙 6 years ago
parent
commit
a483a4f448
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      script-json_data.js

+ 7
- 7
script-json_data.js View File

@@ -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)
},


Loading…
Cancel
Save