mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-22 06:58:24 +00:00
调整万叶、久岐忍的伤害展示顺序
This commit is contained in:
parent
1a456c618c
commit
79b8d33ee7
@ -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%",
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user