4.8卡池

This commit is contained in:
liangshi 2024-07-16 23:31:16 +08:00
parent c35dafbe79
commit cecc864345
2 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,69 @@
export const details = [{
title: 'E释放伤害',
params: { e: true },
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
}, {
title: '柔灯之匣一阶伤害',
params: { e: true },
dmg: ({ talent }, dmg) => dmg(talent.e['柔灯之匣·一阶攻击伤害'], 'e')
}, {
title: '柔灯之匣二阶单枚伤害',
params: { e: true },
dmg: ({ talent }, dmg) => dmg(talent.e['柔灯之匣·二阶攻击伤害2'][0], 'e')
}, {
title: '天赋浸析伤害',
params: { e: true },
dmg: ({ attr }, { basic }) => basic(attr.atk * 600 / 100, '')
}, {
title: '柔灯之匣三阶(Q)伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['柔灯之匣·三阶攻击伤害'], 'q')
}, {
title: 'Q完整对单',
dmg: ({ talent , cons }, dmg) => {
let q1 = dmg(talent.q['柔灯之匣·三阶攻击伤害'], 'q')
let cons4 = cons >= 4 ? 12 : 4
return {
dmg: q1.dmg * cons4,
avg: q1.avg * cons4
}
}
}, {
check: ({ cons }) => cons >= 6,
title: 'Q后重击伤害',
dmg: ({ talent }, dmg) => dmg(talent.a['重击伤害'], 'a2')
}, {
title: '燃烧反应伤害',
dmg: ({}, { reaction }) => reaction('burning')
}]
export const defDmgIdx = 2
export const mainAttr = 'atk,cpct,cdmg,mastery'
export const buffs = [{
title: '艾梅莉埃天赋:基于攻击力,对处于燃烧状态下的敌人造成的伤害提升[dmg]%',
data: {
dmg: ({ attr }) => Math.min(36, attr.atk / 1000 * 15)
}
}, {
check: ({ params }) => params.e === true,
title: '艾梅莉埃1命[淡香浸析] e与天赋造成的伤害提升[dmg]%',
cons: 1,
data: {
dmg: 20
}
}, {
title: '艾梅莉埃2命EQ命中的敌人草元素抗性降低[kx]%',
cons: 2,
data: {
kx: 30
}
}, {
title: '艾梅莉埃6命施放EQ时,普攻与重击造成的伤害提升[aPlus]',
cons: 6,
data: {
aPlus: ({ attr }) => attr.atk * 300 / 100,
a2Plus: ({ attr }) => attr.atk * 300 / 100
}
}]
export const createdBy = 'liangshi'

View File

@ -642,6 +642,15 @@ export const poolDetail = [{
char4: ['诺艾尔', '嘉明', '罗莎莉亚'],
weapon5: ['白雨心弦', '静水流涌之辉'],
weapon4: ['千岩古剑', '匣里龙吟', '西风长枪', '西风秘典', '祭礼弓']
}, {
version: '4.8',
half: '上半',
from: '2024-07-17 06:00:00',
to: '2024-08-06 17:59:59',
char5: ['娜维娅', '妮露'],
char4: ['绮良良', '卡维', '凝光'],
weapon5: ['裁断', '圣显之钥'],
weapon4: ['西福斯的月光', '钟剑', '匣里灭辰', '昭心', '弓藏']
}
]