mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 13:47:44 +00:00
Upd:零号·安比、波可娜等伤害计算
This commit is contained in:
parent
c293eba2d7
commit
ca29580286
13 changed files with 302 additions and 15 deletions
52
model/damage/character/波可娜/calc.js
Normal file
52
model/damage/character/波可娜/calc.js
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '1影',
|
||||
type: '暴击率',
|
||||
value: 0.1
|
||||
},
|
||||
{
|
||||
name: '2影',
|
||||
type: '攻击力',
|
||||
value: 0.1
|
||||
},
|
||||
{
|
||||
name: '6影',
|
||||
type: '增伤',
|
||||
value: 0.15,
|
||||
range: ['EPLP', 'EPLZ']
|
||||
},
|
||||
{
|
||||
name: '6影额外能力:业务搭档',
|
||||
type: '增伤',
|
||||
value: 0.3,
|
||||
check: 6
|
||||
},
|
||||
{
|
||||
name: '额外能力:业务搭档',
|
||||
type: '增伤',
|
||||
value: 0.3,
|
||||
check: ({ avatar }) => avatar.rank < 6,
|
||||
range: ['追加攻击']
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '普攻:捷击三段', type: 'AP3' },
|
||||
{ name: '长按普攻:跃击', type: 'AX' },
|
||||
{ name: '闪避反击:睚眦必报', type: 'CF' },
|
||||
{
|
||||
name: '特殊技:噬爪·噩梦袭影',
|
||||
type: 'EPLP',
|
||||
redirect: '追加攻击'
|
||||
},
|
||||
{
|
||||
name: '噬爪·噩梦袭影终结一击',
|
||||
type: 'EPLZ',
|
||||
redirect: '追加攻击'
|
||||
},
|
||||
{ name: '强化特殊技:噬爪·瞬步', type: 'EQ' },
|
||||
{ name: '连携技:嗨,想不到吧', type: 'RL' },
|
||||
{ name: '终结技:噢,游戏时间', type: 'RZ' }
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue