mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-25 09:27:34 +00:00
66 lines
1.5 KiB
JavaScript
66 lines
1.5 KiB
JavaScript
|
import { Format } from '#miao'
|
|||
|
|
|||
|
export const details = [{
|
|||
|
title: '战技伤害',
|
|||
|
dmg: ({ talent, cons }, dmg) => {
|
|||
|
let count = cons < 6 ? 5 : 7
|
|||
|
return dmg(talent.e['技能伤害'] * count, 'e')
|
|||
|
}
|
|||
|
}, {
|
|||
|
title: '终结技提高全队击破特攻',
|
|||
|
dmg: ({ talent }) => {
|
|||
|
return {
|
|||
|
avg: Format.percent(talent.q['击破特攻提高']),
|
|||
|
type: 'text'
|
|||
|
}
|
|||
|
}
|
|||
|
}, {
|
|||
|
title: '4魂提高队友击破特攻',
|
|||
|
params: { q: true },
|
|||
|
cons: 4,
|
|||
|
dmg: ({ attr }) => {
|
|||
|
return {
|
|||
|
avg: Format.percent(attr.stance / 100 * 0.15),
|
|||
|
type: 'text'
|
|||
|
}
|
|||
|
}
|
|||
|
}, {
|
|||
|
title: '普攻·超击破伤害',
|
|||
|
params: { q: true },
|
|||
|
dmg: ({ trees }, { reaction }) => {
|
|||
|
let extraDmg = trees['101'] ? 1.6 : 1
|
|||
|
return {
|
|||
|
avg: reaction('superBreak').avg * extraDmg
|
|||
|
}
|
|||
|
}
|
|||
|
}, {
|
|||
|
title: '战技·超击破伤害',
|
|||
|
dmgKey: 'e',
|
|||
|
params: { q: true },
|
|||
|
dmg: ({ cons, trees }, { reaction }) => {
|
|||
|
let cost = (cons < 6 ? 3 : 4) + (trees['102'] ? 1 : 0)
|
|||
|
let extraDmg = trees['101'] ? 1.6 : 1
|
|||
|
return {
|
|||
|
avg: reaction('superBreak').avg * cost * extraDmg
|
|||
|
}
|
|||
|
}
|
|||
|
}]
|
|||
|
|
|||
|
export const mainAttr = 'atk,stance'
|
|||
|
export const defDmgKey = 'e'
|
|||
|
|
|||
|
export const buffs = [{
|
|||
|
title: '终结技Buff:我方全体击破特攻提高[stance]%',
|
|||
|
data: {
|
|||
|
stance: ({ talent }) => talent.q['击破特攻提高'] * 100
|
|||
|
}
|
|||
|
}, {
|
|||
|
title: '行迹-卫我起舞:场上敌方数量为1时,超击破伤害提高60%',
|
|||
|
tree: 1
|
|||
|
}, {
|
|||
|
title: '开拓者6命:战技的额外伤害次数增加2次',
|
|||
|
cons: 6
|
|||
|
}]
|
|||
|
|
|||
|
export const createdBy = 'Aluxes'
|