新增伊芙琳伤害计算

This commit is contained in:
UCPr 2025-02-11 18:23:55 +08:00
parent 1e09912b84
commit fb5970a7d9
5 changed files with 127 additions and 3 deletions

View file

@ -0,0 +1,14 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '暴击伤害',
value: [0.5, 0.575, 0.65, 0.725, 0.8],
isForever: true
},
{
type: '无视抗性',
value: [0.125, 0.145, 0.165, 0.185, 0.2].map(v => v * 2),
element: 'Fire',
range: ['RL', 'RZ']
}
]