Skip to content

Commit

Permalink
Change the cost and unlock requirement for "Challenges are not reset"…
Browse files Browse the repository at this point in the history
… metaverse altar upgrade.
  • Loading branch information
thomaspj10 committed Mar 1, 2024
1 parent 158d58d commit 79dd443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ const requirementsBaseData = {
"Increase Boost Duration": new HypercubeRequirement(["#IncreaseBoostDurationAltar"], [{ requirement: 2500 }]),
"Gain evil at new transcension": new HypercubeRequirement(["#EvilAltar"], [{ requirement: 50000000 }]),
"Essence gain multiplier": new HypercubeRequirement(["#EssenceAltar"], [{ requirement: 500000000 }]),
"Challenges are not reset": new HypercubeRequirement(["#ChallengeAltar"], [{ requirement: 1e8 }]),
"Challenges are not reset": new HypercubeRequirement(["#ChallengeAltar"], [{ requirement: 1e12 }]),
"Dark Matter gain multiplier": new HypercubeRequirement(["#DarkMaterAltar"], [{ requirement: 1e17 }]),

// Metaverse Perks
Expand Down
2 changes: 1 addition & 1 deletion js/metaverse.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function buyEssenceMult() {


function challengeAltarCost() {
return 1e10
return 1e14
}

function canBuyChallengeAltar() {
Expand Down

0 comments on commit 79dd443

Please sign in to comment.