ZZZ-Plugin/model/damage/character/珂蕾妲/calc.js
2025-01-24 17:03:05 +08:00

34 lines
No EOL
973 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: '4影',
type: '增伤',
value: 0.18 * 2,
range: ['RL', 'RZ']
}
]
/** @type {import('../../Calculator.ts').Calculator['skills']} */
export const skills = [
{ name: '灼烧', type: '灼烧' },
{ name: '强化普攻二段', type: 'AQ2' },
{ name: '闪避反击:别小看我', type: 'CF' },
{
name: '6影额外伤害',
type: 'Y6',
isHide: true,
fixedMultiplier: 3.6,
check: ({ avatar }) => avatar.rank >= 6
},
{ name: '强化特殊技沸腾熔炉0', type: 'EQP0', isHide: true },
{
name: '强化特殊技:沸腾熔炉',
type: 'EQP',
after: ({ damage }) => {
damage.add('EQP0')
damage.add('Y6')
}
},
{ name: '连携技:天崩-地裂', type: 'RL', after: ({ damage }) => damage.add('Y6') },
{ name: '终结技:锤进地心', type: 'RZP', after: ({ damage }) => damage.add('Y6') }
]