新增剩余所有角色伤害计算

This commit is contained in:
UCPr 2025-01-24 16:46:42 +08:00
parent a62109a6c0
commit afce42af23
31 changed files with 744 additions and 11 deletions

View file

@ -0,0 +1,19 @@
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
name: '6影',
type: '增伤',
value: 0.45,
range: ['A', 'CC']
}
]
/** @type {import('../../Calculator.ts').Calculator['skills']} */
export const skills = [
{ name: '感电每段', type: '感电' },
{ name: '普攻:落雷', type: 'AX' },
{ name: '闪避反击:迅雷', type: 'CF' },
{ name: '强化特殊技:苍雷斩', type: 'EQ' },
{ name: '连携技:电磁引擎', type: 'RL' },
{ name: '终结技:过载引擎', type: 'RZ' }
]