完全重构伤害计算;支持异常伤害计算;支持所有武器、套装计算;新增悠真计算等

This commit is contained in:
UCPr 2025-01-14 02:18:42 +08:00
parent f7e1066773
commit 3f8e64af66
99 changed files with 4243 additions and 1615 deletions

View file

@ -0,0 +1,13 @@
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
type: '增伤',
value: [0.25, 0.315, 0.38, 0.445, 0.5],
element: 'Ice',
isForever: true
},
{
type: '暴击率',
value: [0.1, 0.125, 0.15, 0.175, 0.2].map(v => v * 2)
}
]