mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 13:47:44 +00:00
新增剩余所有角色伤害计算
This commit is contained in:
parent
a62109a6c0
commit
afce42af23
31 changed files with 744 additions and 11 deletions
30
model/damage/character/格莉丝/calc.js
Normal file
30
model/damage/character/格莉丝/calc.js
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '2影',
|
||||
type: '无视抗性',
|
||||
value: 0.085
|
||||
},
|
||||
{
|
||||
name: '额外能力:技术支持班组',
|
||||
type: '异常增伤',
|
||||
value: 0.18 * 2,
|
||||
range: ['感电']
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '感电每次', type: '感电' },
|
||||
{ name: '紊乱', type: '紊乱' },
|
||||
{ name: '闪避反击:违章处罚', type: 'CF' },
|
||||
{
|
||||
name: '强化特殊技:超规工程清障',
|
||||
type: 'EQ',
|
||||
after: ({ avatar, damage }) => {
|
||||
damage.x(avatar.rank >= 6 ? 6 : 2)
|
||||
}
|
||||
},
|
||||
{ name: '连携技:协作施工', type: 'RL' },
|
||||
{ name: '终结技:工程爆破请勿接近', type: 'RZ' }
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue