2023-05-22 19:19:45 +00:00
|
|
|
export default function (staticIdx, keyIdx) {
|
2023-05-20 13:51:44 +00:00
|
|
|
return {
|
2023-05-22 19:19:45 +00:00
|
|
|
以世界之名: [
|
|
|
|
keyIdx('对陷入负面效果的敌人伤害提高[dmg]%,释放战技的功力提高[atkPct]%', { dmg: 1, atkPct: 3 })
|
|
|
|
],
|
|
|
|
决心如汗珠般闪耀: [
|
|
|
|
keyIdx('攻陷状态敌方防御力降低[ignore]%', 'ignore', 2)
|
|
|
|
],
|
2023-05-20 13:51:44 +00:00
|
|
|
匿影: [],
|
|
|
|
后会有期: [],
|
2023-05-22 19:19:45 +00:00
|
|
|
幽邃: [
|
|
|
|
keyIdx('使装备者的效果命中提高[effPct]%', 'effPct', 1)
|
|
|
|
],
|
|
|
|
延长记号: [
|
|
|
|
staticIdx(1, 'stance'),
|
|
|
|
keyIdx('对触电或风化状态的地方目标伤害提高[dmg]%', 'dmg', 2)
|
|
|
|
],
|
|
|
|
晚安与睡颜: [
|
|
|
|
(tables) => {
|
|
|
|
return {
|
|
|
|
title: '3层Buff提高伤害[dmg]%',
|
|
|
|
data: {
|
|
|
|
dmg: tables[1] * 3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
渊环: [
|
|
|
|
keyIdx('对减速状态的目标伤害提高[dmg]%', 'dmg', 1)
|
|
|
|
],
|
|
|
|
猎物的视线: [
|
|
|
|
staticIdx(1, 'effPct')
|
2023-06-08 17:59:13 +00:00
|
|
|
],
|
|
|
|
新手任务开始前: [
|
|
|
|
staticIdx(1, 'effPct')
|
|
|
|
],
|
|
|
|
雨一直下: [
|
|
|
|
staticIdx(1, 'effPct'),
|
|
|
|
keyIdx('对大于3个负面效果的敌人提升暴击率[cpct]%', 'cpct', 2),
|
|
|
|
keyIdx('以太编码提升伤害[dmg]%', 'dmg', 3)
|
2023-07-19 01:12:44 +00:00
|
|
|
],
|
2023-08-13 18:39:27 +00:00
|
|
|
只需等待: [
|
2023-07-19 01:12:44 +00:00
|
|
|
staticIdx(1, 'dmg'),
|
|
|
|
(tables) => {
|
|
|
|
return {
|
|
|
|
title: '释放攻击3层Buff提高速度[speedPct]%',
|
|
|
|
data: {
|
|
|
|
speedPct: tables[2] * 3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-09-21 21:42:17 +00:00
|
|
|
],
|
|
|
|
孤独的疗愈: [
|
|
|
|
staticIdx(1, 'stance'),
|
|
|
|
keyIdx('装备者造成的持续伤害提高[dotDmg]%', 'dotDmg', 2)
|
2024-02-17 14:25:42 +00:00
|
|
|
],
|
|
|
|
重塑时光之忆: [
|
|
|
|
staticIdx(1, 'effPct'),
|
|
|
|
(tables) => {
|
|
|
|
return {
|
|
|
|
title: '4层Buff提高攻击力[atkPct]%,造成的持续伤害无视目标[dotIgnore]%的防御力',
|
|
|
|
data: {
|
|
|
|
atkPct: tables[2] * 4,
|
|
|
|
dotIgnore: tables[3] * 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
好戏开演: [
|
|
|
|
(tables) => {
|
|
|
|
return {
|
|
|
|
title: '3层Buff提高造成的伤害[dmg]%',
|
|
|
|
data: {
|
|
|
|
dmg: tables[1] * 3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(tables) => {
|
|
|
|
return {
|
|
|
|
check: ({ attr, calc }) => calc(attr.effPct) >= 80,
|
|
|
|
title: '攻击力提高[atkPct]%',
|
|
|
|
data: {
|
|
|
|
atkPct: tables[2]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-22 19:19:45 +00:00
|
|
|
]
|
2023-05-20 13:51:44 +00:00
|
|
|
}
|
2023-08-13 18:39:27 +00:00
|
|
|
}
|