miao-plugin/resources/meta/character/宵宫/calc.js
yoimiya-kokomi 3ecde0ef77 #角色面板 伤害计算增加 宵宫、公子
#调整角色面板的文件格式及尺寸,优化显示效果及图像尺寸
2022-04-28 02:41:08 +08:00

34 lines
945 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: { num: 1},
dmg: ({ talent }, dmg) => dmg(talent.a['一段伤害'], 'a')
}, {
title: "开E满Buff普攻尾箭",
params: { num: 10 },
dmg: ({ talent }, dmg) => dmg(talent.a['五段伤害'], 'a')
}, {
title: "开E满Buff尾箭蒸发",
params: { num: 10},
dmg: ({ talent }, dmg) => dmg(talent.a['五段伤害'], 'a', 'zf')
}];
export const buffs = [{
title: "宵宫E开启后额外提升普通[aMulti]%伤害",
data: {
aMulti: ({ talent }) => talent.e["炽焰箭伤害"] - 100
}
}, {
title: "宵宫被动袖火百景图10层提高20%火伤加成",
data: {
dmg: ({ params }) => params.num ? params.num * 2 : 20
}
}, {
title: "命座2宵宫造成暴击后获得25%火伤加成",
cons: 2,
data: {
dmg: ({ params }) => params.num > 1 ? 25 : 0
}
}, {
title: "元素精通:蒸发融化伤害提高[zf]%",
mastery: "zf,rh"
}];