支持贯穿伤害计算等;新增仪玄伤害计算

This commit is contained in:
UCPr 2025-08-15 23:51:01 +08:00
parent 2c6e20d846
commit a1a3b2b171
21 changed files with 524 additions and 184 deletions

View file

@ -0,0 +1,18 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '暴击率',
value: [0.2, 0.23, 0.26, 0.29, 0.32]
},
{
type: '增伤',
value: [0.08, 0.092, 0.104, 0.116, 0.128].map(v => v * 2),
element: 'Ether'
},
{
type: '贯穿增伤',
value: [0.1, 0.115, 0.13, 0.145, 0.16].map(v => v * 2),
element: 'Ether',
range: ['RZ', 'EQ']
}
]