mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 05:37:46 +00:00
新增剩余所有角色伤害计算
This commit is contained in:
parent
a62109a6c0
commit
afce42af23
31 changed files with 744 additions and 11 deletions
26
model/damage/character/派派/calc.js
Normal file
26
model/damage/character/派派/calc.js
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '2影',
|
||||
type: '增伤',
|
||||
value: 0.1 + 0.3,
|
||||
element: 'Physical',
|
||||
range: ['EY', 'EQF', 'RZ'] // 大招下砸攻击倍率不知道,直接当做整个技能的增伤吧
|
||||
},
|
||||
{
|
||||
name: '额外能力:同步疾驰',
|
||||
type: '增伤',
|
||||
value: 0.18
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '强击', type: '强击' },
|
||||
{ name: '普攻:准备发车四段', type: 'AP4' },
|
||||
{ name: '闪避反击:动力漂移', type: 'CF' },
|
||||
{ name: '强化特殊技:引擎转(每圈)', type: 'EQZ' },
|
||||
{ name: '强化特殊技:非常重', type: 'EQF' },
|
||||
{ name: '连携技:系好安全带', type: 'RL' },
|
||||
{ name: '终结技:坐~稳~啦~', type: 'RZ' }
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue