ZZZ-Plugin/model/damage/character/赛斯/calc.js
2025-08-12 02:47:00 +08:00

46 lines
No EOL
1,017 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
name: '6影',
type: '暴击伤害',
value: 0.6,
range: ['Y6']
},
{
name: '核心被动:守望者',
type: '异常精通',
value: 'T'
}
]
/** @type {import('../../Calculator.ts').Calculator['skills']} */
export const skills = [
{ name: '感电每次', type: '感电' },
{
name: '6影额外伤害',
type: 'Y6',
isHide: true,
check: 6,
multiplier: 5,
props: {
暴击率: 1
}
},
{
name: '蓄力普攻:雷霆击-感电(连续攻击)',
type: 'AX0',
isHide: true
},
{
name: '蓄力普攻:雷霆击-感电',
type: 'AX',
after: ({ damage }) => {
damage.add('AX0')
damage.add('Y6')
}
},
{ name: '闪避反击:以退为进', type: 'CF' },
{ name: '强化E电光盾冲(蓄力)', type: 'EQX' },
{ name: '连携技:最终制裁', type: 'RL' },
{ name: '终结技:正义必胜', type: 'RZ' }
]