调整万叶、久岐忍的伤害展示顺序

This commit is contained in:
yoimiya-kokomi 2022-06-21 07:03:49 +08:00
parent 1a456c618c
commit 79b8d33ee7
2 changed files with 7 additions and 7 deletions

View File

@ -1,18 +1,18 @@
export const details = [{
title: "E释放伤害",
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
}, {
title: "E每跳治疗",
dmg: ({ talent, calc, attr }, { heal }) => {
let ec = talent.e['越祓草轮治疗量2'];
return heal(calc(attr.hp) * ec[0] / 100 + ec[1] * 1 + calc(attr.mastery) * 0.75)
}
}, {
title: "E释放伤害",
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
}, {
title: "Q每跳伤害",
dmg: ({ talent, calc, attr }, { basic }) => basic(talent.q['单次伤害'] * calc(attr.hp) / 100, 'q')
}];
export const mainAttr = "atk,cpct,cdmg,mastery";
export const mainAttr = "hp,atk,cpct,cdmg,mastery";
export const buffs = [{
title: "久岐忍被动生命低于50%时提高治疗加成15%",

View File

@ -1,7 +1,4 @@
export const details = [{
title: "扩散反应伤害",
dmg: ({}, { ks }) => ks()
}, {
title: "E长按伤害",
dmg: ({ talent }, dmg) => dmg(talent.e['长按技能伤害'], 'e')
}, {
@ -10,6 +7,9 @@ export const details = [{
}, {
title: "Q无转化每段伤害",
dmg: ({ talent }, dmg) => dmg(talent.q['持续伤害'], 'q')
}, {
title: "扩散反应伤害",
dmg: ({}, { ks }) => ks()
}];
export const mainAttr = "atk,cpct,cdmg,mastery";