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
|
|
|
但战斗还未结束: [
|
|
|
|
staticIdx(1, 'recharge')
|
|
|
|
],
|
2023-05-20 13:51:44 +00:00
|
|
|
'舞!舞!舞!': [],
|
2023-05-22 19:19:45 +00:00
|
|
|
记忆中的模样: [
|
|
|
|
staticIdx(1, 'stance')
|
|
|
|
],
|
|
|
|
调和: [
|
|
|
|
keyIdx('进入战斗提高速度[speed]', 'speed', 1)
|
|
|
|
],
|
2023-05-20 13:51:44 +00:00
|
|
|
轮契: [],
|
|
|
|
过往未来: [],
|
2023-05-22 19:19:45 +00:00
|
|
|
镂月裁云之意: [
|
|
|
|
keyIdx('攻击Buff下提高攻击力[atkPct]%', 'atkPct', 1)
|
|
|
|
],
|
|
|
|
齐颂: [
|
|
|
|
keyIdx('进入战斗后,攻击力提高[atkPct]%', 'atkPct', 1)
|
2023-12-28 15:12:49 +00:00
|
|
|
],
|
|
|
|
镜中故我: [
|
|
|
|
staticIdx(1, 'stance'),
|
|
|
|
keyIdx('装备者释放终结技后,我方全体造成伤害提高[dmg]%', 'dmg', 2)
|
2024-02-17 14:25:42 +00:00
|
|
|
],
|
|
|
|
游戏尘寰: [
|
|
|
|
staticIdx(1, 'cdmg')
|
|
|
|
],
|
|
|
|
美梦小镇大冒险: [
|
|
|
|
(tables) => {
|
|
|
|
return {
|
|
|
|
title: '普攻、战技、终结技造成的伤害提高[_dmg]%',
|
|
|
|
data: {
|
|
|
|
_dmg: tables[1],
|
|
|
|
aDmg: tables[1],
|
|
|
|
eDmg: tables[1],
|
|
|
|
qDmg: tables[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-22 19:19:45 +00:00
|
|
|
]
|
2023-05-20 13:51:44 +00:00
|
|
|
}
|
2023-12-28 15:12:49 +00:00
|
|
|
}
|