Improve wording of BI upgrades

This commit is contained in:
Hirame1 2024-05-15 18:35:51 +07:00 committed by cyip92
parent 62fb53d574
commit 406fe5b500

View File

@ -57,14 +57,14 @@ export const breakInfinityUpgrades = {
achievementMult: {
id: "achievementMult",
cost: 1e6,
description: "Additional multiplier to Antimatter Dimensions based on Achievements completed",
description: "Antimatter Dimensions gain a multiplier based on Achievements completed",
effect: () => Math.max(Math.pow((Achievements.effectiveCount - 30), 3) / 40, 1),
formatEffect: value => formatX(value, 2, 2)
},
slowestChallengeMult: {
id: "challengeMult",
cost: 1e7,
description: "Antimatter Dimensions gain a multiplier based on slowest challenge run",
description: "Antimatter Dimensions gain a multiplier based on how fast your slowest challenge run is",
effect: () => Decimal.clampMin(50 / Time.worstChallenge.totalMinutes, 1),
formatEffect: value => formatX(value, 2, 2),
hasCap: true,