Skip to content

Commit 1147ed9

Browse files
authored
feat: v3 changes (#1457)
1 parent 0e5cd6c commit 1147ed9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/lib/conditionals/character/1300/BlackSwanB1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default (e: Eidolon, withContent: boolean): CharacterConditionalsControll
5757
const defaults = {
5858
skillDefShred: true,
5959
epiphanyDebuff: true,
60-
arcanaStacks: e >= 6 ? 70 : 50,
60+
arcanaStacks: e >= 6 ? 80 : 50,
6161
ehrToDmgBoost: true,
6262
e1ResReduction: true,
6363
e4Vulnerability: true,

src/lib/conditionals/character/1300/SparkleB1.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,23 +47,23 @@ export default (e: Eidolon, withContent: boolean): CharacterConditionalsControll
4747

4848
const skillCdBuffScaling = skill(e, 0.24, 0.264)
4949
const skillCdBuffBase = skill(e, 0.45, 0.486)
50-
const cipherTalentStackBoost = ult(e, 0.05, 0.054)
51-
const talentBaseStackBoost = talent(e, 0.03, 0.033)
50+
const cipherTalentStackBoost = ult(e, 0.06, 0.0648)
51+
const talentBaseStackBoost = talent(e, 0.04, 0.044)
5252

5353
const basicScaling = basic(e, 1.00, 1.10)
5454

5555
const defaults = {
5656
skillBuffs: false,
5757
cipherBuff: true,
58-
talentStacks: 4,
58+
talentStacks: 3,
5959
teamAtkBuff: true,
6060
e1SpdBuff: true,
6161
}
6262

6363
const teammateDefaults = {
6464
skillBuffs: true,
6565
cipherBuff: true,
66-
talentStacks: 4,
66+
talentStacks: 3,
6767
teamAtkBuff: true,
6868
teammateCDValue: 2.5,
6969
e2DefPen: true,
@@ -88,7 +88,7 @@ export default (e: Eidolon, withContent: boolean): CharacterConditionalsControll
8888
text: 'Talent stacks',
8989
content: i18next.t('BetaMessage', { ns: 'conditionals', Version: CURRENT_DATA_VERSION }),
9090
min: 0,
91-
max: 4,
91+
max: 3,
9292
},
9393
teamAtkBuff: {
9494
id: 'teamAtkBuff',
@@ -163,7 +163,7 @@ export default (e: Eidolon, withContent: boolean): CharacterConditionalsControll
163163
: m.talentStacks * talentBaseStackBoost,
164164
SOURCE_TALENT,
165165
)
166-
x.DEF_PEN.buffTeam((e >= 2 && m.e2DefPen) ? 0.08 * m.talentStacks : 0, SOURCE_E2)
166+
x.DEF_PEN.buffTeam((e >= 2 && m.e2DefPen) ? 0.10 * m.talentStacks : 0, SOURCE_E2)
167167
},
168168
precomputeTeammateEffects: (x: ComputedStatsArray, action: OptimizerAction, context: OptimizerContext) => {
169169
const t = action.characterConditionals as Conditionals<typeof teammateContent>

0 commit comments

Comments
 (0)