Skip to content

Commit

Permalink
enlarged ID8 hardcap
Browse files Browse the repository at this point in the history
lmao
  • Loading branch information
Sxy6214 committed Feb 13, 2024
1 parent f6c9f09 commit 87b5310
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default {
this.atCap = player.infinityPower.exponent >= this.IPcap;
this.textCap = Decimal.pow(10,this.IPcap);
this.capExpo = (Ra.unlocks.improvedECRewards.isUnlocked && EternityChallenge(12).completions >= 1) ? EternityChallenge(12).vReward.effectValue : 1;
this.trueID8cap = player.timestudy.studies.includes(310) ? 1e10 * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)) : 1e10;
this.trueID8cap = player.timestudy.studies.includes(310) ? 1e11 * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)) : 1e11;
this.TesseractsCap = Tesseracts.TesseractHardcap;
this.atTessCap = Tesseracts.bought>=Tesseracts.TesseractHardcap;
this.scTwoStart = InfinityDimension(8).infPowerSoftcapTwo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default {
this.atCap = player.infinityPower.exponent >= this.IPcap;
this.textCap = Decimal.pow(10,this.IPcap);
this.capExpo = (Ra.unlocks.improvedECRewards.isUnlocked && EternityChallenge(12).completions >= 1) ? EternityChallenge(12).vReward.effectValue : 1;
this.trueID8cap = player.timestudy.studies.includes(310) ? 1e10 * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)) : 1e10;
this.trueID8cap = player.timestudy.studies.includes(310) ? 1e11 * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)) : 1e11;
this.TesseractsCap = Tesseracts.TesseractHardcap;
this.atTessCap = Tesseracts.bought>=Tesseracts.TesseractHardcap;
this.scTwoStart = InfinityDimension(8).infPowerSoftcapTwo;
Expand Down
4 changes: 2 additions & 2 deletions src/core/dimensions/infinity-dimension.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ class InfinityDimensionState extends DimensionState {
}
// return InfinityDimensions.totalDimCap * (this.tier == 8 ? 100 : 1);
const x = (Ra.unlocks.improvedECRewards.isUnlocked && EternityChallenge(12).completions >= 1 && !Pelle.isDoomed) ? EternityChallenge(12).vReward.effectValue : 1
let y = this.tier == 8 ? 1e10 : InfinityDimensions.totalDimCap ** x
if (player.timestudy.studies.includes(310)) y = this.tier == 8 ? 1e10 * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)) : (InfinityDimensions.totalDimCap * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)))**x
let y = this.tier == 8 ? 1e11 : InfinityDimensions.totalDimCap ** x
if (player.timestudy.studies.includes(310)) y = this.tier == 8 ? 1e11 * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)) : (InfinityDimensions.totalDimCap * (Math.max(Math.log10(Currency.replicanti.value.exponent),1)))**x
return y;
}

Expand Down

0 comments on commit 87b5310

Please sign in to comment.