mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 21:57:44 +00:00
新增「席德」伤害计算;新增拂晓生花、月光骑士颂套装计算;新增狸法七变化、机巧心种音擎计算
This commit is contained in:
parent
219edc91de
commit
9e0f95a71b
14 changed files with 208 additions and 19 deletions
21
model/damage/set/拂晓生花.js
Normal file
21
model/damage/set/拂晓生花.js
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
type: '增伤',
|
||||
value: 0.15,
|
||||
check: 2,
|
||||
range: ['A']
|
||||
},
|
||||
{
|
||||
type: '增伤',
|
||||
value: 0.2,
|
||||
check: 4,
|
||||
range: ['A']
|
||||
},
|
||||
{
|
||||
type: '增伤',
|
||||
value: 0.2,
|
||||
check: ({ avatar, buffM }) => buffM.setCount.拂晓生花 >= 4 && avatar.avatar_profession === 1, // 仅强攻角色
|
||||
range: ['A']
|
||||
}
|
||||
]
|
||||
9
model/damage/set/月光骑士颂.js
Normal file
9
model/damage/set/月光骑士颂.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/** @type {import('../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
type: '增伤',
|
||||
value: 0.18,
|
||||
check: ({ avatar, buffM }) => buffM.setCount.月光骑士颂 >= 4 && avatar.avatar_profession === 4, // 仅支援角色
|
||||
is: { team: true }
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue