Skip to content

Commit

Permalink
1.0.4 - Early to Midgame balance shifts
Browse files Browse the repository at this point in the history
  • Loading branch information
Pseudonian committed Dec 22, 2024
1 parent 67d306d commit 90e2186
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Calculate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2454,7 +2454,7 @@ export const calculateQuarkMultiplier = () => {
multiplier *= calculateSingularityQuarkMilestoneMultiplier()

multiplier *= +player.octeractUpgrades.octeractQuarkGain.getEffect().bonus // Oct Improver 1
multiplier *= 1 + 0.3 * +player.octeractUpgrades.octeractStarter.getEffect().bonus // Oct Starter Pack
multiplier *= 1 + 0.4 * +player.octeractUpgrades.octeractStarter.getEffect().bonus // Oct Starter Pack

multiplier *= 1
+ (1 / 10000)
Expand Down
2 changes: 1 addition & 1 deletion src/Config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const version = '3.0.0 pt 6: December 21, 2024: Rise of the Singular Entities, pt 1.0.3'
export const version = '3.0.0 pt 6: December 21, 2024: Rise of the Singular Entities, pt 1.0.4'

/**
* PSEUDO DO NOT CHANGE THIS LINE
Expand Down
2 changes: 1 addition & 1 deletion src/ImportExport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ export const promocodes = async (input: string | null, amount?: number) => {
if (playerConfirmed) {
const diff = Math.abs(Date.now() - (start + random))
player.promoCodeTiming.time = Date.now()

if (diff <= 2500 + 125 * player.cubeUpgrades[61]) {
const reward = Math.floor(
Math.min(1000, 125 + 25 * player.highestSingularityCount)
Expand Down
8 changes: 4 additions & 4 deletions src/Platonic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const platUpgradeBaseCosts: Record<number, IPlatBaseCost> = {
hypercubes: 1e5,
platonics: 1e4,
abyssals: 0,
maxLevel: 250,
maxLevel: 300,
priceMult: 2
},
2: {
Expand All @@ -59,7 +59,7 @@ export const platUpgradeBaseCosts: Record<number, IPlatBaseCost> = {
hypercubes: 1e5,
platonics: 1e4,
abyssals: 0,
maxLevel: 250,
maxLevel: 300,
priceMult: 2
},
3: {
Expand All @@ -70,7 +70,7 @@ export const platUpgradeBaseCosts: Record<number, IPlatBaseCost> = {
hypercubes: 1e7,
platonics: 1e4,
abyssals: 0,
maxLevel: 250,
maxLevel: 300,
priceMult: 2
},
4: {
Expand All @@ -81,7 +81,7 @@ export const platUpgradeBaseCosts: Record<number, IPlatBaseCost> = {
hypercubes: 1e6,
platonics: 1e6,
abyssals: 0,
maxLevel: 250,
maxLevel: 300,
priceMult: 2
},
5: {
Expand Down
2 changes: 1 addition & 1 deletion src/Statistics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ export const loadQuarkMultiplier = () => {
}`
DOMCacheGetOrSet('sGQM20').textContent = `x${
format(
1 + 0.25 * +player.octeractUpgrades.octeractStarter.getEffect().bonus,
1 + 0.4 * +player.octeractUpgrades.octeractStarter.getEffect().bonus,
3,
true
)
Expand Down
4 changes: 2 additions & 2 deletions src/singularity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -931,8 +931,8 @@ export const singularityData: Record<
},
wowPass2: {
maxLevel: 1,
costPerLevel: 19999,
minimumSingularity: 11,
costPerLevel: 12500,
minimumSingularity: 9,
effect: (n: number) => {
return {
bonus: n > 0,
Expand Down
4 changes: 2 additions & 2 deletions translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2724,7 +2724,7 @@
"data": {
"octeractStarter": {
"name": "Octeracts for Dummies",
"description": "Hello... I Am Derpsmith... The Ancestor Of Ant God... I Did Not Expect You To Get Here. Here Is 30% More Quarks, 20% More Octeracts, And 100,000x Ant Speed...",
"description": "Hello... I Am Derpsmith... The Ancestor Of Ant God... I Did Not Expect You To Get Here. Here Is 40% More Quarks, 20% More Octeracts, And 100,000x Ant Speed...",
"effect": "You have {{n}} paid your respects to Derpsmith."
},
"octeractGain": {
Expand Down Expand Up @@ -3548,4 +3548,4 @@
"account": {
"logout": "The page will now reload. You are logged out! Goodbye!!"
}
}
}
2 changes: 1 addition & 1 deletion translations/source.json
Original file line number Diff line number Diff line change
Expand Up @@ -2724,7 +2724,7 @@
"data": {
"octeractStarter": {
"name": "Octeracts for Dummies",
"description": "Hello... I Am Derpsmith... The Ancestor Of Ant God... I Did Not Expect You To Get Here. Here Is 30% More Quarks, 20% More Octeracts, And 100,000x Ant Speed...",
"description": "Hello... I Am Derpsmith... The Ancestor Of Ant God... I Did Not Expect You To Get Here. Here Is 40% More Quarks, 20% More Octeracts, And 100,000x Ant Speed...",
"effect": "You have {{n}} paid your respects to Derpsmith."
},
"octeractGain": {
Expand Down

0 comments on commit 90e2186

Please sign in to comment.