Upd:零号·安比、波可娜等伤害计算

This commit is contained in:
UCPr 2025-03-14 22:07:25 +08:00
parent c293eba2d7
commit ca29580286
13 changed files with 302 additions and 15 deletions

View file

@ -0,0 +1,20 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '增伤',
value: 0.15,
check: 2,
range: ['CC', '追加攻击'],
isForever: true
},
{
type: '攻击力',
value: 0.04 * 3,
check: 4
},
{
type: '暴击率',
value: 0.04 * 3,
check: 4
}
]

View file

@ -0,0 +1,14 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '异常精通',
value: 45,
check: 4
},
{
type: '增伤',
value: 0.25,
element: 'Ether',
check: 4
}
]