新增潘引壶、新音擎伤害计算

This commit is contained in:
UCPr 2025-08-16 01:11:46 +08:00
parent a1a3b2b171
commit 38024f4fa5
6 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,7 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '攻击力',
value: [0.072, 0.082, 0.093, 0.104, 0.115]
}
]

View file

@ -0,0 +1,12 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '暴击伤害',
value: [0.16, 0.184, 0.208, 0.232, 0.256]
},
{
type: '增伤',
value: [0.2, 0.23, 0.26, 0.29, 0.32],
range: ['EQ']
}
]

View file

@ -0,0 +1,7 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '贯穿力',
value: [80, 92, 104, 116, 128].map(v => v * 3)
}
]

View file

@ -0,0 +1,8 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '增伤',
value: [0.25, 0.287, 0.325, 0.362, 0.4],
range: ['EQ', 'RZ']
}
]