mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 05:37:46 +00:00
新增「席德」伤害计算;新增拂晓生花、月光骑士颂套装计算;新增狸法七变化、机巧心种音擎计算
This commit is contained in:
parent
219edc91de
commit
9e0f95a71b
14 changed files with 208 additions and 19 deletions
17
model/damage/weapon/机巧心种.js
Normal file
17
model/damage/weapon/机巧心种.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
type: '暴击率',
|
||||
value: [0.15, 0.17, 0.19, 0.21, 0.23]
|
||||
},
|
||||
{
|
||||
type: '增伤',
|
||||
value: [0.125, 0.145, 0.165, 0.185, 0.2].map(v => v * 2),
|
||||
element: 'Electric'
|
||||
},
|
||||
{
|
||||
type: '无视防御',
|
||||
value: [0.2, 0.23, 0.26, 0.29, 0.32],
|
||||
range: ['A', 'RZ']
|
||||
}
|
||||
]
|
||||
13
model/damage/weapon/狸法七变化.js
Normal file
13
model/damage/weapon/狸法七变化.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
type: '异常掌控',
|
||||
value: [30, 34, 39, 43, 48],
|
||||
check: ({ avatar }) => avatar.element_type === 200
|
||||
},
|
||||
{
|
||||
type: '异常精通',
|
||||
value: [60, 69, 78, 87, 96],
|
||||
is: { team: true }
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue