Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

divine pack now applies 7.77x instead of 2x #380

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Calculate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ export const getOcteractValueMultipliers = () => {
1 + player.shopUpgrades.seasonPassLost / 1000,
// cube upgrade 70, ie Cx20
1 + +(corruptionLevelSum >= 14 * 8) * player.cubeUpgrades[70] / 10000,
1 + +(corruptionLevelSum >= 14 * 8) * +player.singularityUpgrades.divinePack.getEffect().bonus,
1 + +(corruptionLevelSum >= 14 * 8) * (player.singularityUpgrades.divinePack.getEffect().bonus ? 1 : 0),
// next three are flame/blaze/inferno
+player.singularityUpgrades.singCubes1.getEffect().bonus,
+player.singularityUpgrades.singCubes2.getEffect().bonus,
Expand Down
2 changes: 1 addition & 1 deletion src/Cubes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const cubeUpgradeDescriptions = [
'[Cx17] What the hell are in these??? Anyway, Metaphysics Talisman level cap is increased by 1,337.',
'[Cx18] What the heck! These aren\'t even cookies. +0.01% Quarks per level purchased of this upgrade. +5% more at level 1,000!',
'[Cx19] Cookies that you\'ll never remember again. +12% Golden Quarks this Singularity.',
'[Cx20] The pinnacle of baking. Nothing you\'ll eat will taste better than this. Gain +0.01% more Octeracts on Ascension if every corruption is set to level 14.'
'[Cx20] The pinnacle of baking. Nothing you\'ll eat will taste better than this. Gain +0.01% more Octeracts per level if average corruption level is at least 14.'
]

const getCubeCost = (i: number, linGrowth = 0, cubic = false): IMultiBuy => {
Expand Down
2 changes: 1 addition & 1 deletion src/singularity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ export const singularityData: Record<keyof Player['singularityUpgrades'], ISingu
},
divinePack: {
name: 'Divine Pack',
description: 'OHHHHH. Gain +10% Quarks stack with master, and multiply Octeract gain by 7.77 if corruptions are all set to 14.',
description: 'OHHHHH. Gain +10% Quarks stack with master, and multiply Octeract gain by 2 if average corruption level is at least 14.',
maxLevel: 1,
costPerLevel: 12800,
minimumSingularity: 36,
Expand Down