miao-plugin/resources/meta/character/可莉/calc.js
CUZNIL ca454990ba
修复可莉不开启组队/圣遗物低配时会产生的bug (#518)
* Update calc_auto.js

添加可莉总伤

* Update calc.js

修改可莉排行依据

* Update artis.js

修改圣遗物评分判定依据

* 修复可莉面板bug

#喵喵设置组队关闭 时会丢失排行

* 修复可莉圣遗物判定bug

当打蒸发且圣遗物比较烂的时候会误判纯火,已修复(蒸发流可莉总伤最优时精通差不多110,比这个还低一般就是纯火了。)
2023-03-15 00:47:11 +08:00

35 lines
898 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const details = [{
title: 'E后带火花重击',
params: { q: false },
dmg: ({ talent }, dmg) => dmg(talent.a['重击伤害'], 'a2')
}, {
title: 'E后带火花重击蒸发',
params: { q: false },
dmg: ({ talent }, dmg) => dmg(talent.a['重击伤害'], 'a2', 'vaporize')
}, {
title: '单次轰轰火花伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['轰轰火花伤害'], 'q')
}]
export const defDmgIdx = 1
export const mainAttr = 'atk,cpct,cdmg,mastery'
export const buffs = [{
title: '可莉天赋爆裂火花使重击伤害提升50%',
data: {
a2Dmg: 50
}
}, {
title: '可莉2命蹦蹦炸弹的诡雷会使敌人的防御力降低23%',
cons: 2,
data: {
enemyDef: 23
}
}, {
title: '可莉6命释放轰轰火花后获得10%火元素伤害加成',
cons: 6,
data: {
dmg: ({ params }) => params.q === false ? 0 : 10
}
}, 'vaporize']