diff --git a/Pictures/Default/perkdilatedFiveLeaf.png b/Pictures/Default/Unused/perkdilatedFiveLeaf.png similarity index 100% rename from Pictures/Default/perkdilatedFiveLeaf.png rename to Pictures/Default/Unused/perkdilatedFiveLeaf.png diff --git a/Pictures/Default/perkoneHundredThirtyOne.png b/Pictures/Default/Unused/perkoneHundredThirtyOne.png similarity index 100% rename from Pictures/Default/perkoneHundredThirtyOne.png rename to Pictures/Default/Unused/perkoneHundredThirtyOne.png diff --git a/Pictures/Default/perktwoHundredSixtyNine.png b/Pictures/Default/perktwoHundredSixtyNine.png deleted file mode 100644 index 239ffc969..000000000 Binary files a/Pictures/Default/perktwoHundredSixtyNine.png and /dev/null differ diff --git a/Pictures/Legacy/perkdilatedFiveLeaf.png b/Pictures/Legacy/Unused/perkdilatedFiveLeaf.png similarity index 100% rename from Pictures/Legacy/perkdilatedFiveLeaf.png rename to Pictures/Legacy/Unused/perkdilatedFiveLeaf.png diff --git a/Pictures/Legacy/perkoneHundredThirtyOne.png b/Pictures/Legacy/Unused/perkoneHundredThirtyOne.png similarity index 100% rename from Pictures/Legacy/perkoneHundredThirtyOne.png rename to Pictures/Legacy/Unused/perkoneHundredThirtyOne.png diff --git a/Pictures/Legacy/perkprimalPower.png b/Pictures/Legacy/perkprimalPower.png new file mode 100644 index 000000000..9695be634 Binary files /dev/null and b/Pictures/Legacy/perkprimalPower.png differ diff --git a/Pictures/Legacy/perktwoHundredSixtyNine.png b/Pictures/Legacy/perktwoHundredSixtyNine.png deleted file mode 100644 index 9a5baf066..000000000 Binary files a/Pictures/Legacy/perktwoHundredSixtyNine.png and /dev/null differ diff --git a/src/Statistics.ts b/src/Statistics.ts index 45ff4e89e..ff3bfe1c1 100644 --- a/src/Statistics.ts +++ b/src/Statistics.ts @@ -1735,8 +1735,8 @@ export const loadStatisticsAmbrosiaLuck = () => { 8: { acc: 1, desc: 'Ambrosia Luck Module II' }, 9: { acc: 2, desc: 'Ambrosia Cube-Luck Hybrid Module I' }, 10: { acc: 2, desc: 'Ambrosia Quark-Luck Hybrid Module I' }, - 11: { acc: 0, desc: 'Perk: One Hundred Thirty One!' }, - 12: { acc: 0, desc: 'Perk: Two Hundred Sixty Nine!' }, + 11: { acc: 0, desc: 'Primal Power: One Hundred Thirty One!' }, + 12: { acc: 0, desc: 'Primal Power: Two Hundred Sixty Nine!' }, 13: { acc: 0, desc: 'Shop: Octeract-Based Ambrosia Luck' }, 14: { acc: 0, desc: 'No Ambrosia Upgrades EXALT' }, 15: { acc: 0, desc: 'Cube Upgrade Cx27' }, diff --git a/src/singularity.ts b/src/singularity.ts index 887e74aa2..9be43e8e0 100644 --- a/src/singularity.ts +++ b/src/singularity.ts @@ -1609,21 +1609,21 @@ export class SingularityPerk { export const singularityPerks: SingularityPerk[] = [ { name: () => { - return i18next.t('singularity.perkNames.welcometoSingularity') + return i18next.t('singularity.perks.welcometoSingularity.name') }, levels: [1], description: () => { - return i18next.t('singularity.perks.welcometoSingularity') + return i18next.t('singularity.perks.welcometoSingularity.default') }, ID: 'welcometoSingularity' }, { name: () => { - return i18next.t('singularity.perkNames.unlimitedGrowth') + return i18next.t('singularity.perks.unlimitedGrowth.name') }, levels: [1], description: () => { - return i18next.t('singularity.perks.unlimitedGrowth', { + return i18next.t('singularity.perks.unlimitedGrowth.default', { amount: format(10 * player.singularityCount) }) }, @@ -1631,11 +1631,11 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.goldenCoins') + return i18next.t('singularity.perks.goldenCoins.name') }, levels: [1], description: () => { - return i18next.t('singularity.perks.goldenCoins', { + return i18next.t('singularity.perks.goldenCoins.default', { amount: format( Math.pow(player.goldenQuarks + 1, 1.5) * Math.pow(player.highestSingularityCount + 1, 2), @@ -1647,7 +1647,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.xyz') + return i18next.t('singularity.perks.xyz.name') }, levels: [1, 20, 200], description: (n: number, levels: number[]) => { @@ -1663,7 +1663,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.generousOrbs') + return i18next.t('singularity.perks.generousOrbs.name') }, levels: [1, 2, 5, 10, 15, 20, 25, 30, 35], description: (n: number, levels: number[]) => { @@ -1680,51 +1680,32 @@ export const singularityPerks: SingularityPerk[] = [ for (let i = 8; i > 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.generousOrbs', { + return i18next.t('singularity.perks.generousOrbs.default', { amount: overfluxBonus[i] }) } } - return i18next.t('singularity.perks.generousOrbs', { amount: '215' }) + return i18next.t('singularity.perks.generousOrbs.default', { amount: '215' }) }, ID: 'generousOrbs' }, { name: () => { - return i18next.t('singularity.perkNames.researchDummies') + return i18next.t('singularity.perks.researchDummies.name') }, levels: [1, 11], description: (n: number, levels: number[]) => { if (n >= levels[1]) { return i18next.t('singularity.perks.researchDummies.hasLevel1') } else { - return i18next.t('singularity.perks.researchDummies.otherwise') + return i18next.t('singularity.perks.researchDummies.default') } }, ID: 'researchDummies' }, { name: () => { - return i18next.t('singularity.perkNames.eternalAscensions') - }, - levels: [1, 25], - description: (n: number, levels: number[]) => { - const amount = format(1 + player.singularityCount / 10, 1) - if (n >= levels[1]) { - return i18next.t('singularity.perks.eternalAscensions.hasLevel1', { - amount - }) - } else { - return i18next.t('singularity.perks.eternalAscensions.default', { - amount - }) - } - }, - ID: 'eternalAscensions' - }, - { - name: () => { - return i18next.t('singularity.perkNames.antGodsCornucopia') + return i18next.t('singularity.perks.antGodsCornucopia.name') }, levels: [1, 30, 70, 100], description: (n: number, levels: number[]) => { @@ -1742,21 +1723,21 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.sweepomatic') + return i18next.t('singularity.perks.sweepomatic.name') }, levels: [2, 101], description: (n: number, levels: number[]) => { if (n >= levels[1]) { return i18next.t('singularity.perks.sweepomatic.hasLevel1') } else { - return i18next.t('singularity.perks.sweepomatic.otherwise') + return i18next.t('singularity.perks.sweepomatic.default') } }, ID: 'sweepomatic' }, { name: () => { - return i18next.t('singularity.perkNames.superStart') + return i18next.t('singularity.perks.superStart.name') }, levels: [2, 3, 4, 7, 15], description: (n: number, levels: number[]) => { @@ -1776,7 +1757,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.notSoChallenging') + return i18next.t('singularity.perks.notSoChallenging.name') }, levels: [4, 7, 10, 15, 20], description: (n: number, levels: number[]) => { @@ -1796,7 +1777,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.automationUpgrades') + return i18next.t('singularity.perks.automationUpgrades.name') }, levels: [5, 10, 15, 25, 30, 100], description: (n: number, levels: number[]) => { @@ -1818,7 +1799,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.evenMoreQuarks') + return i18next.t('singularity.perks.evenMoreQuarks.name') }, // dprint-ignore levels: [ @@ -1829,7 +1810,7 @@ export const singularityPerks: SingularityPerk[] = [ description: (n: number, levels: number[]) => { for (let i = levels.length - 1; i >= 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.evenMoreQuarks.m', { + return i18next.t('singularity.perks.evenMoreQuarks.default', { stack: i + 1, inc: format(100 * (Math.pow(1.05, i + 1) - 1), 2) }) @@ -1842,7 +1823,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.shopSpecialOffer') + return i18next.t('singularity.perks.shopSpecialOffer.name') }, levels: [5, 20, 51], description: (n: number, levels: number[]) => { @@ -1858,27 +1839,27 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.potionAutogenerator') + return i18next.t('singularity.perks.potionAutogenerator.name') }, levels: [6], description: () => { - return i18next.t('singularity.perks.potionAutogenerator') + return i18next.t('singularity.perks.potionAutogenerator.default') }, ID: 'potionAutogenerator' }, { name: () => { - return i18next.t('singularity.perkNames.respecBeGone') + return i18next.t('singularity.perks.respecBeGone.name') }, levels: [7], description: () => { - return i18next.t('singularity.perks.respecBeGone') + return i18next.t('singularity.perks.respecBeGone.default') }, ID: 'respecBeGone' }, { name: () => { - return i18next.t('singularity.perkNames.forTheLoveOfTheAntGod') + return i18next.t('singularity.perks.forTheLoveOfTheAntGod.name') }, levels: [10, 15, 25], description: (n: number, levels: number[]) => { @@ -1894,7 +1875,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.itAllAddsUp') + return i18next.t('singularity.perks.itAllAddsUp.name') }, levels: [ 10, @@ -1916,10 +1897,8 @@ export const singularityPerks: SingularityPerk[] = [ description: (n: number, levels: number[]) => { for (let i = levels.length - 1; i >= 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.itAllAddsUp', { - div: format(1 + (i + 1) / 5, 2, true), - div2: format(1 + (i + 1) / 5, 2, true), - cap: format(1 + (i + 1) / 5, 2, true) + return i18next.t('singularity.perks.itAllAddsUp.default', { + div: format(1 + (i + 1) / 5, 2, true) }) } } @@ -1930,7 +1909,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.automagicalRunes') + return i18next.t('singularity.perks.automagicalRunes.name') }, levels: [15, 30, 40, 50], description: (n: number, levels: number[]) => { @@ -1948,7 +1927,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.derpSmithsCornucopia') + return i18next.t('singularity.perks.derpSmithsCornucopia.name') }, levels: [ 18, @@ -1971,7 +1950,7 @@ export const singularityPerks: SingularityPerk[] = [ description: (n: number, levels: number[]) => { for (let i = levels.length - 1; i >= 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.derpSmithsCornucopia', { + return i18next.t('singularity.perks.derpSmithsCornucopia.default', { counter: i + 1 }) } @@ -1983,17 +1962,27 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.exaltedAchievements') + return i18next.t('singularity.perks.eternalAscensions.name') + }, + levels: [25], + description: () => { + return i18next.t('singularity.perks.eternalAscensions.default') + }, + ID: 'eternalAscensions' + }, + { + name: () => { + return i18next.t('singularity.perks.exaltedAchievements.name') }, levels: [25], description: () => { - return i18next.t('singularity.perks.exaltedAchievements') + return i18next.t('singularity.perks.exaltedAchievements.default') }, ID: 'exaltedAchievements' }, { name: () => { - return i18next.t('singularity.perkNames.coolQOLCubes') + return i18next.t('singularity.perks.coolQOLCubes.name') }, levels: [25, 35], description: (n: number, levels: number[]) => { @@ -2007,13 +1996,17 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.irishAnt') + return i18next.t('singularity.perks.irishAnt.name') }, - levels: [35, 42, 49, 56, 63, 70, 77], + levels: [35, 42, 49, 56, 63, 70, 77, 135, 142, 149, 156, 163, 170, 177], description: (n: number, levels: number[]) => { for (let i = levels.length - 1; i >= 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.irishAnt', { i: 5 * (i + 1) }) + if (i >= 7) { + return i18next.t('singularity.perks.irishAnt.default', { i: (6 * (i - 6)) + 35 }) + } else { + return i18next.t('singularity.perks.irishAnt.default', { i: 5 * (i + 1) }) + } } } @@ -2023,13 +2016,13 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.overclocked') + return i18next.t('singularity.perks.overclocked.name') }, levels: [50, 60, 75, 100, 125, 150, 175, 200, 225, 250], description: (n: number, levels: number[]) => { for (let i = levels.length - 1; i >= 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.overclocked', { i: i + 1 }) + return i18next.t('singularity.perks.overclocked.default', { i: i + 1 }) } } @@ -2039,7 +2032,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.wowCubeAutomatedShipping') + return i18next.t('singularity.perks.wowCubeAutomatedShipping.name') }, levels: [50, 150], description: (n: number, levels: number[]) => { @@ -2055,13 +2048,13 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.congealedblueberries') + return i18next.t('singularity.perks.congealedblueberries.name') }, levels: [64, 128, 192, 256, 270], description (n, levels) { for (let i = levels.length - 1; i >= 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.congealedblueberries', { + return i18next.t('singularity.perks.congealedblueberries.default', { i: i + 1 }) } @@ -2072,11 +2065,11 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.goldenRevolution') + return i18next.t('singularity.perks.goldenRevolution.name') }, levels: [100], description: () => { - return i18next.t('singularity.perks.goldenRevolution', { + return i18next.t('singularity.perks.goldenRevolution.default', { current: format(Math.min(100, 0.4 * player.singularityCount), 1) }) }, @@ -2084,11 +2077,11 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.goldenRevolutionII') + return i18next.t('singularity.perks.goldenRevolutionII.name') }, levels: [100], description: () => { - return i18next.t('singularity.perks.goldenRevolutionII', { + return i18next.t('singularity.perks.goldenRevolutionII.default', { current: format(Math.min(50, 0.2 * player.singularityCount), 1) }) }, @@ -2096,11 +2089,11 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.goldenRevolutionIII') + return i18next.t('singularity.perks.goldenRevolutionIII.name') }, levels: [100], description: () => { - return i18next.t('singularity.perks.goldenRevolutionIII', { + return i18next.t('singularity.perks.goldenRevolutionIII.default', { current: format(Math.min(500, 2 * player.singularityCount)) }) }, @@ -2108,7 +2101,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.platonicClones') + return i18next.t('singularity.perks.platonicClones.name') }, levels: [100, 200], description: (n: number, levels: number[]) => { @@ -2122,13 +2115,13 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.dilatedFiveLeaf') + return i18next.t('singularity.perks.irishAnt2.name') }, - levels: [100, 150, 200, 225, 250, 265, 260, 265, 269, 272], + levels: [100, 150, 200, 225, 250, 255, 260, 265, 269, 272], description: (n: number, levels: number[]) => { for (let i = levels.length - 1; i >= 0; i--) { if (n >= levels[i]) { - return i18next.t('singularity.perks.dilatedFiveLeaf.desc', { + return i18next.t('singularity.perks.irishAnt2.default', { percent: i + 1 }) } @@ -2136,11 +2129,11 @@ export const singularityPerks: SingularityPerk[] = [ return i18next.t('singularity.perks.evenMoreQuarks.bug') }, - ID: 'dilatedFiveLeaf' + ID: 'irishAnt2' }, { name: () => { - return i18next.t('singularity.perkNames.platSigma') + return i18next.t('singularity.perks.platSigma.name') }, levels: [125, 200], description: (n: number, levels: number[]) => { @@ -2151,7 +2144,7 @@ export const singularityPerks: SingularityPerk[] = [ } } - return i18next.t('singularity.perks.platSigma', { + return i18next.t('singularity.perks.platSigma.default', { counter, current: format(Math.min(60, counter * player.singularityCount), 1) }) @@ -2160,43 +2153,31 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.oneHundredThirtyOne') + return i18next.t('singularity.perks.primalPower.name') }, - levels: [131], - description: () => { - return i18next.t('singularity.perks.oneHundredThirtyOne') - }, - ID: 'oneHundredThirtyOne' - }, - { - name: () => { - return i18next.t('singularity.perkNames.irishAnt2') - }, - levels: [135, 142, 149, 156, 163, 170, 177], + levels: [131, 269], description: (n: number, levels: number[]) => { - for (let i = levels.length - 1; i >= 0; i--) { - if (n >= levels[i]) { - return i18next.t('singularity.perks.irishAnt2', { i: 6 * (i + 1) }) - } + if (n >= levels[1]) { + return i18next.t('singularity.perks.primalPower.hasLevel1') + } else { + return i18next.t('singularity.perks.primalPower.default') } - - return i18next.t('singularity.perks.evenMoreQuarks.bug') }, - ID: 'irishAnt2' + ID: 'primalPower' }, { name: () => { - return i18next.t('singularity.perkNames.midasMilleniumAgedGold') + return i18next.t('singularity.perks.midasMilleniumAgedGold.name') }, levels: [150], description: () => { - return i18next.t('singularity.perks.midasMilleniumAgedGold') + return i18next.t('singularity.perks.midasMilleniumAgedGold.default') }, ID: 'midasMilleniumAgedGold' }, { name: () => { - return i18next.t('singularity.perkNames.goldenRevolution4') + return i18next.t('singularity.perks.goldenRevolution4.name') }, levels: [160, 173, 185, 194, 204, 210, 219, 229, 240, 249], description: (n: number, levels: number[]) => { @@ -2208,7 +2189,7 @@ export const singularityPerks: SingularityPerk[] = [ } } - return i18next.t('singularity.perks.goldenRevolution4', { + return i18next.t('singularity.perks.goldenRevolution4.default', { gq: format(perSecond / divisor, 0, true) }) }, @@ -2216,7 +2197,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.octeractMetagenesis') + return i18next.t('singularity.perks.octeractMetagenesis.name') }, levels: [200, 205], description: (n: number, levels: number[]) => { @@ -2230,7 +2211,7 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.immaculateAlchemy') + return i18next.t('singularity.perks.immaculateAlchemy.name') }, levels: [200, 208, 221], description: (n: number, levels: number[]) => { @@ -2246,24 +2227,14 @@ export const singularityPerks: SingularityPerk[] = [ }, { name: () => { - return i18next.t('singularity.perkNames.skrauQ') + return i18next.t('singularity.perks.skrauQ.name') }, levels: [200], description: () => { const amt = format(Math.pow((player.singularityCount - 179) / 20, 2), 4) - return i18next.t('singularity.perks.skrauQ', { amt }) + return i18next.t('singularity.perks.skrauQ.default', { amt }) }, ID: 'skrauQ' - }, - { - name: () => { - return i18next.t('singularity.perkNames.twoHundredSixtyNine') - }, - levels: [269], - description: () => { - return i18next.t('singularity.perks.twoHundredSixtyNine') - }, - ID: 'twoHundredSixtyNine' } ] diff --git a/translations/da.json b/translations/da.json index b4e432fb0..43e409b28 100644 --- a/translations/da.json +++ b/translations/da.json @@ -1397,35 +1397,47 @@ "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", "description": "(Hover for more details. Perks in gold text were added or improved in this Singularity)", - "welcometoSingularity": "Welcome to the Singualrity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%", - "goldenCoins": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, "xyz": { + "name": "XYZ: Xtra dailY rewardZ", "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "Hepteract Autocraft will be unlocked", - "generousOrbs": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%", - "researchDummies": { - "hasLevel1": "You permanently keep Auto Research", - "otherwise": "You can Research using Hover to Buy" + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" + "researchDummies": { + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" }, "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." - }, - "sweepomatic":{ + }, + "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { + "name": "Super Start", "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", @@ -1433,6 +1445,7 @@ "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { + "name": "Not So Challenging", "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", @@ -1440,6 +1453,7 @@ "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { + "name": "Automation Upgrades", "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", @@ -1448,60 +1462,128 @@ "default": "You always have w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { + "name": "Even More Quarks", "bug": "This is a bug! Contact Platonic if you see this message, somehow.", - "m": "You gain {{stack}} stacks of 5% Quarks! Total Increase: +{{inc}}%" + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { + "name": "Shop Special Offer", "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" }, - "potionAutogenerator": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity.", - "respecBeGone": "Talismans now buff all runes at all times!", + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talismans now buff all runes at all times!" + }, "forTheLoveOfTheAntGod": { + "name": "For the love of (the Ant) God!", "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" }, - "itAllAddsUp": "ADD code reward is divided by {{div}} but the cooldown is also divided by {{div2}} and capacity is multiplied by {{cap}} (rounded up).", + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Automagical Runes", "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", "default": "Runes autobuyer will buy Blessings and Spirits" }, - "exaltedAchievements": "Unlocks new, very difficult achievements! They are earned differently from others, however...", + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + }, "coolQOLCubes": { + "name": "Cool QoL Cubes", "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", "default": "Researches related to opening cubes will no longer reset on Ascension" }, - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Wow! Cube Automated Shipping", "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Clones of Platonic Clicking at Your Desktop", "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" + }, "octeractMetagenesis": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Immaculate Alchemy", "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No minimal Singularity to purchase required", @@ -1859,44 +1941,6 @@ "penaltyRough": "Your penalties will sharply worsen in <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "xyz": "XYZ: Xtra dailY rewardZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Research for Dummies", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Automation Upgrades", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ" } }, "general": { diff --git a/translations/de.json b/translations/de.json index 7027b0091..89a8f46e8 100644 --- a/translations/de.json +++ b/translations/de.json @@ -1555,35 +1555,47 @@ "unlockedIn": "In Singularity {{sing}} schaltest du einen neuen Vorteil frei", "header": "Die höchste erreichte Singularität die du erreicht hast ist die {{ord}} Singularität.
Hier ist eine List mit Boni die du gesammelt hast um die Strafen auszugleichen", "description": "(Fahre darüber für mehr Details. Boni in goldenem Text wurden in dieser Singularität hinzugefügt oder verbessert)", - "welcometoSingularity": "Willkommen bei der Singularität! Eine Fähigkeit fürs erreichen: du kannst jetzt Hepteract automatisch herstellen (wenn du diese wieder freigeschaltet hast) und Platonic Verbesserungen werden alle bezahlbaren gekauft!", - "unlimitedGrowth": "+10% mehr Quarks and Auftstiegswert für jede Singularität. Aktuell: +{{amount}}%", - "goldenCoins": "Goldene Quarks in der Bank verbessern deine Münzproduktion. Besonders stark beim ersten Aufstieg je Singularität. Aktuell: x{{amount}}", + "welcometoSingularity": { + "name": "Willkommen bei Singularität!", + "default": "Willkommen bei der Singularität! Eine Fähigkeit fürs erreichen: du kannst jetzt Hepteract automatisch herstellen (wenn du diese wieder freigeschaltet hast) und Platonic Verbesserungen werden alle bezahlbaren gekauft!" + }, + "unlimitedGrowth": { + "name": "Unbegrenztes Wachstum", + "default": "+10% mehr Quarks and Auftstiegswert für jede Singularität. Aktuell: +{{amount}}%" + }, + "goldenCoins": { + "name": "Goldene Münzen", + "default": "Goldene Quarks in der Bank verbessern deine Münzproduktion. Besonders stark beim ersten Aufstieg je Singularität. Aktuell: x{{amount}}" + }, "xyz": { + "name": "XYZ: Xtra dailY rewardZ", "hasLevel2": "Zusätzlich zu goldenen Quarks und gratis Leveln (+0.2/+0.2/+1) für Upgrades 1/2/3 der goldenen Quarks erhältst du die DOPPELTE Menge an gratis Leven durch die tägliche Spezialaktion!", "hasLevel1": "Zusätzlich zu goldenen Quarks und gratis Leveln erhältst du von der täglichen Spezialaktion entsprechend +0.2/+0.2/+1 gratis Level von Upgrade 1/2/3 der goldenen Quarks!", "default": "Die tägliche Spezialaktion belohnt dich jetzt mit goldenen Quarks und gratis Leveln für zufällige Singularitäts-Upgrades. Beide skalieren mit deiner Singularitätszahl!" }, - "hepteractAutocraft": "Automatisierung der Hepterakt-Schmiede wird freigeschaltet", - "generousOrbs": "Beim Öffnen von Würfeln, kann der Effect von Orbs des Überflusses auf Quarks, jetzt bis {{amount}}% gehen.", + "generousOrbs": { + "name": "Generous Orbs", + "default": "Beim Öffnen von Würfeln, kann der Effect von Orbs des Überflusses auf Quarks, jetzt bis {{amount}}% gehen." + }, "researchDummies": { + "name": "Forschung für Dummies", "hasLevel1": "Du behältst automatische Forschung dauerhaft", - "otherwise": "Du kannst nun Forschungen durch darüber fahren abschließen." - }, - "eternalAscensions": { - "hasLevel1": "Dein Aufstiegszähler ist multipliziert basierend auf deine Singularität und automatische Aufstiegsfunktion anhand von der realen Zeit freigeschaltet! Momentan: x{{amount}}", - "default": "Deine Aufstiegsanzahl wird aufgrund deiner Singularität multipliziert! Aktuell: x{{amount}}" + "default": "Du kannst nun Forschungen durch darüber fahren abschließen." }, "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ameisengeschwindigkeit hat nun eine 'unzerstörbare' x4,44 Multiplikator und eine wahre unzerstörbare x1e12 Multiplikator!", "hasLevel2": "Ameisengeschwindigkeit hat nun eine 'unzerstörbare' x4,44 Multiplikator und eine wahre unzerstörbare x1e6 Multiplikator!", "hasLevel1": "Ameisengeschwindigkeit hat nun eine 'unzerstörbare' x4,44 Multiplikator und eine wahre unzerstörbare x1000 Multiplikator!", "default": "Ameisengeschwindigkeit hat nun permanent ein 'unzerstörbare' x4,44 Multiplikator." }, "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { + "name": "Super Start", "hasLevel4": "Du startest jeden Aufstieg mit einer Transzendenz, einer Reinkarnation, 1001 Mythos, 2,22e2222 Teilchen und 500 Obtainium", "hasLevel3": "Du startest jeden Aufstieg mit einer Transzendenz, einer Reinkarnation, 1001 Mythos, 1e100 Teilchen und 500 Obtainium", "hasLevel2": "Du startest jeden Aufstieg mit einer Transzendenz, einer Reinkarnation, 1001 Mythos, 1e16 Teilchen und 500 Obtainium", @@ -1591,6 +1603,7 @@ "default": "Du startest jeden Aufstieg mit einer Transzendenz und 1001 Mythos" }, "notSoChallenging": { + "name": "Nicht so herausfordernd", "hasLevel4": "Du beginnst jeden Aufstieg mit einem Abschluss von Herausforderung 6, 7 & 9 und 5 Abschlüssen von Herausforderung 8", "hasLevel3": "Du beginnst jeden Aufstieg mit einem Abschluss von Herausforderung 6 & 7 und 5 Abschlüssen von Herausforderung 8", "hasLevel2": "Du beginnst jeden Aufstieg mit einem Abschluss von Herausforderung 6, 7 und 8", @@ -1598,6 +1611,7 @@ "default": "Du beginnst jeden Aufstieg mit einem Abschluss von Herausforderung 6" }, "automationUpgrades": { + "name": "Automatisierungs-Upgrades", "hasLevel5": "Nach erreichen der 100sten Singularität wirst du den Geschmack von 'Wow! Ein Haufen Schokoladenplätzchen' nie vergessen!", "hasLevel4": "Du behältst w1x4 bis w1x8, w2x10, r6x5, r6x10 und r6x20. Der Automatisierungs-Markt wird ebenfalls automatisch gekauft!", "hasLevel3": "Du behältst w1x4 bis w1x8 und w2x10. Der Automatisierungs-Markt wird jetzt automatisch gekauft!", @@ -1606,67 +1620,128 @@ "default": "You hast immer w1x7. (Autokäufer für Teilchen-Gebäude)" }, "evenMoreQuarks": { + "name": "Noch mehr Quarks", "bug": "Das ist ein Bug! Kontaktiere Platonic wenn du aus irgendeinem Grund diese Nachricht siehts.", - "m": "Du erhältst {{stack}} Level von +5% Quarks! Gesamte Verbesserung: +{{inc}}%" + "default": "Du erhältst <> Level von <> Quarks! Gesamte Verbesserung: <>%" }, "shopSpecialOffer": { + "name": "Markt Sonderangebot", "hasLevel2": "Marktupgrades aus der Reinkarnations und Aufstiegsstufe behältst du nun dauerhaft!", "hasLevel1": "Du behältst dauerhaft 100 Level aller Marktupgrades in der ersten Reihe.", "default": "You startest jede Singularität mit 10 gratis Leveln von jedem Marktupgrade in der ersten Reihe." }, - "potionAutogenerator": "Alle 180 Sekunden wird automatisch ein gratis Gaben & Obtainium-Trank verwendet! Je Singularität wird das Intervall um 3% reduziert.", - "respecBeGone": "Talismane verstärken nun all Runen gleichzeitig!", + "potionAutogenerator": { + "name": "Trank Autogenerator", + "default": "Alle 180 Sekunden wird automatisch ein gratis Gaben & Obtainium-Trank verwendet! Je Singularität wird das Intervall um 3% reduziert." + }, + "respecBeGone": { + "name": "Konzentration, ist weg!", + "default": "Talismane verstärken nun all Runen gleichzeitig!" + }, "forTheLoveOfTheAntGod": { + "name": "Für die Liebe des (Ameisen) Gottes!", "hasLevel2": "Du behältst dauerhaft die Ameisen-Autokäufer und beginnst jeden Aufstieg mit einer Stufe 8 Ameise.", "hasLevel1": "Du behältst dauerhaft die Ameisen-Autokäufer und beginnst jeden Aufstieg mit einer Stufe 5 Ameise.", "default": "Du behältst dauerhaft die Ameisen-Autokäufer und beginnst jeden Aufstieg mit einer Stufe 1 Ameise." }, - "itAllAddsUp": "Die ADD-Code Belohnung wir durch {{div}} geteilt aber die Abklingzeit wird ebenfalls durch {{div2}} geteilt und die Kapazität wird mit {{cap}} multipliziert (aufgerundet).", + "itAllAddsUp": { + "name": "Es summiert sich alles", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Automagische Runen", "hasLevel3": "Runen-Autokäufer kaufen jetzt auch Segen, Geister, Talisman-Splitter, Fragmente and verbessern Unendlicher Aufstieg UND Antiquitäten des Ameisengottes", "hasLevel2": "Runen-Autokäufer kaufen jetzt auch Segen, Geister, Talisman-Splitter, Fragmente and verbessern Unendlicher Aufstieg", "hasLevel1": "Runen-Autokäufer kaufen jetzt auch Segen & Geister and verbessern Unendlicher Aufstieg", "default": "Runen-Autokäufer kaufen jetzt auch Segen und Geister" }, - "exaltedAchievements": "Schaltet neue, sehr schwere Erfolge frei! Du musst sie dir aber auf andere Weise verdienen als andere.", + "eternalAscensions": { + "name": "Ewige Aufstiege", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "EXALT Tresor", + "default": "Unlocks new, very difficult challenges! They may only be entered after reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Kornschmiede von Derpschmied", + "default": "Mit dem Segen von Derpsmith gewährt dir jede Singularität +{{counter}}% mehr Okterakte!" + }, "coolQOLCubes": { + "name": "Coole Qol-Würfel", "hasLevel1": "Behalte alle Würfelöffnungs-Forschungen UND schalte die Möglichkeit frei beim Aufstieg automatisch einen Prozentsatz deiner Würfel zu öffnen!", "default": "Forschungen mit Bezug auf das Öffnen von Würfeln werden beim Aufstieg nicht mehr zurückgesetzt" }, - "irishAnt": "Ants blessed with the luck of the Irish grant ☘ {{i}} Ambrosia Luck!", - "irishAnt2": "Ants blessed with more fortunate luck of the Irish grant ☘ {{i}} more Ambrosia Luck!", - "overclocked": "Levellimits für bestimmte Singularitätsupgrades werden um {{i}} erhöht!", + "irishAnt": { + "name": "Irische Ameisen", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irische Ameisen II: Elektrischer Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Übertaktet", + "default": "Levellimits für bestimmte Singularitätsupgrades werden um {{i}} erhöht!" + }, "wowCubeAutomatedShipping": { + "name": "Wow! Würfel automatischer Versand", "hasLevel1": "Kaufe beim Aufstieg automatisch Würfel-Upgrades, egal wo du bist!", "default": "Kaufe beim Aufstieg automatisch Würfel-Upgrades, aber nur in Singularitäts-Herausforderungen." }, - "congealedblueberries": "Halbfeste Blaubeeren verhalten sich wie normale Blaubeeren. Erhalte +{{i}} Blaubeeren, die im Blaubeeren-Baum verwendet werden können!", - "goldenRevolution": "Singularität gibt 0.4% mehr goldene Quarks je Singularity. Aktuell: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Goldene Quarks sind 0.2% günstiger je Singularity. Aktuell: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gibt 2% mehr goldene Quarks je Singularity. Aktuell: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Halbfeste Blaubeeren verhalten sich wie normale Blaubeeren. Erhalte +{{i}} Blaubeeren, die im Blaubeeren-Baum verwendet werden können!" + }, + "goldenRevolution": { + "name": "Goldene Revolution", + "default": "Singularität gibt 0.4% mehr goldene Quarks je Singularity. Aktuell: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Goldene Revolution II", + "default": "Goldene Quarks sind 0.2% günstiger je Singularity. Aktuell: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Goldene Revolution III", + "default": "Export gibt 2% mehr goldene Quarks je Singularity. Aktuell: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Klone von Platonic klicken auf Ihrem Desktop", "hasLevel1": "Kaufe automatsch platonische Upgrades mit jedem Aufstieg, ohne dafür Obtainium oder Gaben auszugeben. Überall!", "default": "Kaufe automatisch platonische Upgrades mit jedem Aufstieg, ohne dafür Obtainium oder Gaben auszugeben. Aber nur in Singularität-Herausforderungen." }, - "dilatedFiveLeaf": { - "desc": "Increase your base ☘ Ambrosia Luck by <>! +1% per perk level." + "platSigma": { + "name": "PL-AT Σ", + "default": "Code 'add' füllt sich {{counter}}% schneller je Level je Singularity. Aktuell: {{current}} (MAX: -60% Abklingzeit)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Jede Verwendung des 'add'-Codes gibt 0,01 gratis Level von Goldene Quarks 1 und 0,05 gratis Level von Goldene Quarks 3." + }, + "goldenRevolution4": { + "name": "Goldene Revolution IV", + "default": "Jeden Okterakt-Tick, erhalte 1/{{gq}} der goldene Quarks die du beim erreichen der Singularität erhalten würdest!" }, - "platSigma": "Code 'add' füllt sich {{counter}}% schneller je Level je Singularity. Aktuell: {{current}} (MAX: -60% Abklingzeit)", - "midasMilleniumAgedGold": "Jede Verwendung des 'add'-Codes gibt 0,01 gratis Level von Goldene Quarks 1 und 0,05 gratis Level von Goldene Quarks 3. ", - "goldenRevolution4": "Jeden Okterakt-Tick, erhalte 1/{{gq}} der goldene Quarks die du beim erreichen der Singularität erhalten würdest!", "octeractMetagenesis": { - "hasLevel1": "Kaufe automatisch Würfel-Upgrades bei jedem Aufstieg, egal wo du bist!", - "default": "Kaufe automatisch Würfel-Upgrades bei jedem Aufstieg. Aber nur in Singularitäts-Herausforderungen." + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Immaculate Alchemy", "hasLevel2": "Nach Singularität 200 funktioniert Zeitraffer nicht mehr! Stattdessen wird dein GQ Gewinn mit 8 multipliziert und deine GQ Kaufkosten durch 8 dividiert.", "hasLevel1": "Nach Singularität 200 funktioniert Zeitraffer nicht mehr! Stattdessen wird dein GQ Gewinn mit 5 multipliziert und deine GQ Kaufkosten durch 5 dividiert.", "default": "Nach Singularität 200 funktioniert Zeitraffer nicht mehr! Stattdessen wird dein GQ Gewinn mit 3 multipliziert und deine GQ Kaufkosten durch 3 dividiert." }, - "skrauQ": "Multiplizieren alle deine Quark-Gewinne mit ((Singularität - 179)/20)^2. Aktuell: {{amt}}... Ja, es ist so gut.", - "derpSmithsCornucopia": "Mit dem Segen von Derpsmith gewährt dir jede Singularität +{{counter}}% mehr Okterakte!", - "oneHundredThirtyOne": "Gain <> Ambrosia Luck!", - "twoHundredSixtyNine": "Gain <> Ambrosia Luck!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiplizieren alle deine Quark-Gewinne mit ((Singularität - 179)/20)^2. Aktuell: {{amt}}... Ja, es ist so gut." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "Keine minimale Menge an Singularitäten zum Kaufen erforderlich", @@ -2064,49 +2139,6 @@ "penaltyRough": "Deine Strafen werden in <> stark verschlimmert.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Unbegrenztes Wachstum", - "goldenCoins": "Goldene Münzen", - "xyz": "XYZ: Xtra dailY rewardZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Forschung für Dummies", - "eternalAscensions": "Ewige Aufstiege", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Nicht so herausfordernd", - "automationUpgrades": "Automatisierungs-Upgrades", - "evenMoreQuarks": "Noch mehr Quarks", - "shopSpecialOffer": "Markt Sonderangebot", - "potionAutogenerator": "Trank Autogenerator", - "respecBeGone": "Konzentration, ist weg!", - "forTheLoveOfTheAntGod": "Für die Liebe des (Ameisen) Gottes!", - "itAllAddsUp": "Es summiert sich alles", - "automagicalRunes": "Automagische Runen", - "exaltedAchievements": "EXALT Tresor", - "derpSmithsCornucopia": "Kornschmiede von Derpschmied", - "coolQOLCubes": "Coole Qol-Würfel", - "irishAnt": "Irische Ameisen", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Irische Ameisen II: Elektrischer Boogaloo", - "overclocked": "Übertaktet", - "wowCubeAutomatedShipping": "Wow! Würfel automatischer Versand", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Goldene Revolution", - "goldenRevolutionII": "Goldene Revolution II", - "goldenRevolutionIII": "Goldene Revolution III", - "platonicClones": "Klone von Platonic klicken auf Ihrem Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ", - "twoHundredSixtyNine": "Two Hundred and Sixty Nine!", - "oneHundredThirtyOne": "One Hundred and Thirty One!" } }, "general": { @@ -2134,7 +2166,7 @@ "enabled": "(Aktiviert)", "infinity": "Unendlich", "sacrificeCapital": "AUFGEBEN", - "multiBuyInstructions": "Halte um mehrere Level, beim Klicken, auf einmal zu kaufen!", + "multiBuyInstructions": "Halte <> um mehrere Level, beim Klicken, auf einmal zu kaufen!", "autoOnColon": "Auto: AN", "autoOffColon": "Auto: AUS", "buyMaxOn": "Max. kaufen: AN", @@ -3589,4 +3621,4 @@ "ADD_CODE_CAP_BUFF": "Code 'add' Capacity is multiplied by <>" } } -} +} diff --git a/translations/en.json b/translations/en.json index 3f02bfdf4..61eabdb9f 100644 --- a/translations/en.json +++ b/translations/en.json @@ -1,3612 +1,3644 @@ -{ - "testing": { - "saveInLive": "Savefiles cannot be used in live!", - "saveInLive2": "You can't load this save anymore!", - "errorSaving": "An error prevented this file from being saved.", - "gameSaved": "Game saved successfully!" - }, - "save": { - "loadFailed": "Unable to load save.", - "saveToClipboard": "Are you sure you want to enable copy save to clipboard?" - }, - "ambrosia": { - "ambrosia": "Ambrosia", - "amount": "You have <> Ambrosia! [Lifetime: <>]", - "blueberryGeneration": "Each second, gain <> seconds of Blueberry Time.", - "perGen": "Currently gaining <> Ambrosia with a <> chance of another. [<>] {{extra}}", - "blueberrySecond": "You currently have <> accumulated Blueberry Seconds! Generating Ambrosia when <> is accumulated.", - "bonuses": "Your ambrosia is giving <> ALL cubes and <> Quarks!", - "prerequisite": "Prerequisites:", - "prereqNotMet": " (Not Met!)", - "blueberryCost": "Blueberries (To Activate):", - "prereqNotMetAlert": "You do not have the necessary prerequisites to purchase this upgrade.", - "notEnoughBlueberries": "You do not have enough Blueberries to activate this module.", - "availableBlueberries": "You have <> unspent Blueberries. Unlock higher tier modules below using them!", - "cubeUpgradeThresholds": "Your Blueberry Time requirements have been doubled <> times due to lifetime Ambrosia. <>!", - "cubeUpgradeRedBarFills": "Your Red Bar has filled <> times while Cookie Upgrade 29 is purchased, giving <>!", - "ambrosiaBuyPrompt": "How many Ambrosia would you like to spend? You have {{amount}} Ambrosia. Type -1 to use max!", - "refund": "You have refunded all spent Blueberries and Ambrosia.", - "refundWord": "Refund", - "data": { - "ambrosiaTutorial": { - "name": "Ambrosia Tutorial Module", - "description": "Blueberries generate Ambrosia over time. Spend them in the Ambrosia tree! +5% Cubes/lvl, +1% Quarks/lvl", - "effect": "This tutorial module increases cube gain by {{cubeAmount}}% and quarks by {{quarkAmount}}%" - }, - "ambrosiaQuarks1": { - "name": "Ambrosia Quark Module I", - "description": "Congrats on completing the tutorial module. You need to have it maxed to buy levels of this. +1% Quarks/lvl.", - "effect": "This quark module increases Quark gain by {{amount}}%" - }, - "ambrosiaCubes1": { - "name": "Ambrosia Cube Module I", - "description": "Congrats on completing the tutorial module. You need to have it maxxed to buy levels of this. +5% Cubes/lvl. Every 10 levels gives 1.1x Cubes.", - "effect": "This cube module increases cube gain by {{amount}}%" - }, - "ambrosiaLuck1": { - "name": "Ambrosia Luck Module I", - "description": "Congrats on completing the tutorial module. You need to have it maxxed to buy levels of this. ☘ +2 Ambrosia Luck/lvl. Every 10 levels gives ☘ +12 more!", - "effect": "This luck module increases ☘ Ambrosia Luck by {{amount}}" - }, - "ambrosiaCubeQuark1": { - "name": "Ambrosia Cube-Quark Hybrid Module I", - "description": "A first generation hybrid module. Gain +0.01% Quarks per level per digit in the values of all cube types.", - "effect": "This first generation hybrid module increases Quark gain by {{amount}}%" - }, - "ambrosiaLuckQuark1": { - "name": "Ambrosia Luck-Quark Hybrid Module I", - "description": "A first generation hybrid module. Gain +0.01% more Quarks per level per 1 ☘ Ambrosia Luck! Diminishing returns after 1,000 Luck.", - "effect": "This first generation hybrid module increases Quark gain by {{amount}}%" - }, - "ambrosiaQuarkCube1": { - "name": "Ambrosia Quark-Cube Hybrid Module I", - "description": "A first generation hybrid module. Gain +0.05% more cubes per level per digit in your Quark balance, squared!", - "effect": "This first generation hybrid module increases cube gain by {{amount}}%" - }, - "ambrosiaLuckCube1": { - "name": "Ambrosia Luck-Cube Hybrid Module I", - "description": "A first generation hybrid module. Gain +0.02% more cubes per level per 1 ☘ Ambrosia Luck!", - "effect": "This first generation hybrid module increases cube gain by {{amount}}%" - }, - "ambrosiaCubeLuck1": { - "name": "Ambrosia Cube-Luck Hybrid Module I", - "description": "A first generation hybrid module. Gain ☘ +0.02 Ambrosia Luck per level per digit in the values of all cube types.", - "effect": "This first generation hybrid module increases ☘ Ambrosia Luck by {{amount}}" - }, - "ambrosiaQuarkLuck1": { - "name": "Ambrosia Quark-Luck Hybrid Module I", - "description": "A first generation hybrid module. Gain ☘ +0.02 Ambrosia Luck per level per digit in your Quark balance, squared.", - "effect": "This first generation hybrid module increases ☘ Ambrosia Luck by {{amount}}" - }, - "ambrosiaQuarks2": { - "name": "Ambrosia Quark Module II", - "description": "Self-Synergies! Gain +1% Quarks per level, +0.1% for every 10 levels in Ambrosia Quark Module I.", - "effect": "This second generation Quark module increases Quark gain by {{amount}}%" - }, - "ambrosiaCubes2": { - "name": "Ambrosia Cube Module II", - "description": "Self-Synergies! Gain +6% cubes / lvl , +0.6% for every 10 levels in Ambrosia Cube Module I. Every 10 levels gives 1.13x cubes.", - "effect": "This second generation Cube module increases cube gain by {{amount}}%" - }, - "ambrosiaLuck2": { - "name": "Ambrosia Luck Module II", - "description": "Self-Synergies! Gain ☘ +3 Ambrosia Luck/lvl, +0.3 for every 10 levels in Ambrosia Luck Module I. Every 10 levels gives ☘ +40 more!", - "effect": "This second generation Luck module increases ☘ Ambrosia Luck by {{amount}}" - }, - "ambrosiaPatreon": { - "name": "Shameless, Ambrosial Patreon Reminder", - "description": "In every realm, Platonic sells out. +1% Blueberry Generation Speed for every +1% Quarks by the Patreon bonus!", - "effect": "Generous Patreon supporters grant you {{amount}}% more Blueberry Time Generation. If you are not already, consider becoming a Patreon supporter to support development!" - }, - "ambrosiaObtainium1": { - "name": "RNG-based Obtainium Booster", - "description": "Gain +0.1% Obtainium per ☘ Ambrosia Luck!", - "effect": "This module increases Obtainium gain by {{amount}}%!" - }, - "ambrosiaOffering1": { - "name": "RNG-based Offering Booster", - "description": "Gain +0.1% Offerings per ☘ Ambrosia Luck!", - "effect": "This module increases Offering gain by {{amount}}%!" - }, - "ambrosiaHyperflux": { - "name": "Hyperfluxed Wow! Cube Industrial Production", - "description": "Gain +1% cubes per level, per level of Platonic Upgrade 4x4 purchased (multiplicative!!!)", - "effect": "This module increases Cubes gain by {{amount}}%!" - } - }, - "loadouts": { - "load": "MODE: LOAD LOADOUT", - "save": "MODE: SAVE LOADOUT", - "none": "No loadout saved in this slot!", - "loadout": "Loadout", - "confirmation": "Saving to this slot will override its build. Are you sure?", - "imported": "Imported loadout" - }, - "importTree": { - "success": "Tree successfully imported!", - "failure": "Could not import tree as it is invalid!", - "error": "Could not parse submitted file! Double check that it is a Blueberry Tree loadout file." - }, - "exportTree": { - "exportButton": "Export" - } - }, - "achievements": { - "descriptions": { - "1": "[{{number}}] A Loyal Employee: Hire your first Worker.", - "2": "[{{number}}] Small Business: Hire 10 Workers.", - "3": "[{{number}}] Now we're synergizing!: Hire 100 Workers.", - "4": "[{{number}}] Gaining Redundancies: Hire 1,000 Workers.", - "5": "[{{number}}] A cog in the machine: Hire 5,000 Workers.", - "6": "[{{number}}] A nail in the machine: Hire 10,000 Workers.", - "7": "[{{number}}] Are we even in the machine anymore?: Hire 20,000 Workers.", - "8": "[{{number}}] STONKS!!!: Purchase 1 Investment.", - "9": "[{{number}}] Planning ahead: Purchase 10 Investments.", - "10": "[{{number}}] Inside Trading: Purchase 100 Investments.", - "11": "[{{number}}] Outside Trading?: Purchase 1,000 Investments.", - "12": "[{{number}}] Market Takeover: Purchase 5,000 Investments.", - "13": "[{{number}}] Trickle-Down Economics: Purchase 10,000 Investments.", - "14": "[{{number}}] Eliminated Regulation: Purchase 20,000 Investments.", - "15": "[{{number}}] Stationery!: Build 1 Printer.", - "16": "[{{number}}] Printing Press: Build 10 Printers.", - "17": "[{{number}}] It prints free money!: Build 100 Printers.", - "18": "[{{number}}] Solving Our Debts: Build 1,000 Printers.", - "19": "[{{number}}] Monopolizing the market: Build 5,000 Printers.", - "20": "[{{number}}] We're running out of Ink!: Build 10,000 Printers.", - "21": "[{{number}}] 3D-printing the universe: Build 20,000 Printers.", - "22": "[{{number}}] A national treasure: Establish 1 Coin Mint.", - "23": "[{{number}}] Now with competition!: Establish 10 Coin Mints.", - "24": "[{{number}}] Counterfeiting with Style!: Establish 100 Coin Mints.", - "25": "[{{number}}] Why do we need all these?: Establish 1000 Coin Mints.", - "26": "[{{number}}] No really, why??: Establish 5,000 Coin Mints.", - "27": "[{{number}}] Is no one to stop us???: Establish 10,000 Coin Mints.", - "28": "[{{number}}] Oh well, time to mint: Establish 20,000 Coin Mints.", - "29": "[{{number}}] Newton's Apprentice: Create 1 Alchemy.", - "30": "[{{number}}] Lab Work: Create 10 Alchemies.", - "31": "[{{number}}] Satanic Becomings: Create 66 Alchemies.", - "32": "[{{number}}] Satan Incarnate: Create 666 Alchemies.", - "33": "[{{number}}] Is this more demonic?: Create 6,666 Alchemies.", - "34": "[{{number}}] Golden Paradise: Create 17,777 Alchemies.", - "35": "[{{number}}] Unlocking secrets to the world: Create 42,777 Alchemies.", - "36": "[{{number}}] Leveling up: Prestige for at least 1 Diamond.", - "37": "[{{number}}] High-Tiered: Prestige for at least 1e+6 Diamonds.", - "38": "[{{number}}] Highly Regarded: Prestige for at least 1e+100 Diamonds.", - "39": "[{{number}}] Prestigious: Prestige for at least 1e+1000 Diamonds.", - "40": "[{{number}}] Legendary: Prestige for at least 1e+10000 Diamonds.", - "41": "[{{number}}] Divine: Prestige for at least 1e+77777 Diamonds.", - "42": "[{{number}}] Perfectly Respected: Prestige for at least 1e+250000 Diamonds.", - "43": "[{{number}}] A Simple Detour: Transcend for at least 1 Mythos.", - "44": "[{{number}}] Tunnel Vision: Transcend for at least 1e+6 Mythos.", - "45": "[{{number}}] Risen from the Ashes: Transcend for at least 1e+50 Mythos.", - "46": "[{{number}}] Paradigm Shift: Transcend for at least 1e+308 Mythos.", - "47": "[{{number}}] Preparation: Transcend for at least 1e+2000 Mythos.", - "48": "[{{number}}] Revising the Plan: Transcend for at least 1e+25000 Mythos.", - "49": "[{{number}}] Leaving the Universe: Transcend for at least 1e+100000 Mythos.", - "50": "[{{number}}] Going Quantum: Reincarnate for at least 1 Particle.", - "51": "[{{number}}] Tunneling Vision: Reincarnate for at least 100,000 Particles.", - "52": "[{{number}}] Simulating the World: Reincarnate for at least 1e+30 Particles.", - "53": "[{{number}}] Multidimensional Creation: Reincarnate for at least 1e+200 Particles.", - "54": "[{{number}}] Lepton Dance: Reincarnate for at least 1e+1500 Particles.", - "55": "[{{number}}] Do we have enough yet?: Reincarnate for at least 1e+5000 Particles.", - "56": "[{{number}}] I Feel Luck in My Cells: Reincarnate for at least 1e+7777 Particles.", - "57": "[{{number}}] One Way Only: Prestige without buying Multipliers.", - "58": "[{{number}}] Authentic Shifting: Transcend without having bought a Multiplier.", - "59": "[{{number}}] The Singularity: Reincarnate without having bought a Multiplier.", - "60": "[{{number}}] Gotta go SLOW!: Prestige without buying Accelerators or Accelerator Boosts.", - "61": "[{{number}}] I'm really going slow: Transcend without having bought Accelerators or Boosts.", - "62": "[{{number}}] Are we there yet?: Reincarnate without having bought Accelerators or Boosts.", - "63": "[{{number}}] A careful search for Diamonds: Get 1e120,000 Coins in [Reduced Diamonds] without buying Accelerators or Boosts.", - "64": "[{{number}}] Very Based: Prestige without purchasing Coin Upgrades.", - "65": "[{{number}}] Miser: Transcend without purchasing Coin Upgrades.", - "66": "[{{number}}] True Miser: Transcend without purchasing Coin or Diamond Upgrades.", - "67": "[{{number}}] Coinless Pursuit: Reincarnate without purchasing Coin Upgrades.", - "68": "[{{number}}] Diamonds don't matter to me!: Reincarnate without purchasing Coin or Diamond Upgrades.", - "69": "[{{number}}] Leave nothing behind: Reincarnate without purchasing Coin, Diamond or Mythos Upgrades.", - "70": "[{{number}}] Leave NOTHING behind.: Reincarnate without purchasing Coin, Diamond, Mythos, or Generator Upgrades.", - "71": "[{{number}}] Out of Order: Buy Generator Upgrade Row 1, #2 first in a Transcension (IV -> III)", - "72": "[{{number}}] More Out of Order: Buy Generator Upgrade Row 1, #3 first in a Transcension (III -> II)", - "73": "[{{number}}] Four's a Company: Buy Generator Upgrade Row 1, #4 first in a Transcension (II -> I)", - "74": "[{{number}}] Five's a Croud: Buy Generator Upgrade Row 1, #5 first in a Transcension (I -> V)", - "75": "[{{number}}] Vaseline without the Machine: Exit [No Multiplier] with at least 1e1000 coins and without any of the row 1 generator upgrades.", - "76": "[{{number}}] Rage against the Machine: Exit [No Accelerator] with at least 1e1000 coins and without any of the row 1 generator upgrades.", - "77": "[{{number}}] Amish Paradise: Exit [No Shards] with at least 1e99,999 coins and without any of the row 1 generator upgrades.", - "78": "[{{number}}] Single-Cell: Complete [No Multiplier] once.", - "79": "[{{number}}] Solidarity: Complete [No Multiplier] three times.", - "80": "[{{number}}] Duplication-Free!: Complete [No Multiplier] five times.", - "81": "[{{number}}] Multitasking Challenged: Complete [No Multiplier] ten times.", - "82": "[{{number}}] No Deaths: Complete [No Multiplier] twenty times.", - "83": "[{{number}}] Population One: Complete [No Multiplier] fifty times.", - "84": "[{{number}}] Insert Another Token: Complete [No Multiplier] seventy-five times.", - "85": "[{{number}}] Slow Start: Complete [No Accelerator] once", - "86": "[{{number}}] Respawn Rate -12%: Complete [No Accelerator] three times.", - "87": "[{{number}}] Putting the Breaks On: Complete [No Accelerator] five times.", - "88": "[{{number}}] Racing a Sloth...: Complete [No Accelerator] ten times.", - "89": "[{{number}}] ... and Losing.: Complete [No Accelerator] twenty times.", - "90": "[{{number}}] Planck Distance Traveled: Complete [No Accelerator] fifty times.", - "91": "[{{number}}] Inverse-Ackermann Growth: Complete [No Accelerator] seventy-five times.", - "92": "[{{number}}] Intact: Complete [No Shards] once.", - "93": "[{{number}}] Augments are Stupid!: Complete [No Shards] three times.", - "94": "[{{number}}] Grandmasters are Brilliant!: Complete [No Shards] five times.", - "95": "[{{number}}] Gotta get those Grandmasters Stronger: Complete [No Shards] ten times.", - "96": "[{{number}}] Summoning Enhancements: Complete [No Shards] twenty times.", - "97": "[{{number}}] Magic 99/99: Complete [No Shards] fifty times.", - "98": "[{{number}}] Perfect Foresight: Complete [No Shards] seventy-five times.", - "99": "[{{number}}] Inflation: Complete [Cost+] once.", - "100": "[{{number}}] Hyperinflation: Complete [Cost+] three times.", - "101": "[{{number}}] Market Bubble: Complete [Cost+] five times.", - "102": "[{{number}}] Bull Market: Complete [Cost+] ten times.", - "103": "[{{number}}] Wealth Inequality: Complete [Cost+] twenty times.", - "104": "[{{number}}] Severe Overpay: Complete [Cost+] fifty times.", - "105": "[{{number}}] Societal Collapse: Complete [Cost+] seventy-five times.", - "106": "[{{number}}] Excavation: Complete [Reduced Diamonds] once.", - "107": "[{{number}}] Digging Deep: Complete [Reduced Diamonds] three times.", - "108": "[{{number}}] Frack As Needed: Complete [Reduced Diamonds] five times.", - "109": "[{{number}}] Unobtainium Pickaxe: Complete [Reduced Diamonds] ten times.", - "110": "[{{number}}] Fortune III: Complete [Reduced Diamonds] twenty times.", - "111": "[{{number}}] Every kiss...: Complete [Reduced Diamonds] fifty times.", - "112": "[{{number}}] ...begins with K.: Complete [Reduced Diamonds] seventy-five times.", - "113": "[{{number}}] Tax evasion!: Complete {[Tax+]} once.", - "114": "[{{number}}] Keeping up with the Joneses: Complete {[Tax+]} twice.", - "115": "[{{number}}] Offshore deposits: Complete {[Tax+]} three times.", - "116": "[{{number}}] Bribing officials: Complete {[Tax+]} five times.", - "117": "[{{number}}] Becoming President: Complete {[Tax+]} ten times.", - "118": "[{{number}}] Charitable Donation: Complete {[Tax+]} fifteen times.", - "119": "[{{number}}] IRS Audit: Complete {[Tax+]} twenty-five times.", - "120": "[{{number}}] Is there anybody in there?: Complete {[No Accelerator/Multiplier]} once.", - "121": "[{{number}}] Human being: Complete {[No Accelerator/Multiplier]} twice.", - "122": "[{{number}}] Interdimensional: Complete {[No Accelerator/Multiplier]} three times.", - "123": "[{{number}}] A slow nickel: Complete {[No Accelerator/Multiplier]} five times.", - "124": "[{{number}}] Multipliers don't even work 0/5: Complete {[No Accelerator/Multiplier]} ten times.", - "125": "[{{number}}] Accelerators don't even work -5/5: Complete {[No Accelerator/Multiplier]} fifteen times.", - "126": "[{{number}}] ACCELERATOR BOOSTS DON'T EVEN WORK -100/5: Complete {[No Accelerator/Multiplier]} twenty-five times.", - "127": "[{{number}}] I hate this challenge: Complete Cost++ Once.", - "128": "[{{number}}] A costly mistake: Complete Cost++ Twice.", - "129": "[{{number}}] Impetus: Complete Cost++ Three Times.", - "130": "[{{number}}] Are you broke yet? Complete Cost++ Five Times.", - "131": "[{{number}}] The world of Finance: Complete Cost++ Ten Times.", - "132": "[{{number}}] Marginal Gains: Complete Cost++ Twenty Times.", - "133": "[{{number}}] I buy these: Complete Cost++ Twenty-Five Times.", - "134": "[{{number}}] Agnostic: Complete No Runes Once.", - "135": "[{{number}}] Ant-i Runes: Complete No Runes Twice.", - "136": "[{{number}}] Isn't it getting tiresome?: Complete No Runes Three Times.", - "137": "[{{number}}] Machine does not accept offerings: Complete No Runes Five Times.", - "138": "[{{number}}] Runes Suck 1/5: Complete No Runes Ten Times.", - "139": "[{{number}}] I didn't even notice Prism was gone: Complete No Runes Twenty Times.", - "140": "[{{number}}] Atheist: Complete No Runes Twenty-Five Times.", - "141": "[{{number}}] Sadism: Complete {[Sadistic I]} Once.", - "142": "[{{number}}] Masochism: Complete {[Sadistic I]} Twice.", - "143": "[{{number}}] Insanity: Complete {[Sadistic I]} Three Times.", - "144": "[{{number}}] How? Complete {[Sadistic I]} Five Times.", - "145": "[{{number}}] Why? Complete {[Sadistic I]} Ten Times.", - "146": "[{{number}}] Descend: Complete {[Sadistic I]} Twenty Times.", - "147": "[{{number}}] End of the Universe: Complete {[Sadistic I]} Twenty-Five Times.", - "148": "[{{number}}] Gas gas gas: Purchase 5 Accelerators.", - "149": "[{{number}}] 0 to 25: Purchase 25 Accelerators.", - "150": "[{{number}}] 0 to 100: Purchase 100 Accelerators", - "151": "[{{number}}] Highway to Hell: Purchase 666 Accelerators.", - "152": "[{{number}}] Perhaps you should brake: Purchase 2,000 Accelerators.", - "153": "[{{number}}] Exit the vehicle now!: Purchase 12,500 Accelerators.", - "154": "[{{number}}] Faster than light: Purchase 100,000 Accelerators.", - "155": "[{{number}}] I've been duped!: Purchase 2 Multipliers.", - "156": "[{{number}}] Funhouse Mirrors: Purchase 20 Multipliers.", - "157": "[{{number}}] Friend of binary: Purchase 100 Multipliers.", - "158": "[{{number}}] Feeling the cost growth yet?: Purchase 500 Multipliers.", - "159": "[{{number}}] Perhaps you'll feel the cost now: Purchase 2,000 Multipliers.", - "160": "[{{number}}] Exponential Synergy: Purchase 12,500 Multipliers.", - "161": "[{{number}}] Cloned: Purchase 100,000 Multipliers.", - "162": "[{{number}}] Jerk > 0: Purchase 2 Accelerator Boosts.", - "163": "[{{number}}] Can't the speedometer move any faster?: Purchase 10 Accelerator Boosts.", - "164": "[{{number}}] 50 G rotations: Purchase 50 Accelerator Boosts.", - "165": "[{{number}}] Dematerialize: Purchase 200 Accelerator Boosts.", - "166": "[{{number}}] Breaking the laws of Physics: Purchase 1,000 Accelerator Boosts.", - "167": "[{{number}}] Decayed Realism: Purchase 5,000 Accelerator Boosts.", - "168": "[{{number}}] Kinda fast: Purchase 15,000 Accelerator Boosts.", - "169": "[{{number}}] The Galactic Feast: Obtain 3 Galactic Crumbs.", - "170": "[{{number}}] Only the finest: Obtain 100,000 Galactic Crumbs.", - "171": "[{{number}}] Six-Course Meal: Obtain 666,666,666 Galactic Crumbs.", - "172": "[{{number}}] Accumulation of Food: Obtain 1e20 Galactic Crumbs.", - "173": "[{{number}}] Cookie Clicking: Obtain 1e40 Galactic Crumbs.", - "174": "[{{number}}] Unlimited Bread Sticks!: Obtain 1e500 Galactic Crumbs.", - "175": "[{{number}}] Restaurant at the end of the Universe: Obtain 1e2500 Galactic Crumbs.", - "176": "[{{number}}] Ant-icipation!: Amass a 2x Ant Multiplier through sacrifice and own a Tier 2 Ant.", - "177": "[{{number}}] Ant-ecedent: Amass a 6x Ant Multiplier through sacrifice and own a Tier 3 Ant.", - "178": "[{{number}}] Ants are friends, not food!: Amass a 20x Ant Multiplier through sacrifice and own a Tier 4 Ant.", - "179": "[{{number}}] Ant Devil?: Amass a 100x Ant Multiplier through sacrifice and own a Tier 5 Ant.", - "180": "[{{number}}] The world's best chef: Amass a 500x Ant Multiplier through sacrifice and own a Tier 6 Ant.", - "181": "[{{number}}] 6 Michelin Stars: Amass a 6,666x Ant Multiplier through sacrifice and own a Tier 7 Ant.", - "182": "[{{number}}] Keys to the Restaurant at the end of the Universe: Amass a 77,777x Ant Multiplier through sacrifice and own a Tier 8 Ant.", - "183": "[{{number}}] Up: Ascend Once.", - "184": "[{{number}}] Double-Up: Ascend Twice.", - "185": "[{{number}}] Give me Ten!: Ascend Ten Times.", - "186": "[{{number}}] Give me a Hundred: Ascend 100 Times.", - "187": "[{{number}}] Give me a Thousand: Ascend 1,000 Times.", - "188": "[{{number}}] Give me some arbitrary number I: Ascend 14,142 Times.", - "189": "[{{number}}] Give me some arbitrary number II: Ascend 141,421 Times.", - "190": "[{{number}}] Now that's what I call getting some Pi!: Attain a constant of 3.14.", - "191": "[{{number}}] One in a million: Attain a constant of 1,000,000 [1e6].", - "192": "[{{number}}] A number: Attain a constant of 4.32e10.", - "193": "[{{number}}] The coolest of numbers: Attain a constant of 6.9e21.", - "194": "[{{number}}] Planck^(-1): Attain a constant of 1.509e33.", - "195": "[{{number}}] Epsilon > a lot: Attain a constant of 1e66.", - "196": "[{{number}}] NUM_MAX: Attain a constant of 1.8e308.", - "197": "[{{number}}] Casualties: Clear 'Reduced Ants' challenge once.", - "198": "[{{number}}] Fatalities: Clear 'Reduced Ants' challenge twice.", - "199": "[{{number}}] Destruction: Clear 'Reduced Ants' challenge three times.", - "200": "[{{number}}] War, what is it good for?: Clear 'Reduced Ants' challenge five times.", - "201": "[{{number}}] Absolutely everything.: Clear 'Reduced Ants' challenge ten times.", - "202": "[{{number}}] Perfect Storm: Clear 'Reduced Ants' challenge twenty times.", - "203": "[{{number}}] Immaculate Storm: Clear 'Reduced Ants' challenge thirty times.", - "204": "[{{number}}] I didn't need those stupid reincarnations anyway!: Clear 'No Reincarnation' challenge once.", - "205": "[{{number}}] [x1,x2,0,x3]: Clear 'No Reincarnation' challenge twice.", - "206": "[{{number}}] Nonmetaphysical: Clear 'No Reincarnation' challenge three times.", - "207": "[{{number}}] Living alone: Clear 'No Reincarnation' challenge five times.", - "208": "[{{number}}] DM me on discord if you read these names: Clear 'No Reincarnation' challenge ten times.", - "209": "[{{number}}] Yeah: Clear 'No Reincarnation' challenge twenty times.", - "210": "[{{number}}] Science! Clear 'No Reincarnation' challenge thirty times.", - "211": "[{{number}}] The IRS strikes back: Clear 'Tax+++' challenge once.", - "212": "[{{number}}] Fiscal Policy: Clear 'Tax+++' challenge twice.", - "213": "[{{number}}] Economic Boom: Clear 'Tax+++' challenge three times.", - "214": "[{{number}}] Ant-onomics: Clear 'Tax+++' challenge five times.", - "215": "[{{number}}] 'Wow Platonic Tax sucks 1/5': Clear 'Tax+++' challenge ten times.", - "216": "[{{number}}] Haha this is hard for some reason: Clear 'Tax+++' challenge twenty times.", - "217": "[{{number}}] Taxes are hard: Clear 'Tax+++' challenge thirty times.", - "218": "[{{number}}] Shiny Blue Rock: Clear 'No Research' once.", - "219": "[{{number}}] It's like Avatar: Clear 'No Research' twice.", - "220": "[{{number}}] It's like Unobtainium: Clear 'No Research' three times.", - "221": "[{{number}}] It's like a thing: Clear 'No Research' five times.", - "222": "[{{number}}] It's like: Clear 'No Research' ten times.", - "223": "[{{number}}] It's: Clear 'No Research' twenty times.", - "224": "[{{number}}] It: Clear 'No Research' thirty times.", - "225": "[{{number}}] Pretty Corrupt: Clear an Ascension with above 100,000 score.", - "226": "[{{number}}] Bought out: Clear an Ascension with above 1 million score.", - "227": "[{{number}}] Utterly Corrupt: Clear an Ascension with above 10 million score.", - "228": "[{{number}}] Antitrust: Clear an Ascension with above 100 million score.", - "229": "[{{number}}] Ant-i-trust: Clear an Ascension with above 1 billion score.", - "230": "[{{number}}] This is pretty unfair: Clear an Ascension with above 5 billion score.", - "231": "[{{number}}] Antichrist: Clear an Ascension with above 25 billion score.", - "232": "[{{number}}] Highly Blessed: Level your Speed Rune Blessing to 100,000.", - "233": "[{{number}}] Divine Blessing: Level your Speed Rune Blessing to 100,000,000.", - "234": "[{{number}}] Blessing III: Level your Speed Rune Blessing to 100 billion.", - "235": "[{{number}}] Spirit I: Level your Speed Spirit to 1 Million.", - "236": "[{{number}}] Spirit II: Level your Speed Spirit to 1 Billion.", - "237": "[{{number}}] Spirit III: Level your Speed Spirit to 1 Trillion.", - "238": "[{{number}}] Three-folded: [Hint: you may want to look into the inception]", - "239": "[{{number}}] Seeing red: [Hint: you may need a lot of red items]", - "240": "[{{number}}] ASCENDED: [Hint: you may need a LOT of Ascensions OR an particularly amazing Ascension]", - "241": "[{{number}}] Aesop: [Hint: you gotta be pretty dang slow]", - "242": "[{{number}}] Aesop's Revenge: [Hint: you gotta be pretty dang fast]", - "243": "[{{number}}] Unsmith: [Hint: unsmith emoji :unsmith: can be a pretty good input]", - "244": "[{{number}}] Smith: [Hint: :antismith: looks promising as well]", - "245": "[{{number}}] BLESSED: [Hint: Your Speed Blessing best be unreasonably high!]", - "246": "[{{number}}] Why? [Hint: Sometimes even 1 in over a Trillion counts!]", - "247": "[{{number}}] Challenging! [Hint: Challenge 11 is calling your name, but with even less Ants]", - "248": "[{{number}}] Seeing Red but not Blue: [Hint: Can you get red stuff without getting blue stuff?]", - "249": "[{{number}}] Overtaxed: [Hint: It might pay not to read!]", - "250": "[{{number}}] The Thousand Suns: [Hint: You need to fully research into becoming GOD]", - "251": "[{{number}}] The Thousand Moons: [Hint: You may need to cube yourself up]", - "252": "[{{number}}] Ultimate: Complete 'SADISTIC II' Challenge.", - "253": "[{{number}}] Platonicism: Clear an Ascension with 1e12 score.", - "254": "[{{number}}] That's a handful!: Clear an Ascension with 1e14 score.", - "255": "[{{number}}] The game where everything is made up: Clear an Ascension with 1e17 score.", - "256": "[{{number}}] ... and the points don't matter: Clear an Ascension with 2e18 score.", - "257": "[{{number}}] Arguably moral: Clear an Ascension with 4e19 score.", - "258": "[{{number}}] Khafra's Personal Best: Clear an Ascension with 1e21 score.", - "259": "[{{number}}] 100 million million million!: Clear an Ascension with 1e23 score.", - "260": "[{{number}}] Highly Dimensional Being: Ascend a total of 10 million times.", - "261": "[{{number}}] Ant God's upheaval: Ascend a total of 100 million times.", - "262": "[{{number}}] Did you forget about Ant God?: Ascend a total of 2 billion times.", - "263": "[{{number}}] Ant God is unemployed thanks to you: Ascend a total of 40 billion times.", - "264": "[{{number}}] I hope you're happy with yourself: Ascend a total of 800 billion times.", - "265": "[{{number}}] Oh well: Ascend a total of 16 trillion times.", - "266": "[{{number}}] Keep up the gradual numerical increase: Ascend a total of 100 trillion times.", - "267": "[{{number}}] Eigenvalued: Achieve a constant of 1e1,000.", - "268": "[{{number}}] Achieve Mathematics: Achieve a constant of 1e5,000.", - "269": "[{{number}}] Ramsay (5,5): Achieve a constant of 1e15,000.", - "270": "[{{number}}] What comes after this?: Achieve a constant of 1e50,000.", - "271": "[{{number}}] LARGE BOY: Achieve a constant of 1e100,000.", - "272": "[{{number}}] LARGER BOY: Achieve a constant of 1e300,000.", - "273": "[{{number}}] LARGEST BOY: Achieve a constant of 1e1,000,000.", - "274": "[{{number}}] Power Creep: Singularity 1 time.", - "275": "[{{number}}] Have you enough cubes?: Singularity 2 times.", - "276": "[{{number}}] Singularity: Singularity 3 times.", - "277": "[{{number}}] SingularRity: Singularity 4 times.", - "278": "[{{number}}] SiINguLaRrRity: Singularity 5 times.", - "279": "[{{number}}] SiIINGuLArRrIiTyY: Singularity 7 times.", - "280": "[{{number}}] Inception: Singularity 10 times." - }, - "rewards": { - "3": "Gain +.05% to Accelerator Power.", - "4": "Start Transcensions/Challenges with Worker Autobuyer unlocked.", - "5": "Gain +1 Accelerator per 500 Workers owned.", - "6": "Gain +1 Multiplier per 1,000 Workers owned.", - "7": "Gain +1 Accelerator Boost per 2,000 workers owned.", - "10": "Gain +.10% to Accelerator Power.", - "11": "Start Transcensions/Challenges with Investment Autobuyer unlocked.", - "12": "Gain +1 Accelerator per 500 Investments owned.", - "13": "Gain +1 Multiplier per 1,000 Investments owned.", - "14": "Gain +1 Accelerator Boost per 2,000 Investments owned.", - "17": "Gain +.15% to Accelerator Power.", - "18": "Start Transcensions/Challenges with Printer Autobuyer unlocked.", - "19": "Gain +1 Accelerator per 500 Printers owned.", - "20": "Gain +1 Multiplier per 1,000 Printers owned.", - "21": "Gain +1 Accelerator Boost per 2,000 Printers owned.", - "24": "Gain +.20% to Accelerator Power.", - "25": "Start Transcensions/Challenges with Coin Mint Autobuyer unlocked.", - "26": "Gain +1 Accelerator per 500 Mints owned.", - "27": "Gain +1 Multiplier per 1,000 Mints owned.", - "28": "Gain +1 Accelerator Boost per 2,000 Mints owned.", - "31": "Gain +.25% to Accelerator Power.", - "32": "Start Transcensions/Challenges with Alchemy Autobuyer unlocked.", - "33": "Gain 10% more Offerings from resets || +1 Accelerator per 500 Alchemies!", - "34": "Gain 15% more Offerings from resets (stacks multiplicatively!) || +1 Multiplier per 1,000 Alchemies!", - "35": "Gain 25% more Offerings from resets (stacks multiplicatively!) || +1 Accelerator Boost per 2,000 Alchemies!", - "36": "Multiply Crystal Production by 2x.", - "37": "Multiply Crystal Production by the common logarithm of owned Diamonds. Prestiges give more Offerings based on time spent (Up to +15 at 1800 seconds)", - "38": "Unlock the Duplication rune!", - "43": "Accelerator Boosts can be purchased from any screen. Unlock the Auto-Prestige feature.", - "44": "Unlock the Prism Rune! Transcensions give more Offerings based on time spent (Up to +15 at 1800 seconds)", - "45": "Reduce tax scaling by up to 5%, depending on the length of Prestige.", - "46": "Reduce tax scaling by up to another 5%, depending on length of Prestige.", - "47": "Reduce tax scaling by up to ANOTHER 10%, depending on length of Prestige!", - "50": "Unlock new Atomic production and unlock 3 new incredibly difficult Challenges! Gain 2x particles on all future Reincarnations!", - "51": "Manual Reincarnations give +4 Obtainium (unaffected by multipliers except time multiplier)!", - "52": "Reincarnations give more Offerings based on time spent (Up to +25 at 1800 seconds)", - "53": "Increase the amount of Obtainium gained through all features by 0.125% additive for each rune level.", - "57": "Gain +1, +1% free Multipliers!", - "58": "Gain +1, +1% more free Multipliers!", - "59": "Gain +1, +1% more, MORE free Multipliers!", - "60": "Gain +2, +1% free Accelerators!", - "61": "Gain +2, +1% more free Accelerators!", - "62": "Gain +2, +1% more, MORE free Accelerators!", - "71": "+1% Conversion Exponent on all generator upgrades!", - "72": "+1% Conversion Exponent on all generator upgrades!", - "73": "+1% Conversion Exponent on all generator upgrades!", - "74": "+1% Conversion Exponent on all generator upgrades!", - "75": "+1% Conversion Exponent on all generator upgrades!", - "76": "+1% Conversion Exponent on all generator upgrades!", - "77": "+1% Conversion Exponent on all generator upgrades! They're in overdrive now!", - "78": "Start Transcensions/Challenges with 1 Refinery and automatically buy Refineries.", - "79": "Automatically buy the first Crystal upgrade if you can afford it!", - "80": "Start Transcensions/Challenges with Multiplier Autobuyer unlocked. +5% Offering recycle.", - "82": "Delay tax growth by 4%.", - "84": "+1% Obtainium (stacks additively with other achievement rewards)", - "85": "Start Transcensions/Challenges with 1 Coal Plant and automatically buy Coal Plants.", - "86": "Automatically buy the second Crystal upgrade if you can afford it!", - "87": "Start Transcensions/Challenges with Accelerator Autobuyer unlocked. +5% Offering recycle.", - "89": "Delay tax growth by 4%.", - "91": "+3% Obtainium (stacks additively with other Achievement rewards)", - "92": "Start Transcensions/Challenges with 1 Coal Rig and automatically buy Coal Rigs.", - "93": "Automatically buy the third Crystal upgrade if you can afford it!", - "94": "+5% Offering recycle.", - "96": "Delay tax growth by 4%.", - "98": "+5% Obtainium (stacks additively with other achievement rewards)", - "99": "Start Transcensions/Challenges with 1 Diamond Pickaxe and automatically buy Diamond Pickaxes.", - "100": "Automatically buy the fourth Crystal upgrade if you can afford it!", - "101": "+5% Offering recycle.", - "102": "Unlock the Thrift rune!", - "103": "Delay tax growth by 4%.", - "105": "+7% Obtainium (stacks additively with other achievement rewards)", - "106": "Start Transcensions/Challenges with 1 Pandora's Box and automatically buy Pandora's Boxes.", - "107": "Automatically buy the fifth Crystal upgrade if you can afford it!", - "108": "+5% Offering recycle.", - "110": "Delay tax growth by 4%.", - "112": "+9% Obtainium (stacks additively with other achievement rewards)", - "115": "+5% Offering recycle.", - "117": "Delay tax growth by 5.66%.", - "118": "Each Reincarnation Challenge completion delays tax growth by 0.75% per level, multiplicative. Effect: {{x}}x", - "119": "+11% Obtainium. Unlock a nice trinket somewhere...", - "122": "+7.5% Offering recycle.", - "124": "Delay tax growth by 5.66%. Unlock 5 new incredibly powerful researches!", - "126": "+13% Obtainium. You get an accessory to commemorate this moment!", - "127": "Unlock 20 new incredibly expensive yet good researches. Unlock the [Anthill] feature!", - "128": "Make researches go Cost-- with 1.5x Obtainium!", - "129": "+7.5% Offering recycle. Gain another 1.25x Obtainium multiplier!", - "131": "Delay tax growth by 5.66%.", - "132": "Permanently gain +25% more sacrifice reward!", - "133": "+15% Obtainium. Obtain the gift of Midas himself.", - "134": "Unlock 10 newer incredibly expensive yet good researches. Unlock in the Runes Tab!", - "135": "Talisman positive bonuses are now +0.02 stronger per level.", - "136": "Talisman positive bonuses are now +0.02 even stronger per level.", - "137": "Permanently gain +25% more sacrifice reward!", - "140": "+17% Obtainium. Lazy joke about not leaking talismans here [You get a new one]", - "141": "Unlock a new reset tier!", - "147": "+19% Obtainium (Achievement total is up to 100%!). Gain the Polymath Talisman!", - "169": "ALL Ant speed multiplied by {{x}}", - "171": "+16.666% ALL Ant speed!", - "172": "Gain more Ants the longer your Reincarnation lasts (Max speed achieved in 2 hours)", - "173": "Unlock Ant Sacrifice, allowing you to reset your Ants and Ant upgrades in exchange for amazing rewards! Automatically buy Worker Ants.", - "174": "Ant Multiplier from sacrifice is multiplied by another logarithm: x{{x}}", - "176": "Unlock Tier 2 Ant autobuy, and autobuy Inceptus and Fortunae Ants! Add +25 Base Ant ELO.", - "177": "Unlock Tier 3 Ant autobuy, and autobuy Tributum Ants! Add +50 Base Ant ELO.", - "178": "Unlock Tier 4 Ant autobuy, and autobuy Celeritas and Multa Ants! Add +75 Base Ant ELO.", - "179": "Unlock Tier 5 Ant autobuy, and autobuy Sacrificium Ants! Add +100 Base Ant ELO.", - "180": "Unlock Tier 6 Ant autobuy, and autobuy Hic and Experientia Ants! Add +1% Base Ant ELO.", - "181": "Unlock Tier 7 Ant autobuy, and autobuy Praemoenio Ants! Add +2% Base Ant ELO.", - "182": "Unlock Tier 8 Ant autobuy, and autobuy Scientia and Phylacterium Ants! Add +3% Base Ant ELO.", - "187": "Gain an Ascension Count multiplier based on your score: x{{x}}. Also: Offerings +{{y}}% [Max: 100% at 1M Ascensions]", - "188": "Gain +100 Ascension count for all Ascensions longer than 10 seconds. Also: Obtainium +{{x}}% [Max: 100% at 5M Ascensions]", - "189": "Gain 20% of Excess time after 10 seconds each Ascension as a linear multiplier to Ascension count. Also: Cubes +{{x}}% [Max: 200% at 500M Ascensions]", - "193": "Gain {{x}}% more Cubes on Ascension!", - "195": "Gain {{x}}% more Cubes and Tesseracts on Ascension! Multiplicative with the other Ach. bonus [MAX: 25,000% at e100,000 Const]", - "196": "Gain {{x}}% more Platonic Cubes on Ascension! [MAX: 2,000% at e100,000 Const]", - "197": "You will unlock a stat tracker for Ascensions.", - "198": "Gain +4% Cubes on Ascension!", - "199": "Gain +4% Cubes on Ascension!", - "200": "Gain +4% Cubs on Ascension! Did I spell that wrong? You bet I did.", - "201": "Gain +3% Cubes on Ascension!", - "202": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count. Also: Tesseracts +{{x}}% [Max: 200% at 1B Ascensions]", - "204": "You will gain 25% of Excess time after 10 seconds each Ascension as a linear multiplier to rewards.", - "205": "Gain +4% Tesseracts on Ascension!", - "206": "Gain +4% Tesseracts on Ascension!", - "207": "Gain +4% Tesseracts on Ascension!", - "208": "Gain +3% Tesseracts on Ascension!", - "209": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count.", - "211": "You will gain 25% MORE Excess time (Total: 50%) after 10 seconds each Ascension as a linear multiplier to rewards.", - "212": "Gain +4% Hypercubes on Ascension!", - "213": "Gain +4% Hypercubes on Ascension!", - "214": "Gain +4% Hypercubes on Ascension!", - "215": "Gain +3% Hypercubes on Ascension!", - "216": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count. Also: Hypercubes +{{x}}% [Max: 200% at 2B Ascensions]", - "218": "You gain gain 50% MORE MORE excess time (Total: 100%) after 10 seconds each Ascension as a linear multiplier to rewards.", - "219": "Gain +4% Platonic Cubes on Ascension!", - "220": "Gain +4% Platonic Cubes on Ascension!", - "221": "Gain +4% Platonic Cubes on Ascension!", - "222": "Gain +3% Platonic Cubes on Ascension!", - "223": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count. Also: Platonic Cubes +{{x}}% [Max: 200% at 2.674B Ascensions]", - "240": "Ascension Cube Gain Multipliers is VERY slightly affected by global speed multipliers: {{x}}x (Min: 1.10x, Max: 1.50x)", - "250": "You gain a permanent +60% Obtainium and Offering bonus, with +6% all Cube types!", - "251": "You gain a permanent +100% Obtainium and Offering bonus, with +10% all Cube types!", - "253": "You will gain +10% Hypercubes! Why? I don't know.", - "254": "Cube Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]", - "255": "Tesseract Gain +{{x}}% [Max: +15% at 1e25 Ascension Score], and allow gain of Hepteracts.", - "256": "Hypercube Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]. Also, Overflux Powder conversion rate is 5% better!", - "257": "Platonic Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]. Also, Overflux Powder conversion rate is 5% better!", - "258": "Hepteract Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]", - "259": "Corruption score is increased by 1% for every expansion of Abyss Hepteract!", - "260": "You will gain 10% more Ascension count, forever!", - "261": "You will gain 10% more Ascension count, forever!", - "262": "Ascensions are {{x}}% faster! Max: +10%", - "263": "Ascensions are {{x}}% faster! Max: +10%", - "264": "Hepteracts +{{x}}% [Max: 40% at 8T Ascensions]!", - "265": "Hepteracts +{{x}}% [Max: 20% at 160T Ascensions]!", - "266": "Quarks +{{x}}% [Max: 10% at 1Qa Ascensions]!", - "267": "Ascension Score is boosted by {{x}}% [Max: 100% at 1e100,000 Const]", - "270": "Hepteract Gain is boosted by {{x}}% [Max: 100% at 1e1,000,000 const], Constant Upgrade 1 boosted to 1.06 (from 1.05), Constant Upgrade 2 boosted to 1.11 (from 1.10).", - "271": "When you open a Platonic Cube, gain {{x}} Hypercubes, rounded down [Max: 1 at 1e1,000,000 Const]" - }, - "alerts": { - "36": "Congratulations on your first Prestige. The first of many. You obtain Offerings. You can use them in the new Runes tab! [Unlocked Runes, Achievements, Diamond Buildings and some Upgrades!]", - "38": "Hmm, it seems you are getting richer, being able to get 1 Googol diamonds in a single Prestige. How about we give you another Rune? [Unlocked Duplication Rune in Runes tab!]", - "255": "Wow! You gained 1e17 (100 Quadrillion) score in a single Ascension. For that, you can now generate Hepteracts if you get above 1.66e17 (166.6 Quadrillion) score in an Ascension. Good luck!" - }, - "hover": "Hover over an achievement to view information.", - "totalPoints": "Achievement Points: {{x}}/{{y}} [{{z}}%]", - "rewardGainMessage": "Reward: {{x}} AP. {{y}} Quarks! {{z}}", - "completed": " COMPLETED!", - "notification": "You unlocked an achievement: {{m}}" - }, - "reset": { - "details": { - "prestige": "Coins, Coin Producers, Coin Upgrades, and Crystals are reset, but in return you gain diamonds and a few Offerings. Required: {{amount}}/1e16 Coins || TIME SPENT: {{timeSpent}} Seconds.", - "transcension": "Reset all Coin and Diamond Upgrades/Features, Crystal Upgrades & Producers, for Mythos/Offerings. Required: {{amount}}/1e100 Coins || TIME SPENT: {{timeSpent}} Seconds.", - "reincarnation": "Reset ALL previous reset tiers, but you will gain Particles, Obtainium and Offerings! Required: {{amount}}/1e300 Mythos Shards || TIME SPENT: {{timeSpent}} Seconds.", - "acceleratorBoost": "Reset Coin Producers/Upgrades, Crystals and Diamonds in order to increase the power of your Accelerators. Required: {{amount}}/{{required}} Diamonds.", - "transcensionChallenge": { - "in": "Are you tired of being in your Challenge or stuck? Click to leave Challenge {{n}}. Progress: {{amount}}/{{required}} Coins. TIME SPENT: {{timeSpent}} Seconds.", - "out": "You're not in a Transcension Challenge right now. Get in one before you can leave it, duh!" - }, - "reincarnationChallenge": { - "in": { - "coins": "Are you done or tired of being in your Challenge? Click to leave Challenge {{n}}. Progress: {{amount}}/{{required}} Coins. TIME SPENT: {{timeSpent}} Seconds.", - "transcendShards": "Are you done or tired of being in your Challenge? Click to leave Challenge {{n}}. Progress: {{amount}}/{{required}} Mythos Shards. TIME SPENT: {{timeSpent}} Seconds." - }, - "out": "You're not in a Reincarnation Challenge right now. How could you leave what you are not in?" - }, - "ascensionChallenge": "Click this if you're in an Ascension Challenge and want to leave. You get it already!", - "ascension": "Ascend, C-10 is required! +{{cubeAmount}} Wow! Cubes for doing it! Time: {{timeSpent}} Seconds. (Real-time {{realTimeSpent}} Seconds)", - "singularity": "Are you willing to give up your laurels for a greater Challenge? The Ant God bribes you with {{gqAmount}} Golden Quarks. Time: {{timeSpent}} Seconds." - } - }, - "ants": { - "upgrades": { - "1": "Promotes romance and unity within the colony. [+12% Ant Speed / level]", - "2": "Sweetens crumbs to increase their value [Each level increases Crumb --> Coin Conversion efficiency, up to ^50,000,000]", - "3": "Swarms the Taxman into submission [Up to -99.5% taxes!]", - "4": "Scares you into running faster [up to x20]", - "5": "Imitates your body through magic shape-shifting powers [up to x40]", - "6": "Tries to please Ant God... but fails [Additional Offerings!]", - "7": "Helps you build a few things here and there [+3% Building Cost Delay / level, Cap 9,999,999%]", - "8": "Knows how to salt and pepper food [Up to 1,000x Rune EXP!]", - "9": "Can make your message to Ant God a little more clear [+1 all Rune Levels / level, Cap 10 Million]", - "10": "Has big brain energy [Additional Obtainium!]", - "11": "A valuable offering to the Ant God [Gain up to 3x Sacrifice Rewards!]", - "12": "Betray Ant God increasing the fragility of your dimension [Unlocks ant talisman, Up to 2x faster timers on most things]" - }, - "descriptions": { - "1": "Gain a Worker Ant for your everyday life. Gathers Galactic Crumbs. Essential!", - "2": "Gain a Breeder Ant that produces Worker Ants automatically!", - "3": "Gain a Meta-breeder Ant that produces Breeder Ants automatically!", - "4": "Gain a Mega-breeder Ant that produces Meta-breeder Ants automatically!", - "5": "Gain a Queen Ant that produces Mega-breeder Ants automatically!", - "6": "Gain a Lord Royal Ant that produces Queen Ants automatically!", - "7": "Gain an ALMIGHTY ANT that produces Lord Royal Ants automatically!", - "8": "Gain a DISCIPLE OF ANT GOD that produces ALMIGHTY ANTS automatically!" - }, - "generates": { - "1": "Generates {{x}} Crumbs/sec", - "2": "Generates {{x}} Workers/sec", - "3": "Generates {{x}} Breeders/sec", - "4": "Generates {{x}} MetaBreeders/sec", - "5": "Generates {{x}} MegaBreeders/sec", - "6": "Generates {{x}} Queens/sec", - "7": "Generates {{x}} Royals/sec", - "8": "Generates {{x}} ALMIGHTIES/sec" - }, - "rewards": { - "1": "CURRENT EFFECT: ALL Ants work at {{x}}x speed.", - "2": "CURRENT EFFECT: Crumb --> Coin exponent is ^{{x}}", - "3": "CURRENT EFFECT: Tax growth is multiplied by {{x}}", - "4": "CURRENT EFFECT: Accelerator Boosts +{{x}}%", - "5": "CURRENT EFFECT: Multipliers +{{x}}%", - "6": "CURRENT EFFECT: Offerings x{{x}}", - "7": "CURRENT EFFECT: Building Costs scale {{x}}% slower!", - "8": "CURRENT EFFECT: Rune EXP is multiplied by {{x}}!", - "9": "CURRENT EFFECT: Each rune has +{{x}} effective levels.", - "10": "CURRENT EFFECT: Obtainium x{{x}}", - "11": "CURRENT EFFECT: Sacrificing is {{x}}x as effective", - "12": "CURRENT EFFECT: Global timer is sped up by a factor of {{x}}" - }, - "header": "The ants welcome you to their home.", - "hover": "Hover over the icons for description. Click icons to buy!", - "youHaveGalacticCrumbs": "You have {{x}} Galactic Crumbs [{{y}}/s], providing a {{z}} Coin Multiplier", - "owned": "Owned: {{x}} [+{{y}}]", - "costGalacticCrumbs": "Cost: {{x}} Galactic Crumbs", - "costParticles": "Cost: {{x}} Particles", - "autoSacrificeOn": "Auto Sacrifice: ON", - "autoSacrificeOff": "Auto Sacrifice: OFF", - "modeRealTime": "Mode: Real-time", - "modeInGameTime": "Mode: In-game time", - "sacrificeWhenTimer": "Sacrifice when the timer is at least {{x}} seconds ({{y}}), Currently: {{z}}", - "yourAntELO": "<> <> [{{y}} effective]", - "upgradeMultiplier": "Upgrade Multiplier: <>", - "timeMultiplier": "Time Multiplier: <>", - "resetAnthill": "Reset Anthill features for:", - "antSacMultiplier": "Ant Sacrifice Multiplier: {{y}}x --> <>", - "autoReset": "This resets your Crumbs, Ants and Ant Upgrades in exchange for some multiplier and resources. Continue?", - "elo": "+{{x}} [>{{y}} ELO]" - }, - "challenges": { - "1": { - "name": "No Multipliers Challenge || {{- value}} Completions", - "flavor": "Multipliers make the game a little too fast. Let's take them out!", - "restrictions": "Transcend and reach the goal except Multipliers do nothing but act like Accelerators, which are nerfed by 50%!", - "goal": "Goal: Gain {{value}} Coins in challenge.", - "per": { - "1": "+10 base Multiplier Boosts! [+0.05 to power!] Current: ", - "2": "+10% total Multiplier Boosts! Current: ", - "3": "+0.04 base Rune exp per Offering! Current: " - }, - "first": "+1 free Multiplier! +1 Base EXP per offering used!", - "start": "Start [No Multipliers]", - "current": { - "1": "+{{value}} Boosts", - "2": "+{{value}}% more Boosts", - "3": "+{{value}} Rune EXP [Highest Completion]" - } - }, - "2": { - "name": "No Accelerators Challenge || {{- value}} Completions", - "flavor": "Who needs accelerators? They do basically nothing now.", - "restrictions": "Transcend and reach the goal except Accelerators do nothing! Multipliers are nerfed a bit as well.", - "goal": "Goal: Gain {{value}} Coins in challenge.", - "per": { - "1": "+5 Free Accelerators! Current: ", - "2": "+5% Accelerator Boost Power! Current: ", - "3": "+0.25% Accelerator Power! Current: " - }, - "first": "+1 base offering for Prestige and Transcensions.", - "start": "Start [No Accelerators]", - "current": { - "1": "+{{value}} Accelerators", - "2": "+{{value}}% A.Boost Power", - "3": "+{{value}}% Accelerator Power" - } - }, - "3": { - "name": "No Shards Challenge || {{- value}} Completions", - "flavor": "Alright, now you're thinking, how else can I make the game harder?", - "restrictions": "Transcend and reach the goal except you do not produce Crystals or Mythos Shards.", - "goal": "Goal: Gain {{value}} Coins in challenge.", - "per": { - "1": "Crystal --> Coin conversion exponent +0.04! Current: ", - "2": "+0.5% to Grandmaster production per Mythos producer bought. Current: ", - "3": "When you use a rune, all other runes gain +0.01 EXP. Current: " - }, - "first": "Gain an offering automatically every 2 seconds!", - "start": "Start [No Shards]", - "current": { - "1": "Exponent +{{value}}", - "2": "+{{value}}%", - "3": "+{{value}} EXP" - } - }, - "4": { - "name": "Cost+ Challenge || {{- value}} Completions", - "flavor": "You're getting rich now, but inflation hasn't happened yet? I don't think so!", - "restrictions": "Transcend and reach the goal except Coin/Crystal producers, Accelerators and Multipliers cost more. [Gets harder each time!]", - "goal": "Goal: Gain {{value}} Coins in challenge.", - "per": { - "1": "Accelerator Cost scale slows down by +5 purchases. Current: ", - "2": "Multiplier Cost scale slows down by +2 purchases. Current: ", - "3": "Building Cost Delay +0.5%. Current: " - }, - "first": "None", - "start": "Start [Cost+]", - "current": { - "1": "Accelerator Delay +{{value}}", - "2": "Multiplier Delay +{{value}}", - "3": "Building Cost Delay +{{value}}%" - } - }, - "5": { - "name": "Reduced Diamonds Challenge || {{- value}} Completions", - "flavor": "You ever wonder how you get so many diamonds?", - "restrictions": "Transcend and reach the goal except you gain far fewer Diamonds from all sources [Gets harder each time!]", - "goal": "Goal: Gain {{value}} Coins in challenge.", - "per": { - "1": "+0.01 Coin --> Diamond conversion exponent on Prestige! Current: ", - "2": "Multiply Crystal production by 10! Current: ", - "3": " " - }, - "first": "None", - "start": "Start [Reduced Diamonds]", - "current": { - "1": "Exponent = ^{{value}}", - "2": "Crystal production x{{value}}", - "3": " " - } - }, - "6": { - "name": "Higher Tax Challenge || {{- value}} Completions", - "flavor": "The tax man caught wind that you reincarnated recently...", - "restrictions": "Reincarnate and reach the goal except tax has a lower cap, and Coin production is divided by 1e250.", - "goal": "Goal: Gain {{value}} Mythos Shards in challenge.", - "per": { - "1": "-3.5% Taxes [Multiplicative]! Current: ", - "2": "Thrift Rune Exp +10%! Current: ", - "3": "Prestige Offerings +2%! Current: " - }, - "first": "-7.5% Taxes!", - "start": "Start ", - "current": { - "1": "Tax multiplier x{{value}}", - "2": "EXP +{{value}}%", - "3": "+{{value}}% Prestige-based Offerings" - } - }, - "7": { - "name": "No Multipliers/Accelerators Challenge || {{- value}} Completions", - "flavor": "You're really going to hate this one.", - "restrictions": "Reincarnate and reach the goal except Accelerators and Multipliers do nothing. Coin Production is divided by 1e1,250.", - "goal": "Goal: Gain {{value}} Mythos Shards in challenge.", - "per": { - "1": "Accelerator/Multiplier boost power exponent +0.04! Current: ", - "2": "Speed Rune Exp +10%! Current: ", - "3": "Duplication Rune Exp +10%! Current: " - }, - "first": "Multiplier Boost power +25%! The first Discord-Booster Global Diamond Upgrade.", - "start": "Start ", - "current": { - "1": "Exponent = ^{{value}}", - "2": "EXP +{{value}}%", - "3": "EXP +{{value}}%" - } - }, - "8": { - "name": "Cost++ Challenge || {{- value}} Completions", - "flavor": "You thought you could outgrow inflation by Reincarnating?", - "restrictions": "Reincarnate and reach the goal except Cost Scaling for producers and Accelerators/Multipliers scale much, much faster.", - "goal": "Goal: Gain {{value}} Mythos Shards in challenge.", - "per": { - "1": "Base Building Power +0.25! Current: ", - "2": "Prism Rune Exp +20%! Current: ", - "3": "Transcend Offerings +4%! Current: " - }, - "first": "Unlock the Anthill feature! Includes 20 new Researches. A Global Diamond Upgrade.", - "start": "Start ", - "current": { - "1": "+{{value}}", - "2": "+{{value}}% EXP", - "3": "+{{value}}% Transcend-based offerings" - } - }, - "9": { - "name": "No Runes Challenge || {{- value}} Completions", - "flavor": "You'll never complain about Prism being bad again.", - "restrictions": "Reincarnate and reach the goal except runes always have level 1 effects. All coin production is divided by e2,000,000.", - "goal": "Goal: Gain {{value}} Coins in challenge.", - "per": { - "1": "+1 free Ant level! Current: ", - "2": "+10% Ant speed [Multiplicative!] Current: ", - "3": "SI Rune Exp +20%! Current: " - }, - "first": "Unlock the Talismans feature! [In Runes tab]. A Global Diamond Upgrade.", - "start": "Start ", - "current": { - "1": "+{{value}} free levels", - "2": "x{{value}} Ant Speed", - "3": "+{{value}}% EXP" - } - }, - "10": { - "name": "Sadistic Challenge I || {{- value}} Completions", - "flavor": "I'm sorry for what I've unleashed onto the world.", - "restrictions": "Reincarnate and reach the goal except run the first five challenges AT THE SAME TIME! Coin Production /e12,500,000.", - "goal": "Goal: Gain {{value}} Coins in challenge.", - "per": { - "1": "+100 base ELO for sacrificing ants! Current: ", - "2": "+2% Ant Sacrifice Reward! Current: ", - "3": "Reincarnation Offerings +10%! Current: " - }, - "first": "Unlock the Ascension Reset Tier!", - "start": "Start ", - "current": { - "1": "+{{value}} Ant ELO", - "2": "+{{value}}% Ant Sacrifice reward", - "3": "+{{value}}% Reincarnate-based offerings" - } - }, - "11": { - "name": "Reduced Ants Challenge || {{- value}} Completions", - "flavor": "The great Ant War of '21 wiped off all of the skilled ants.", - "restrictions": "Ascend and reach the goal but only get free ant upgrades and from Challenge8/9 completions. FOR ASCENSION CHALLENGES YOU MUST CLEAR CHALLENGE 10 TO ATTEMPT THEM.", - "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", - "per": { - "1": "+12 free Ant Levels! Current: ", - "2": "Ant Speed x(1e5)^completions! Current: ", - "3": "+80 to Rune Caps! Current: " - }, - "first": "Unlock 15 Researches, and unlock the ability to open Tesseracts! You also get to toggle Corruptions ;)", - "start": "Start <[(Reduced Ants)]>", - "current": { - "1": "+{{value}} free ant levels", - "2": "Ant Speed x{{value}}", - "3": "+{{value}} to Rune Caps" - } - }, - "12": { - "name": "No Reincarnation Challenge || {{- value}} Completions", - "flavor": "For some reason, you just can't do it.", - "restrictions": "Ascend and reach the goal but you do not gain Particles and you cannot Reincarnate at all! Ant production ^0.5.", - "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", - "per": { - "1": "+50% Obtainium! Current: ", - "2": "+12% Offerings! Current: ", - "3": "+1 Cube Tribute per opening! Current: " - }, - "first": "Unlock 15 Researches, and unlock the mystical Spirit Power! Find these in the Runes tab. Increase Corruption Cap by 2 levels. Finally, unlock two new corruptions! ;)", - "start": "Start <[(No Reincarnation)]>", - "current": { - "1": "+{{value}}% Obtainium", - "2": "+{{value}}% Offerings", - "3": "+{{value}} additional Cube Tributes" - } - }, - "13": { - "name": "Tax+++ Challenge || {{- value}} Completions", - "flavor": "Good luck with the IRS, buddy.", - "restrictions": "Ascend and reach the goal, but taxes are much higher and grow with challenge completions. Ant production ^0.23", - "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", - "per": { - "1": "Taxes -3.33%! Multiplicative! Current: ", - "2": "+6 maximum to Talisman Level Cap! Current: ", - "3": "+3% Spirit Power effectiveness! Current: " - }, - "first": "Unlock 15 Researches, and unlock the power of the Hypercube! Increase Corruption Cap by 2 levels, to 9! Finally, unlock two new corruptions! ;)", - "start": "Start <[(Tax+++)]>", - "current": { - "1": "+{{value}}% Corruption Tax", - "2": "+{{value}} Talisman Level Cap", - "3": "+{{value}}% Effectiveness" - } - }, - "14": { - "name": "No Research Challenge || {{- value}} Completions", - "flavor": "The dimension that never progressed past the dark ages. Many fear to even step foot.", - "restrictions": "Ascend and reach the goal but you do not gain Obtainium nor are any researches purchasable. Ant production ^0.2.", - "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", - "per": { - "1": "+50% stronger effect on researches 1x1 through 1x5. Current: ", - "2": "+1 research purchased per roomba tick! Current: ", - "3": "+200 to Rune Caps! Current: " - }, - "first": "Unlock 15 Researches, and a way to coalesce your power into the Singularity. Increase Corruption Cap by 2 levels, to 11! Finally, unlock two new corruptions! ;)", - "start": "Start <[(No Research)]>", - "current": { - "1": "+{{value}}% Power", - "2": "+{{value}} per Tick", - "3": "+{{value}} to Rune Caps" - } - }, - "15": { - "name": "SADISTIC CHALLENGE II || {{- value}} Completions", - "flavor": "The worst atrocity a man can commit is witnessing, without anguish, the suffering of others.", - "restrictions": "Ascend and reach the goal but you're stuck in all corruptions at level 11, and Ant production ^0.01.", - "goal": "Goal: {{value}} Coins, but get bonuses based on your best attempt.", - "per": { - "1": "Folly of mankind: ", - "2": "to believe they can defeat ", - "3": "what Ant God labored " - }, - "first": "You would break the universe if you could!", - "start": "Start <[(Sadistic Challenge II)]>", - "current": { - "1": " ", - "2": " ", - "3": " " - }, - "noGoal": "You will find no goal in sight, but get bonuses based on your best attempt." - }, - "header": "Is the base game too easy? Try these situations! [Click the icons to view challenge details!]", - "autoChallengeSweepOn": "Auto Challenge Sweep [ON]", - "autoChallengeSweepOff": "Auto Challenge Sweep [OFF]", - "retryChallengesOn": "Retry Challenges: ON", - "retryChallengesOff": "Retry Challenges: OFF", - "autoAscRunChalOn": "Auto Ascension Run Chal.{{x}} [ON]", - "autoAscRunChalOff": "Auto Ascension Run Chal.{{x}} [OFF]", - "autoRunChalOn": "Automatically Run Chal.{{x}} [ON]", - "autoRunChalOff": "Automatically Run Chal.{{x}} [OFF]", - "modeStart": "MODE: START", - "modeExit": "MODE: EXIT", - "modeWait": "MODE: WAIT", - "modeOff": "MODE: OFF", - "modeEnter": "MODE: ENTER", - "bonusFirstCompletion": "Bonus/Unlock for First Completion", - "timeStartSweep": "Time for start of sweep: <>/s", - "timeExitChallenge": "Time before exiting challenge: <>s", - "timeEnterChallenge": "Time before entering challenge: <>s", - "autoTimer": "<> <>", - "perCompletionBonus": "Per Completion Bonuses || <>", - "perCompletionBonusEmpty": "Per Completion Bonuses", - "hypercubeOneTimeBonus": "Gain 1 Wow! HYPERCUBE for completing this challenge (First Time Bonus)", - "ascensionBankAdd": "Completing the challenge adds {{x}} to Ascension Bank and increase base Score by {{y}}.", - "firstTimeBonus": "Gain {{x}} for completing this challenge [First Time Bonus]!", - "firstTimeBonusQuarks": "Gain {{x}} Quarks for completing this challenge [First Time Bonus]!" - }, - "cubes": { - "upgradeNames": { - "1": "Wow! I want more Cubes.", - "2": "Wow! I want passive Offering gain too.", - "3": "Wow! I want better passive Obtainium", - "4": "Wow! I want to keep mythos building autobuyers.", - "5": "Wow! I want to keep mythos upgrade autobuyer.", - "6": "Wow! I want to keep auto Mythos gain.", - "7": "Wow! I want the particle building automators.", - "8": "Wow! I want to automate Particle Upgrades.", - "9": "Wow! I want to automate researches better dangit.", - "10": "Wow! This is pretty good but expensive.", - "11": "Wow! I want more Cubes 2.", - "12": "Wow! I want building power to be useful 1.", - "13": "Wow! I want opened Cubes to give more tributes 1.", - "14": "Wow! I want Iris Tribute bonuses to scale better 1.", - "15": "Wow! I want Ares Tribute bonuses to scale better 1.", - "16": "Wow! I want more rune levels 1.", - "17": "Wow! I want just a little bit more Crystal power.", - "18": "Wow! I want to accelerate time!", - "19": "Wow! I want to unlock a couple more coin upgrades.", - "20": "Wow! I want to improve automatic rune tools.", - "21": "Wow! I want to hack in more score 1.", - "22": "Wow! I wish my Artemis was a little better 1", - "23": "Wow! I want opened Cubes to give more tributes 2.", - "24": "Wow! I want Plutus Tribute bonuses to scale better 1", - "25": "Wow! I want Moloch Tribute bonuses to scale better 1", - "26": "Wow! I want to start Ascensions with rune levels.", - "27": "Wow! I want to start Ascensions with one of each Reincarnation building.", - "28": "Wow! I want to finally render Reincarnating obsolete.", - "29": "Wow! I want to increase maximum Reincarnation Challenge completions.", - "30": "Wow! I want to arbitrarily increase my Cube and Tesseract gain.", - "31": "Wow! I want to hack in more score 2.", - "32": "Wow! I want runes to be easier to level up over time.", - "33": "Wow! I want opened Cubes to give more tributes 3.", - "34": "Wow! I want Chronos Tribute bonuses to scale better 1", - "35": "Wow! I want Aphrodite Tribute bonuses to scale better 1", - "36": "Wow! I want building power to be useful 2.", - "37": "Wow! I want more rune levels 2.", - "38": "Wow! I want more Tesseracts while corrupted!", - "39": "Wow! I want more score from Challenge 10 completions.", - "40": "Wow! I want Athena Tribute bonuses to scale better 1.", - "41": "Wow! I want to hack in more score 3.", - "42": "Wow! I want some Uncorruptable Obtainium.", - "43": "Wow! I want even more Uncorruptable Obtainium!", - "44": "Wow! I want Midas Tribute bonus to scale better 1.", - "45": "Wow! I want Hermes Tribute bonus to scale better 1.", - "46": "Wow! I want even MORE Offerings!", - "47": "Wow! I want even MORE Obtainium!", - "48": "Wow! I want to start ascension with an Ant.", - "49": "Wow! I want to start ascension with a Challenge 6-8 completion.", - "50": "Wow! I want to be enlightened by the power of a thousand suns.", - "51": "Wow! A pile of Chocolate Chip Cookies.", - "52": "Wow! A pile of Sugar Cookies.", - "53": "Wow! A pile of Butter Cookies.", - "54": "Wow! A pile of Vanilla Wafers.", - "55": "Wow! A pile of White Chocolate Cookies.", - "56": "Wow! A bag of Snickerdoodles.", - "57": "Wow! A bag of Macarons.", - "58": "Wow! A bag of Gingerbread Cookies.", - "59": "Wow! A bag of Lemon Cookies.", - "60": "Wow! A bag of Ginger Snaps.", - "61": "Wow! A tin of Whoopie Pies.", - "62": "Wow! A tin of Toffee Bars.", - "63": "Wow! A tin of Brownie Cookies.", - "64": "Wow! A tin of Fortune Cookies.", - "65": "Wow! A tin of Biscotti.", - "66": "Wow! A box of Mother's Favorite Cookies.", - "67": "Wow! A box of Metaphysical Brownies.", - "68": "Wow! A box of Not Cookies.", - "69": "Wow! A box of Cookies Beyond This World.", - "70": "Wow! A box of Perfect Cookies.", - "71": "Wow! A Singular Cookie of Pandora's Benefactory.", - "72": "Wow! A Singular Cookie of Vyshareth's Benefactory.", - "73": "Wow! A Singular Cookie of the Giant Steps.", - "74": "Wow! A Singular Cookie of the Lilliput Steps.", - "75": "Wow! A Singular Cookie of another reference.", - "76": "Wow! A Singular Cookie of the Blue Variety.", - "77": "Wow! A Singular Cookie of Tyche's Benefactory.", - "78": "Wow! A Singular Cookie of Derpsmith's Benefactory", - "79": "Wow! A Singular Cookie of the Corrupt Beyond", - "80": "Wow! A Singular Cookie of the Grandma at the end of the Universe." - }, - "upgradeDescriptions": { - "1": "[1x1] You got it! +16.666% 3D Cubes from Ascending per level.", - "2": "[1x2] Plutus grants you +1 Offering per second, no matter what, per level. Also a +0.5% Recycling chance!", - "3": "[1x3] Athena grants you +10% more Obtainium, and +80% Auto Obtainium per level.", - "4": "[1x4] You keep those 5 useful automation upgrades in the upgrades tab!", - "5": "[1x5] You keep the mythos upgrade automation upgrade in the upgrades tab!", - "6": "[1x6] You keep the automatic mythos gain upgrade in the upgrades tab!", - "7": "[1x7] Automatically buy each Particle Building whenever possible.", - "8": "[1x8] Automatically buy Particle Upgrades.", - "9": "[1x9] The research automator in shop now automatically buys cheapest when enabled. It's like a roomba kinda!", - "10": "[1x10] Unlock some tools to automate Ascensions or whatever. Kinda expensive but cool.", - "11": "[2x1] You got it again! +9.09% 3D Cubes from Ascending per level.", - "12": "[2x2] Raise building power to the power of (1 + level * 0.09).", - "13": "[2x3] For each 20 Cubes opened at once, you get 1 additional tribute at random.", - "14": "[2x4] Iris shines her light on you. The effect power is now increased by +0.01 (+0.005 if >1000 tributes) per level.", - "15": "[2x5] Ares teaches you the Art of War. The effect power is now increased by +0.01 (+0.0033 if >1000 tributes) per level.", - "16": "[2x6] You got it buster! +20 ALL max rune levels per level.", - "17": "[2x7] Yep. +5 Exponent per level to crystals.", - "18": "[2x8] Quantum tunnelling ftw. +20% global game speed.", - "19": "[2x9] Unlocks new coin upgrades ranging from start of Ascend to post c10 and beyond.", - "20": "[2x10] The rune automator in shop now spends all Offerings automatically, 'splitting' them into each of the 5 runes equally.", - "21": "[3x1] Perhaps score will benefit you more? Gain +5% more score on Ascensions per level.", - "22": "[3x2] The exponent of the bonus of Artemis is increased by 0.05 per level.", - "23": "[3x3] For each 20 Cubes opened at once, you get 1 additional tribute at random.", - "24": "[3x4] Plutus teaches you the Art of the Deal. The effect power is now increased by +0.01 (+0.0033 if >1000 tributes) per level.", - "25": "[3x5] Moloch lends you a hand in communicating with Ant God. The effect power is now increased by +0.01 (+0.0033 if >1000 tributes) per level.", - "26": "[3x6] Start Ascensions with 3 additional rune levels [Does not decrease EXP requirement] per level.", - "27": "[3x7] Upon an Ascension, you will start with 1 of each Reincarnation building to speed up Ascensions.", - "28": "[3x8] Well, I think you got it? Gain +1% of particles on Reincarnation per second.", - "29": "[3x9] Add +4 to Reincarnation Challenge cap per level. Completions after 25 scale faster in requirement!", - "30": "[3x10] You now get +40% Cubes and Tesseracts forever!", - "31": "[4x1] You again? +5% more score on Ascensions per level.", - "32": "[4x2] Gain +0.1% Rune EXP per second you have spent in an Ascension. This has no cap!", - "33": "[4x3] For each 20 Cubes opened at once, you get yet another additional tribute at random.", - "34": "[4x4] Chronos overclocks the universe for your personal benefit. (Rewards the same as others)", - "35": "[4x5] Aphrodite increases the fertility of your coins. (Rewards the same as others)", - "36": "[4x6] Raise building power to (1 + 0.05 * Level) once more.", - "37": "[4x7] Adds +20 to ALL rune caps again per level.", - "38": "[4x8] Gain +0.5% more Tesseracts on Ascension for each additional level in a corruption you enable.", - "39": "[4x9] Instead of the multiplier being 1.03^(C10 completions), it is now 1.035^(C10 completions)!", - "40": "[4x10] Athena is very smart (Rewards the same as others).", - "41": "[5x1] Yeah yeah yeah, +5% score on Ascension per level. Isn't it enough?", - "42": "[5x2] You now gain +4% Obtainium per level, which is not dependent on corruptions!", - "43": "[5x3] Gain another +3% corruption-independent Obtainium per level.", - "44": "[5x4] Blah blah blah Midas works harder (same rewards as before)", - "45": "[5x5] Blah blah blah Hermes works harder (same rewards as before)", - "46": "[5x6] Gain +5% more Offerings per level!", - "47": "[5x7] Gain +10% more Obtainium per level!", - "48": "[5x8] When you ascend, start with 1 worker Ant (this is a lot better than it sounds!)", - "49": "[5x9] When you ascend, gain 1 of each Challenge 6-8 completion.", - "50": "[5x10] What doesn't this boost? +0.01% Accelerators, Multipliers, Accelerator Boosts, +0.02% Obtainium, +0.02% Offerings, +0.04 Max Rune Levels, +1 Effective ELO, +0.0004 Talisman bonuses per level, 0.00066% Tax reduction per level.", - "51": "[Cx1] Wow! Bakery is open!!! Immediately unlock all automations in the cube tab, and researches as well.", - "52": "[Cx2] These sugar cookies sure boost your blood sugar. Gain +1% global speed per level.", - "53": "[Cx3] What a hearty snack. Gain +0.1% Quarks per level.", - "54": "[Cx4] Pretty dry, but they suffice. Increase Offering gain by 1% per level.", - "55": "[Cx5] An inventive take on the original chip cookie. Increase Obtainium gain by 1% per level.", - "56": "[Cx6] These are a little more exotic. Gain +1 more raw score from Challenge 1 completions per level.", - "57": "[Cx7] Yum yum! Now we're talking... or maybe not. Increase the cap of Cube Upgrades 1x1, 2x1, 3x1, 4x1, 5x1 by 1.", - "58": "[Cx8] A bit festive! If there is an event, All Cube gain is multiplied by 1.25.", - "59": "[Cx9] Quite sour for a cookie. But it increases your Ascension speed by 0.25% per level, so who is to complain?", - "60": "[Cx10] Wow! Bakery had extra ginger from their christmas sale. Reduce the cost of buying Golden Quarks by 0.003% per level.", - "61": "[Cx11] Edible but prone to mistakes. Adds 125 whole milliseconds to the tolerance of code 'time', and increases reward by +2% per level.", - "62": "[Cx12] Platonic loves toffee. Octuple Obtainium and Offering gain in Challenge 15.", - "63": "[Cx13] Brownie Cookies, the best of both worlds. Increase Regular Cube Gain by 1% based on owned Hepteracts (+3% per OOM).", - "64": "[Cx14] Some say the Ant God itself penned these fortunes. When you gain a statue from Platonic Cubes, you gain two instead.", - "65": "[Cx15] That's amore, but is quite a crumbful! Increase Ant efficiency by 0.4%. (Roughly every 200 Ants purchased doubles crumb production!)", - "66": "[Cx16] You just wish you could have one more cookie baked by her. Gain 2x all Cubes until you purchase OMEGA.", - "67": "[Cx17] What the hell are in these??? Anyway, Metaphysics Talisman level cap is increased by 1,337.", - "68": "[Cx18] What the heck! These aren't even cookies. +0.01% Quarks per level purchased of this upgrade. +5% more at level 1,000!", - "69": "[Cx19] Cookies that you'll never remember again. +12% Golden Quarks this Singularity.", - "70": "[Cx20] The pinnacle of baking. Nothing you'll eat will taste better than this. Gain +0.01% more Octeracts on Ascension if the average level of all corruptions is at a minimum of 14.", - "71": "[Cx21] For each talisman rarity upgrade, multiply Obtainium gain by 1.04", - "72": "[Cx22] For each talisman rarity upgrade, multiply Offering gain by 1.04", - "73": "[Cx23] Each level adds 1 bonus level to the Infinite Ascent rune!", - "74": "[Cx24] Add +0.30 to all Corruption Multiplier values.", - "75": "[Cx25] Each level adds +0.3% effectiveness to free Singularity-tier Upgrades per level! (additive with all other boosts)", - "76": "[Cx26] Each level adds <> for each time threshold you have reached!", - "77": "[Cx27] Each level adds <>!", - "78": "[Cx28] Each level adds +0.3% effectiveness to free Octeract-tier Upgrades per level!", - "79": "[Cx29] If your Red Bar fills up with this upgrade purchased, you gain <>, permanently! Stacks up to 5,000 times.", - "80": "[Cx30] You intercept a singular message: <>..." - }, - "cubeMetadata": { - "cost": "Cost: {{value1}} Wow! Cubes [+{{value2}} Levels]", - "level": "Level: {{value1}} / {{value2}}", - "maxLevel": "Cost: 0 Wow! Cubes. This upgrade is maxed! wow" - }, - "noCubesOpened": "OK. No cubes opened.", - "howManyCubesOpen": "How many cubes would you like to open? You have {{x}}! \nYou can input a percentage of cubes to open, for example: \"50%\" or \"100%\". \nYou can start the input with \"-\" (put in a negative value) to put in a value, that will be saved, which means you open all cubes except the specified number (also works with %).", - "validation": { - "notEnough": "You don't have enough cubes to open!", - "negative": "You can't open a negative amount of cubes.", - "invalidPercent": "You can't open {{x}}% of your cubes..." - } - }, - "calculate": { - "timePrompt": "How far in the future would you like to go into the future? Anything awaits when it is testing season.", - "timePromptError": "Hey! That's not a valid time!", - "offlineTimer": "You have {{value}} seconds of offline progress!", - "offlineEarnings": "While offline, the Idle Overlords earned:", - "quadraticImproperError": "This is not a quadratic equation!", - "quadraticDeterminantError": "Determinant was negative!", - "cubicSumNegativeError": "You cannot spend a negative amount!" - }, - "researches": { - "descriptions": { - "1": "[1x1] Increase the number of free Accelerators gained by 20% from all sources.", - "2": "[1x2] Increase the number of free Multipliers gained by 20% from all sources.", - "3": "[1x3] Increase the number of free Accelerator Boosts gained by 20% from all sources.", - "4": "[1x4] Increase most rune effects by 10%. (Excludes any recycle chance bonus)", - "5": "[1x5] Multiply the production of all Crystal producers by 1e4.", - "6": "[1x6] Gain +5% free Accelerators per level.", - "7": "[1x7] Gain +4% free Accelerators per level.", - "8": "[1x8] Gain +3% free Accelerators per level.", - "9": "[1x9] Gain +2% free Accelerators per level.", - "10": "[1x10] Gain +2% free Accelerators per level.", - "11": "[1x11] Gain +5% free Multipliers per level.", - "12": "[1x12] Gain +4% free Multipliers per level.", - "13": "[1x13] Gain +2.5% free Multipliers per level.", - "14": "[1x14] Gain +1.5% free Multipliers per level.", - "15": "[1x15] Gain +0.5% free Multipliers per level.", - "16": "[1x16] Gain +5% free Accelerator Boosts per level.", - "17": "[1x17] Gain +5% free Accelerator Boosts per level.", - "18": "[1x18] Gain +2 free Accelerator per Accelerator Boost.", - "19": "[1x19] Gain +2 free Accelerator per Accelerator Boost.", - "20": "[1x20] Gain +3 free Accelerator per Accelerator Boost!", - "21": "[1x21] Most rune effects are increased by 1% per level. (Excludes any recycle chance bonus)", - "22": "[1x22] Each Offering used increases Rune EXP by 0.6 per level.", - "23": "[1x23] Each Offering used increases Rune EXP by another 0.3 per level!", - "24": "[1x24] Prestige and Transcensions base Offering is increased by 0.2 per level.", - "25": "[1x25] Reincarnations base Offering is increased by 0.6 per level.", - "26": "[2x1] Multiply all Crystal producer production by 150% per level (Multiplicative).", - "27": "[2x2] Multiply all Crystal producer production by 150% per level (Multiplicative).", - "28": "[2x3] Coin Exponent is increased by 0.08 per level.", - "29": "[2x4] Coin Exponent is increased by another 0.08 per level.", - "30": "[2x5] Coin Exponent is increased by ANOTHER 0.04 per level.", - "31": "[2x6] Want to bake cookies instead? You can go offline for 4 additional hours per level (Base 72hr).", - "32": "[2x7] Want to bake a lot of cookies instead? Extend the offline maximum timer by another 4 hours per level!", - "33": "[2x8] Gain +11% more Multiplier Boosts from Mythos Shards per level.", - "34": "[2x9] Gain another +11% more Multiplier Boosts from Mythos Shards per level.", - "35": "[2x10] Gain ANOTHER +11% more Multiplier Boosts from Mythos Shards per level.", - "36": "[2x11] Building power scales 5% faster per level.", - "37": "[2x12] Building power scales 2.5% faster per level.", - "38": "[2x13] Building power scales 2.5% faster per level.", - "39": "[2x14] Building power affects Crystal production at a reduced rate.", - "40": "[2x15] Building power affects Mythos Shard production at a reduced rate.", - "41": "[2x16] Start Reincarnations with automatic A.Boosts unlocked. Note: this research doesn't affect earning achievements.", - "42": "[2x17] Start Reincarnations with automatic Generators unlocked.", - "43": "[2x18] Start Reincarnations with automatic C.Upgrades unlocked.", - "44": "[2x19] Start Reincarnations with automatic D.Upgrades unlocked.", - "45": "[2x20] Start Reincarnations with automatic Diamond production unlocked.", - "46": "[2x21] Unlock the ability to automatically Reincarnate!", - "47": "[2x22] Unlock Reincarnation upgrades 1-5. [Upgrades cost between 1 and 1,000 Particles]", - "48": "[2x23] Unlock Reincarnation upgrades 6-10. [Upgrades cost between 100,000 and 1e22 Particles]", - "49": "[2x24] Unlock Reincarnation upgrades 11-15. [Upgrades cost between 1e30 and 1e60 Particles]", - "50": "[2x25] Unlock Reincarnation upgrades 16-20. [You might want to wait until Challenge 8 is doable!]", - "51": "[3x1] Taxation scales 5.0% slower per level. [Up to -50%]", - "52": "[3x2] Taxation scales 2.5% slower per level. [Up to -75%]", - "53": "[3x3] Taxation scales 1.25% slower per level. [Up to -87.5%]", - "54": "[3x4] Taxation scales 0.625% slower per level. [Up to -93.75%]", - "55": "[3x5] Taxation scales 0.3125% slower per level. [Up to -96.875%]", - "56": "[3x6] Building Cost Scale is delayed by 0.5% per level.", - "57": "[3x7] Building Cost Scale is delayed by 0.5% per level.", - "58": "[3x8] Building Cost Scale is delayed by 0.5% per level.", - "59": "[3x9] Building Cost Scale is delayed by 0.5% per level.", - "60": "[3x10] Building Cost Scale is delayed by 0.5% per level.", - "61": "[3x11] Gain +50% of your best Obtainium per second AUTOMATICALLY!", - "62": "[3x12] Gain an additional +10% of your best Obtainium per second automatically.", - "63": "[3x13] If your Reincarnation lasts at least 2 seconds you gain +1 Obtainium per level.", - "64": "[3x14] If your Reincarnation lasts at least 5 seconds you gain +2 Obtainium per level.", - "65": "[3x15] Increase the rate of gaining Obtainium through Reincarnations by 20% per level.", - "66": "[3x16] Increase the maximum number of [No Multipliers] completions by 5 per level.", - "67": "[3x17] Increase the maximum number of [No Accelerators] completions by 5 per level.", - "68": "[3x18] Increase the maximum number of [No Shards] completions by 5 per level.", - "69": "[3x19] Increase the maximum number of [Cost+] completions by 5 per level.", - "70": "[3x20] Increase the maximum number of [Reduced Diamonds] completions by 5 per level.", - "71": "[3x21] Automatically gain completions for Challenge 1 while running a Reincarnation Challenge", - "72": "[3x22] Automatically gain completions for Challenge 2 while running a Reincarnation Challenge", - "73": "[3x23] Automatically gain completions for Challenge 3 while running a Reincarnation Challenge", - "74": "[3x24] Automatically gain completions for Challenge 4 while running a Reincarnation Challenge", - "75": "[3x25] Automatically gain completions for Challenge 5 while running a Reincarnation Challenge", - "76": "[4x1] Welcome to the land of expensive researches. Here's +10% Obtainium per level to help you out!", - "77": "[4x2] Increase the level cap of Thrift rune by 10 per level, and +2% EXP for that rune in particular.", - "78": "[4x3] Increase the level cap of Speed rune by 10 per level, and +2% EXP for that rune in particular.", - "79": "[4x4] Increase the level cap of Prism rune by 10 per level, and +2% EXP for that rune in particular.", - "80": "[4x5] Increase the level cap of Duplication rune by 10 per level, and +2% EXP for that rune in particular.", - "81": "[4x6] You thought the previous researches are expensive? You're going to need this! [+10% Obtainium/level]", - "82": "[4x7] Permanently UNLOCK the Rune of Superior Intellect! [+%Ob / +Ant Speed / +Base Offerings.]", - "83": "[4x8] Taking forever to level up that SI Rune? Here's +5% SI Rune EXP per level.", - "84": "[4x9] Does the new rune kinda suck? Power it up! +0.5% level effectiveness for SI rune per level!", - "85": "[4x10] Gain +0.01% more Offerings per level per Challenge completion!", - "86": "[4x11] Yeah, going back to basics. +5% Accelerators/Level.", - "87": "[4x12] 0/5 Multipliers SUCK: +5% Multipliers/Level.", - "88": "[4x13] -1/5 A.Boosts SUCK: +5% Accelerator Boosts/Level.", - "89": "[4x14] -5/5 MULTIPLIERS STILL SUCK: +20% Multiplier Boosts/Level", - "90": "[4x15] Runes don't suck at all, but why not make them even BETTER? +1% Rune Effectiveness/level!", - "91": "[4x16] A simple +5% Rune EXP for all runes!", - "92": "[4x17] Another simple +5% Rune EXP for all runes!", - "93": "[4x18] +1 Accelerator Boost per 20 Summative Rune Levels, per level.", - "94": "[4x19] +20 Multiplier per 8 Summative Rune Levels, per level.", - "95": "[4x20] Gain +4 base Offerings from Reincarnations by purchasing this. Math Nerds will love this!", - "96": "[4x21] Ants slow? Add +0.0002 to Ant efficiency increase per Ant purchased per level.", - "97": "[4x22] Add +4 level to the first six upgradable Ants per level!", - "98": "[4x23] Add +4 level to the next five upgradable Ants per level!", - "99": "[4x24] Is the Quark Shop too hot to resist? Get +1 Quark per hour from Exporting for each level!", - "100": "[4x25] Alright, Platonic is off his rocker. I don't expect you to get this but this will give +1 MORE Quark per hour from Exporting for each level!", - "101": "[5x1] Alright, you're past the big wall. How about adding +.001 to Inceptus Ant efficiency per level?", - "102": "[5x2] Gain +1 bonus level to ALL Ants per level! A rainbow attack!", - "103": "[5x3] Pray to Ant God for +5% sacrifice rewards per level!", - "104": "[5x4] You're beginning to feel like an Ant God (Ant God): +5% sacrifice reward per level!", - "105": "[5x5] Buy this and be able to run the first five Challenges 9,001 times! (Note that requirements scale a LOT faster after 75, and again after 1,000)", - "106": "[5x6] Engrave your talismans with Obtainium to get +0.03 Rune Levels per talisman level per level.", - "107": "[5x7] Refine your talismans with the powder of Obtainium to get +0.03 Rune Levels per talisman level per level again.", - "108": "[5x8] A simple trick makes your base Ant ELO increase by 25 per level!", - "109": "[5x9] A more convoluted trick makes your base Ant ELO increase by 25 per level again!", - "110": "[5x10] Gain +1% more ELO from Ant sources per level because why not?", - "111": "[5x11] Gotta go fast [+10 max Speed Rune Level per level, +1% EXP to that rune]", - "112": "[5x12] Double Trouble [+10 max Duplication Rune level per level, +1% EXP to that rune]", - "113": "[5x13] Newton's Delight [+10 max Prism Rune Level per level, +1% EXP to that rune]", - "114": "[5x14] Five-Finger discounts [+10 max Thrift Rune Level per level, +1% EXP to that rune]", - "115": "[5x15] Scientific Breakthrough [+10 max SI Rune Level per level +1% EXP to that rune]", - "116": "[5x16] Talismans have +0.015 Rune levels per talisman level per level. Levelception!", - "117": "[5x17] Talismans have another +0.015 Rune levels per talisman level per level!", - "118": "[5x18] For 'neutral' talisman effects, increase by +0.06 per level!", - "119": "[5x19] Gain +0.25% Wow! Cubes per level upon Ascension.", - "120": "[5x20] Gain another +0.25% Wow! Cubes per level upon Ascension.", - "121": "[5x21] Bend time to your will, making all ticks 2% faster each level.", - "122": "[5x22] Adds +2% Ant sacrifice reward per level.", - "123": "[5x23] Adds +40 base Ant ELO per level.", - "124": "[5x24] Unlock the automator for Ant Sacrifice! [Good luck buying this.]", - "125": "[5x25] Good luck, buddy. [+1 Export Quark/hour per level]", - "126": "[6x1] 6 rows? That can't be... You've angered Ant God (+1% Accelerators / level)", - "127": "[6x2] Ant God gets angrier (+1% Accelerator Boosts / level)", - "128": "[6x3] Ant God cannot believe your bravery (+1% Multipliers / level)", - "129": "[6x4] Add +1 extra level to Crystal upgrade caps multiplied by Level * Log4(Common Fragments + 1)", - "130": "[6x5] Unlock automation for Fortifying talismans! Activates every 2 real life seconds.", - "131": "[6x6] Turn some Ant Disciples against Ant God, giving +0.5% Rune Effectiveness per level.", - "132": "[6x7] Recruit a couple other Ants towards your side as well, giving +2 free Ant levels per level.", - "133": "[6x8] Using some coalesced Obtainium, you can make Ant Sacrifice 3% better per level.", - "134": "[6x9 lol] The funny number. Gain a +6.9% bonus to Blessing level.", - "135": "[6x10] Unlock automation for Enhancing talismans! Activates every 2 real life seconds.", - "136": "[6x11] It may be time to look back. Makes all ticks 1.5% faster each level.", - "137": "[6x12] Paying off Wow! Industries, they'll sponsor +1% Cubes per level towards your Ascension bank.", - "138": "[6x13] When you open Wow! Cubes you will get +0.1% tributes per level!", - "139": "[6x14] Make all Tesseract buildings produce 2% faster per level.", - "140": "[6x15] The first of a Tetralogy, this tome reduces the base requirements of Challenge 10 by dividing it by 1e100M! A must-read!", - "141": "[6x16] The Ant God has infiltrated your mind. Run away from your conscience! (+0.8% Accelerators / level)", - "142": "[6x17] Run... RUN FASTER from your nightmares! (+0.8% Accelerator Boosts / level)", - "143": "[6x18] Your resilience somehow gives you +0.8% Multipliers / level!", - "144": "[6x19] Your Obtainium gain is increased by 3 * Log4(Uncommon Fragments + 1) * level%! Why is this? I don't know.", - "145": "[6x20] Your knowledge from the ant war will help you automatically gain Mortuus Est Ant levels.", - "146": "[6x21] Feed your Disciples pure Obtainium to make your runes +0.4% more effective per level.", - "147": "[6x22] Feed your Ants their own crumbs to make them Log(Crumbs + 10)x faster!", - "148": "[6x23] Increase your base Ant ELO by 2.5% per level!", - "149": "[6x24] You will gain +0.03% more Offerings per level per level in the Midas Talisman!", - "150": "[6x25] Auto Challenge. Enough said. (Lets you automatically run and complete Challenges!)", - "151": "[7x1] A new row, old upgrade. Makes all ticks 1.2% faster each level.", - "152": "[7x2] Wow! Industries sponsors another +0.9% Cubes per level towards your Ascension bank!", - "153": "[7x3] Hey, I totally didn't steal this idea. You gain 12 tributes of Wow! Cube tier for every Tesseract opened.", - "154": "[7x4] Make all Tesseract buildings produce 3% faster per level. Hey, isn't that more than the last research tier?", - "155": "[7x5] Tome 2 of 4: How to win over the Ant universe. Another e100M Divider to Challenge 10 Base Requirement on purchase.", - "156": "[7x6] What, again? Alright. +0.6% Accelerators / level.", - "157": "[7x7] Gas, gas, gas. +0.6% Accelerator Boosts / level.", - "158": "[7x8] Dupe DUPE DUPE. +0.6% Multipliers / level.", - "159": "[7x9] Somehow, I can't explain why, you reduce your taxes by 2% multiplicative, based on 3/5 * log10(Rare Fragments)!", - "160": "[7x10] Want a permanent Blessing boost? I know you do. A permanent +25% effect to all Blessings.", - "161": "[7x11] SIGMA KAPPA: +0.3% Rune Effectiveness each level!", - "162": "[7x12] More exponentiation! +0.0001% more Inceptus power per level!", - "163": "[7x13] Ant God's wanting blood: +2% Ant Sacrifice rewards / level", - "164": "[7x14] Spirit power still sucks, so add +8% power per level!", - "165": "[7x15] Gain 2x the Spirit buffs in Ascension Challenges!", - "166": "[7x16] < T I M E >: +0.9% faster ticks / level ", - "167": "[7x17] Because of sponsorships, Wow! Industries is raising Cubes gained in Ascension by 0.8% per level.", - "168": "[7x18] Gain +0.08% tributes from Cubes per level. You know, you should expect it at this point.", - "169": "[7x19] +4% faster Tesseract Buildings / level. It's GROWING.", - "170": "[7x20] Tome 3 of 4: How to totally ROCK Challenge 10. e100m divisor!", - "171": "[7x21] You should know how this goes. +0.4% Accelerators / level", - "172": "[7x22] Accelerator Boosts += 0.004 * Accelerator Boosts", - "173": "[7x23] A lot of a small +0.4% Multipliers per level", - "174": "[7x24] Epic Fragments boost Blessing power by 10% * Log10(Epic Shards + 1)", - "175": "[7x25] Automatically buy Constant Upgrades, if they are affordable! They also no longer subtract from your constant.", - "176": "[8x1] Row 8 baby! +0.2% Rune Effectiveness / level.", - "177": "[8x2] +Log10(Crumbs)% to Ant production per level. Pretty cool buff ain't it?", - "178": "[8x3] +666 Base ELO per level! Spooky number of the devil.", - "179": "[8x4] +0.04% more Offerings per level per midas level!", - "180": "[8x5] +1 Export Quark per hour per level, yet again.", - "181": "[8x6] +0.6% faster ticks / level because why not? You're already the speed of light.", - "182": "[8x7] +0.7% Cubes in Ascension bank / level, from dividends in Wow! Stock.", - "183": "[8x8] When you open a Hypercube, you also open 100 Tesseracts! (This works with 7x3, if you were curious.)", - "184": "[8x9] +5% faster Tesseract Buildings / level. ASCENDED.", - "185": "[8x10] Tome 4 of 4: You need to prepare for your Ascent. e100m divisor!", - "186": "[8x11] Something something +0.2% Accelerators pretty cool!", - "187": "[8x12] Something somewhere, +0.2% Accelerator Boosts!", - "188": "[8x13] You are DUPLICATED. +0.2% Multipliers/level", - "189": "[8x14] Legendary Fragments increase Spirit powers by +15% multiplied by Log10(Legendary Fragments + 1)", - "190": "[8x15] Unlock Automations for all 5 of the Tesseract buildings.", - "191": "[8x16] +0.1% Rune Effectiveness / level. Does this even do anything at this point?", - "192": "[8x17] Each purchased level of Mortuus Est also increases Ascension Cube reward by +0.03%", - "193": "[8x18] +1% Ant Sacrifice Reward per level. Singularity HYPE.", - "194": "[8x19] Increases both Spirit AND Blessing power by 2% per level.", - "195": "[8x20] Gain +1 export Quark per level, and increases the max timer to redeem Quarks by 5 hours each!", - "196": "[8x21] +0.3% faster ticks / level, because you just can't wait to become the Singularity.", - "197": "[8x22] +0.6% Cubes in Ascension Bank / level. No one knows how. Bank error perhaps.", - "198": "[8x23] +0.06% tributes from Cubes / level!. Wow! Cubes really has a lot of manufacturing errors in your favor.", - "199": "[8x24] +10% faster Tesseract Buildings / level. THE ARISEN. WITH THE PRAISE OF THE SINGULARITY.", - "200": "[8x25] Gain the power of a thousand suns! +0.01% Accelerators, A. Boosts, Multipliers, Offerings, and +0.004% Cubes, +0.04 Max Rune level, +(level/400) max Talisman Level, +(level/200) free Ants, 0.000666% Tax reduction per level." - }, - "thanksToResearches": "Thanks to researches you automatically gain {{x}} Obtainium per real life second.", - "level": "Level {{x}}/{{y}}", - "maxed": " || MAXED!", - "cost": "Cost: {{x}} Obtainium [+{{y}} Levels]", - "upgradeMax": "Upgrade: MAX [if possible]", - "upgradeOne": "Upgrade: 1 Level", - "automaticOn": "Automatic: ON", - "automaticOff": "Automatic: OFF", - "autoModeCheapest": "Automatic mode: Cheapest", - "autoModeManual": "Automatic mode: Manual", - "hoverToBuyOn": "Hover-to-Buy [ON]", - "hoverToBuyOff": "Hover-to-Buy [OFF]", - "hover": "Hover over the grid to get details about researches!" - }, - "shop": { - "upgradeDescriptions": { - "offeringPotion": "Instantly gain 2 real life hours of Offerings, based on your all time best Offerings/sec and speed acceleration!", - "obtainiumPotion": "Instantly gain 2 real life hours of Obtainium, based on your all time best Obtainium/sec and speed acceleration!", - "offeringEX": "Gain +4% more Offerings from all sources!", - "offeringAuto": "Automatically pour Offerings into a rune. 1st level unlocks feature, and each level increases Offering gain by 2%. Every second, 2^(Level) Offerings are spent.", - "obtainiumEX": "Gain +4% more Obtainium from all sources!", - "obtainiumAuto": "Automatically pour Obtainium into a research. 1st level unlocks feature, and each level increases Obtainium gain by 2%. Every Reincarnation, dump all Obtainium into research until maxed.", - "instantChallenge": "T and R Challenges don't cause resets if retry is enabled and gain up to 10 completions per tick. Additionally, instantly gain T Challenge completions up to highest completed when exiting R Challenges.", - "antSpeed": "Each level gives a 1.2x speed multiplier to all Ant tiers' production! (Uncorruptable!) Short and simple.", - "cashGrab": "This is a cash grab but it gives a couple cool stats. +1% production per level to Offerings and Obtainium.", - "shopTalisman": "Permanently unlock a Shop talisman!", - "seasonPass": "Wow! Cubes is giving you a deal: Buy this totally fair Season Pass and gain +2.25% Cubes and Tesseracts per level when you Ascend!", - "challengeExtension": "Using some amazing trick, you manage to increase your Reincarnation Challenge cap by 2 for each level!", - "challengeTome": "The extended cut: This fifth forgotten tome gives you an additional 20 Million exponent reduction on the Challenge 10 requirement per level. Past 60 completions of Challenge 9 or 10, this will also reduce the scaling factor by 1% per level.", - "cubeToQuark": "Are your Quark gains from Cubes wimpy? Well, buy this for +50% Quarks from opening Wow! Cubes, forever!", - "tesseractToQuark": "Are your Quark gains from Tesseracts wimpy? Well, buy this for +50% Quarks from opening Wow! Tesseracts, forever!", - "hypercubeToQuark": "Are your Quark gains from Hypercubes wimpy? Well, buy this for +50% Quarks from opening Wow! Hypercubes, forever!", - "seasonPass2": "Five times the price gouge, twice the fun! +1.5% Wow! Hypercubes and Platonic Cubes per level.", - "seasonPass3": "Okay, now this is just ridiculous. +1.5% Wow! Hepteracts and Octeracts per level!", - "chronometer": "You know, those Ascensions are kinda slow. Why don't I give you a +1.2% speedup to the timer per level?", - "infiniteAscent": "Okay, for an exorbitant amount, you can obtain the 6th rune, which gives +35% Quarks and +125% all Cube types when maxed!", - "calculator": "The PL-AT can do addition in the blink of an eye. Not much else though. +14% Quarks from using code 'add' per level, the first level provides the answer and the final level does it automatically!", - "calculator2": "The PL-AT X has improved memory capacity, allowing you to store 2 additional uses to code 'add' per level. Final level makes 'add' give 25% more Quarks!", - "calculator3": "The PL-AT Ω is infused with some Unobtainium, which is epic! But furthermore, it reduces the variance of Quarks by code 'add' by 10% per level, which makes you more likely to get the maximum multiplier. It also has the ability to give +60 seconds to Ascension Timer per level using that code.", - "calculator4": "The PL-AT δ runs at 4,096Hz, which is a huge improvement over previous models. Add attempts refill 4% faster per level! Final level adds 32 additional capacity!", - "calculator5": "The PL-AT Γ model somehow performs more 'powerful' computations, whatever that means. +6 seconds of GQ Export timer per level. +1 capacity every 10 levels, with 6 more at final level!", - "calculator6": "The PL-AT _ model was made by Derpsmith, before he was banished from the industry forever. Gain 1 second of Octeract per usage per level. Final level grants 24 additional capacity!", - "calculator7": "The PL-AT ΩΩ model was made by Derpsmith Ω, before he was banished from the industry forever. Gain 1 second of Blueberry Time per usage per level. Final level grants 48 additional capacity!", - "constantEX": "The merchant has one last trick up its sleeve: It can augment your second constant upgrade to be marginally better, but it'll cost an arm and a leg! Instead of the cap being 10% (or 11% with achievements) it will be raised by 1% per level.", - "powderEX": "Platonic himself gives you 2% better conversion rate on Overflux Orbs to Powder per level. This activates when Orbs expire.", - "chronometer2": "Okay, fine. Here's another +0.6% Ascension Speed per level, stacks multiplicatively with the first upgrade!", - "chronometer3": "OKAY. FINE. Here's yet ANOTHER +1.5% Ascension Speed per level, stacking multiplicatively like always.", - "seasonPassY": "This is even more insane than the last one, but you'll buy it anyway. +0.75% ALL Cubes per level.", - "seasonPassZ": "This one is arguably very good. Gain +1% ALL Cubes per level, per Singularity!", - "challengeTome2": "You find the final pages of the lost tome. It functionally acts the same as the rest of the pages, but you can have up to five more!", - "instantChallenge2": "Completing an Ascension Challenge doesn't cause a reset (if retry is enabled) and you gain 1 more completion per tick per Singularity.", - "cubeToQuarkAll": "First up on the menu, why not gain +0.2% Quarks from Cube opening per level?", - "cashGrab2": "This isn't even as good as the original. +0.5% Offerings and Obtainium per level.", - "chronometerZ": "Gain +0.1% Ascension Speed per level per Singularity. It needs a lot of fuel to power up.", - "offeringEX2": "Gain +1% Offerings per level per Singularity. Putting the Singularity Debuff industry out of business.", - "powderAuto": "Your grandparents had to wait a full day for powder, but not you! Per level gain +1% of orbs to powder based on the conversion rate.", - "seasonPassLost": "One would be advised not to touch this. +0.1% Octeracts per level, whatever those are...", - "challenge15Auto": "Your grandparents had to bend dimensions to gain Challenge 15 score, but not you! Updates Challenge 15 Exponent every tick while in challenge 15!", - "extraWarp": "\"Hey dude, get in this portal I built up last night in my shed!\" said the Quack Merchant", - "autoWarp": "With the power of Quacks Warp machine will now be able to go into overdrive", - "improveQuarkHept": "Did you know that after 1,000 Quark Hepteracts, their effect is raised to ^0.5? The Seal disapproves. Gain +2% to the diminishing return exponent.", - "improveQuarkHept2": "After 1,024,000 Quark Hepts, their effect is raised to ^0.25!!! Nonsense. Gain +2% to all Quark Hept DRs.", - "improveQuarkHept3": "After ~100 million Quark Hepts, their effect is raised to ^0.16! Absolute rubbish. Gain +2% to all Quark Hept DRs, yet again.", - "improveQuarkHept4": "And when they've given you their all, some stagger and fall after all it's not easy...", - "shopImprovedDaily": "Hey you. Yeah, you! Quarks make seal merchant happy. Get +5% more of them from code 'daily' per level.", - "shopImprovedDaily2": "Gain 1 additional free Singularity Upgrade and 20% more Golden Quarks per use of 'daily' per level!", - "shopImprovedDaily3": "Gain 1 additional free Singularity Upgrade and 15% more Golden Quarks per use of 'daily' per level!", - "shopImprovedDaily4": "Gain 1 additional free Singularity Upgrade and 100% more Golden Quarks per use of 'daily' per level!", - "offeringEX3": "Gain 2% more Offerings per level, multiplicative! (Multiplier is 1.02^level)", - "obtainiumEX3": "Gain 2% more Obtainium per level, multiplicative! (Multiplier is 1.02^level)", - "chronometerInfinity": "Gain +1% Ascension Speed per level, multiplicative! (Multiplier is 1.01^level)", - "seasonPassInfinity": "Gain +2% more cubes per level, multiplicative! (Multiplier is 1.02^level)", - "shopSingularityPenaltyDebuff": "Derpsmith was so proud of your performance in the first EXALT that he wants to make your singularity debuffs weaker. At a cost. A big cost.", - "obtainiumEX2": "Gain +1% Obtainium per level per Singularity!!!", - "improveQuarkHept5": "This is 1/50 as effective as a normal improver. Why? Because of balancing...", - "shopAmbrosiaGeneration1": "Buying this charm grants +1% faster Blueberry Time generation per level, for more Ambrosia! Don't know what that means? You soon will.", - "shopAmbrosiaGeneration2": "Newly fortified Obtainium Dust makes your charm more powerful, giving +1% faster Blueberry Time generation per level, stacking multiplicatively.", - "shopAmbrosiaGeneration3": "It turns out adding more Obtainium Dust makes your charm more powerful, go figure. +1% faster Blueberry Time generation per level, stacking multiplicatively.", - "shopAmbrosiaGeneration4": "What if you also added Quark Dust??? You will find out. +0.1% faster Blueberry Time generation per level, stacking multiplicatively.", - "shopAmbrosiaLuck1": "Buying this charm grants +2 ☘ Ambrosia luck per level, for more Ambrosia! Don't know what that means? You soon will.", - "shopAmbrosiaLuck2": "You get a slightly larger four leaf clover, giving +2 ☘ Ambrosia luck per level, stacking additively.", - "shopAmbrosiaLuck3": "You get a slightly greener four leaf clover, giving +2 ☘ Ambrosia luck per level, stacking additively.", - "shopAmbrosiaLuck4": "You get a slightly 'better' four leaf clover, what ever that means, giving +0.6 ☘ Ambrosia luck per level, stacking additively.", - "shopAmbrosiaLuckMultiplier4": "Gain ☘ +1% Ambrosia Luck per level! Simple as that.", - "shopOcteractAmbrosiaLuck": "Gain ☘ +1 Ambrosia Luck per digit in your Wow! Octeract inventory per level. Simple as that.", - "shopCashGrabUltra": "For a nominal price, gain up to +20% Blueberry Speed, +80% Cubes and +12% Quarks per level based on Ambrosia, scaling nonlinearly until 10,000,000 lifetime earned.", - "shopAmbrosiaAccelerator": "Each level of this 'accelerator' provides <> real-life seconds of Blueberry Generation for every <> Ambrosia gained, from any source!", - "shopEXUltra": "With this EX Upgrade, every 1,000 owned Ambrosia adds +0.1% <>, <> and <>! This effect caps at 125,000 * (level of shop upgrade)!", - "shopChronometerS": "With this upgrade, you gain +1% Ascension Speed and Global Speed per Singularity number above 200 your Singularity takes place!", - "shopAmbrosiaUltra": "For this absurdly expensive EX Upgrade, every EXALT completion grants +1 permanent ☘ Ambrosia Luck, per level.", - "shopSingularitySpeedup": "You know all those time-gated Singularity and Octeract Upgrades? Now they accumulate 50 times faster! Thanks to this weird clock that somehow alters even <>...", - "shopSingularityPotency": "You know all those free Singularity Upgrades? They are now 266% more effective (so, each is worth the equivalent to 3.66 levels, before softcaps). Why? This kinda weird <>! Don't question it.", - "shopSadisticRune": "What a weird rune; The shopkeeper (who you know no longer can see) says telepathically that it is an Infinite Ascent rune drenched in some <>. There were multiple infinite ascents?" - }, - "maxed": "Maxed!", - "upgradeFor": "Upgrade for {{x}} Quarks", - "plusForQuarks": "+ {{x}} for {{y}} Quarks", - "consume": "CONSUME", - "buyYerPotions": "Buy Yer' Potions!", - "header": "Welcome to the Quark Shop. You can't believe what's in stock!", - "youHaveQuarks": "You have {{x}} Quarks!", - "cannotRefund": "This item CANNOT be refunded! Take caution.", - "resetPermShop": "Reset Perm Shop [Cost: 15 Quarks]", - "shopConfirmationOn": "Shop Confirmations: ON", - "shopConfirmationOff": "Shop Confirmations: OFF", - "hideMaxedOn": "Hide Maxed: ON", - "hideMaxedOff": "Hide Maxed: OFF", - "autoCatalyzeOn": "Auto Catalyze: ON", - "autoCatalyzeOff": "Auto Catalyze: OFF", - "shiftClickForBuyAny": "Shift-Click for Buy: Any", - "buy10": "Buy: 10", - "buy1": "Buy: 1", - "buyMax": "Buy: MAX", - "buyAny": "Buy: ANY", - "upgradeEffects": { - "currentEffect": "Current Effect:", - "offeringPotion": "Gain <> Offerings", - "obtainiumPotion": "Gain <> Obtainium", - "offeringEX": "You will gain <> more Offerings!", - "offeringAuto": "Per 10 seconds, pour <> Offerings. +<> Offerings.", - "obtainiumEX": "You will gain <> more Obtainium!", - "obtainiumAuto": "Try to upgrade research each reincarnation, and gain <> more Obtainium.", - "instantChallenge": "Even in a premium shop it's kinda obvious, right?", - "antSpeed": "All Ants' Speed <>", - "cashGrab": "You will gain <> more Obtainium and Offerings!", - "shopTalisman": "Even in a premium shop it's kinda obvious, right?", - "seasonPass": "Ascensions give <> more Wow! Cubes and Tesseracts.", - "challengeExtension": "Reincarnation Challenges may be completed an additional <> times.", - "challengeTome": "Challenge 10 Exponent Requirement reduced by <> Million. Past 60 completions of C9 or C10 the scaling multiplier is [completions * <>]", - "cubeToQuark": "Even in a premium shop it's kinda obvious, right?", - "tesseractToQuark": "Even in a premium shop it's kinda obvious, right?", - "hypercubeToQuark": "Even in a premium shop it's kinda obvious, right?", - "seasonPass2": "Ascensions give <> more Hypercubes and Platonic Cubes.", - "seasonPass3": "Ascensions give <> more Hepteracts and Octeracts.", - "chronometer": "Ascension timer increases <> faster.", - "infiniteAscent": "The first level gives <> Quarks, for free!", - "calculator": "Code 'add' provides <> more Quarks. AutoAnswer: <>, AutoFill: <>", - "calculator2": "Code 'add' has <> more capacity. 'add' generates <> more Quarks.", - "calculator3": "Code 'add' rewards are <> less random. 'add' generates <> seconds to Ascension Timer.", - "calculator4": "Code 'add' refills <> faster. Capacity is increased by <>.", - "calculator5": "Code 'add' generates <> seconds of GQ export timer. Capacity is increased by <>.", - "calculator6": "Code 'add' generates <> seconds of Octeracts. Capacity is increased by <>.", - "calculator7": "Code 'add' generates <> seconds of Blueberry Generation. Capacity is increased by <>.", - "constantEX": "<> max percent on Constant Upgrade 2'", - "powderEX": "Gain <> Overflux Powder when Overflux Orbs expire (midnight, daily).", - "chronometer2": "Ascension timer increases <> faster!", - "chronometer3": "Ascension timer increases <> faster! This one <> resets!", - "seasonPassY": "Ascensions give <> more cubes (of <> types) on Ascension.", - "seasonPassZ": "Ascensions give <> more cubes (of <> types) on Ascension. This one <> resets!", - "challengeTome2": "Challenge 10 Exponent Requirement reduced by <> Million. Past 60 completions of C9 or C10 the scaling multiplier is [completions * <>]", - "instantChallenge2": "Instant Challenge does <> more challenges per tick.", - "cubeToQuarkAll": "Cube to Quark Corner gives <> more Quarks!", - "cashGrab2": "You will gain <> more Obtainium and Offerings! <> as powerful as the original.", - "chronometerZ": "Ascension timer increases <> faster! Seems like this model can build <>...", - "offeringEX2": "You will gain <> more Offerings! Puts the first to <>...", - "obtainiumEX2": "You will gain <> more Obtainium! Puts the first to <>...", - "powderAuto": "Every <> purchased orbs grants 1 powder.", - "seasonPassLost": "You generate <> more Wow! Octeracts per second.", - "challenge15Auto": "Even in a premium shop it's kinda obvious, right?", - "extraWarp": "You can warp <> extra times.", - "autoWarp": "If you buy this upgrade, you can toggle <> in the Hepteract Forge tab. Only if you buy this, though.", - "improveQuarkHept": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", - "improveQuarkHept2": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", - "improveQuarkHept3": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", - "improveQuarkHept4": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", - "improveQuarkHept5": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", - "shopImprovedDaily": "Code 'daily' gives <> more quarks.", - "shopImprovedDaily2": "Code 'daily' grants <> free Singularity Upgrades and <> more Golden Quarks.", - "shopImprovedDaily3": "Code 'daily' grants <> free Singularity Upgrades and <> more Golden Quarks.", - "shopImprovedDaily4": "Code 'daily' grants <> free Singularity Upgrades and <> more Golden Quarks.", - "offeringEX3": "You will gain <> more Offerings!", - "obtainiumEX3": "You will gain <> more Obtainium!", - "chronometerInfinity": "Ascension timer increases <> faster.", - "seasonPassInfinity": "Ascensions give <> more cubes (of <> types) on Ascension.", - "shopSingularityPenaltyDebuff": "At Singularity <>, your debuffs are as if you were in <>.", - "shopAmbrosiaLuckMultiplier4": "Gain <> Ambrosia Luck!", - "shopOcteractAmbrosiaLuck": "Octeracts grant <> Ambrosia Luck!", - "shopAmbrosiaGeneration1": "Blueberry Time is generated <> faster.", - "shopAmbrosiaGeneration2": "Blueberry Time is generated <> faster.", - "shopAmbrosiaGeneration3": "Blueberry Time is generated <> faster.", - "shopAmbrosiaGeneration4": "Blueberry Time is generated <> faster.", - "shopAmbrosiaLuck1": "Ambrosia Luck <>", - "shopAmbrosiaLuck2": "Ambrosia Luck <>", - "shopAmbrosiaLuck3": "Ambrosia Luck <>", - "shopAmbrosiaLuck4": "Ambrosia Luck <>", - "shopCashGrabUltra": "Blueberry Generation is <> faster. Also, Cubes <>! Finally, Quarks <>!", - "shopAmbrosiaAccelerator": "For every <> gained, add <> seconds of Blueberry Generation (<> Blueberry Seconds)!", - "shopEXUltra": "Ambrosia increases <>, <> and <> by <>!", - "shopChronometerS": "Ascension Speed and Global Speed are both increased by <>!", - "shopAmbrosiaUltra": "Gain <> Ambrosia Luck from your EXALT completions!", - "shopSingularitySpeedup": "Singularity Perks and Upgrades accumulate <> times faster!", - "shopSingularityPotency": "Free Singularity Upgrades are as if you had <> of them.", - "shopSadisticRune": "I'm not even sure what this rune can do. Have you purchased it? I can't see you, you know." - } - }, - "singularity": { - "goldenQuarks": { - "transaction": "Transaction of {{spent}} Golden Quarks successful! [-{{cost}} Quarks]", - "poor": "Sorry, I can't give credit. Come back when you're a little... mmm... richer!", - "buyPrompt": "You can buy Golden Quarks here for {{cost}} Quarks (Discounted by {{discount}})! You can buy up to {{max}}. How many do you want? Type -1 to buy max!", - "spendPrompt": "How many Golden Quarks would you like to spend? You have {{gq}} GQ. Type -1 to use max!", - "hasUpgrade": "Hey! You have already maxed this upgrade. :D", - "notHighEnoughLevel": "You're not powerful enough to purchase this yet.", - "ascensionReset": "You have succumbed to the cult. Your ascension progress was reset as a one-time precaution...", - "multiBuyPurchased": "Purchased {{levels}} levels, thanks to Multi Buy!" - }, - "perks": { - "levelInfo": "Level {{level}} - (Singularity {{singularity}})", - "improvedIn": "An existing Perk will be improved in Singularity {{sing}}", - "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", - "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", - "description": "(Hover for more details. Perks in gold text were added or improved in this Singularity)", - "welcometoSingularity": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%", - "goldenCoins": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}", - "xyz": { - "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", - "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", - "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" - }, - "hepteractAutocraft": "Hepteract Autocraft will be unlocked", - "generousOrbs": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%", - "researchDummies": { - "hasLevel1": "You permanently keep Auto Research", - "otherwise": "You can Research using Hover to Buy" - }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" - }, - "antGodsCornucopia": { - "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", - "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", - "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", - "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." - }, - "sweepomatic": { - "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" - }, - "superStart": { - "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", - "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", - "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", - "hasLevel1": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos and 10 Particles", - "default": "You start each Ascension with 1 Transcension and 1001 Mythos" - }, - "notSoChallenging": { - "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", - "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", - "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", - "hasLevel1": "You start each Ascension with 1 completion of Challenges 6 and 7", - "default": "You start each Ascension with 1 completion of Challenge 6" - }, - "automationUpgrades": { - "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", - "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", - "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", - "hasLevel2": "You always have w1x4 through w1x8 and w2x10.", - "hasLevel1": "You always have w1x4 through w1x8.", - "default": "You always have w1x7. (Autobuyers for Particle buildings)" - }, - "evenMoreQuarks": { - "bug": "This is a bug! Contact Platonic if you see this message, somehow.", - "m": "You gain <> stacks of <> Quarks! Total Increase: <>" - }, - "shopSpecialOffer": { - "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", - "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", - "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" - }, - "potionAutogenerator": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity.", - "respecBeGone": "Talismans now buff all runes at all times!", - "forTheLoveOfTheAntGod": { - "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", - "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", - "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" - }, - "itAllAddsUp": "ADD code reward is divided by {{div}} but the cooldown is also divided by {{div2}} and capacity is multiplied by {{cap}} (rounded up).", - "automagicalRunes": { - "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", - "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", - "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", - "default": "Runes autobuyer will buy Blessings and Spirits" - }, - "exaltedAchievements": "Unlocks new, very difficult achievements! They are earned differently from others, however...", - "coolQOLCubes": { - "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", - "default": "Researches related to opening cubes will no longer reset on Ascension" - }, - "irishAnt": "Ants blessed with the luck of the Irish grant ☘ {{i}} Ambrosia Luck!", - "irishAnt2": "Ants blessed with more fortunate luck of the Irish grant ☘ {{i}} more Ambrosia Luck!", - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", - "wowCubeAutomatedShipping": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." - }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", - "platonicClones": { - "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", - "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." - }, - "dilatedFiveLeaf": { - "desc": "Increase your base ☘ Ambrosia Luck by <>! +1% per perk level." - }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", - "octeractMetagenesis": { - "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", - "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" - }, - "immaculateAlchemy": { - "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", - "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", - "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." - }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!", - "oneHundredThirtyOne": "Gain <> Ambrosia Luck!", - "twoHundredSixtyNine": "Gain <> Ambrosia Luck!" - }, - "toString": { - "noMinimum": "No minimal Singularity to purchase required", - "costNextLevel": "Cost for next level" - }, - "data": { - "goldenQuarks1": { - "name": "Golden Quarks I", - "description": "In the future, you will gain 10% more Golden Quarks on Singularities per level!", - "effect": "Permanently gain {{n}}% more Golden Quarks on Singularities." - }, - "goldenQuarks2": { - "name": "Golden Quarks II", - "description": "Buying GQ is 0.2% cheaper per level! [After 50%, effect grows much slower]", - "effect": "Purchasing Golden Quarks in the shop is {{n}}% cheaper." - }, - "goldenQuarks3": { - "name": "Golden Quarks III", - "description": "If you buy this, you will gain Golden Quarks per hour from Exports. Leveling up gives (level) additional per hour!", - "effect": "Every hour, you gain {{n}} Golden Quarks from exporting." - }, - "starterPack": { - "name": "Starter Pack", - "description": "Buy this! Buy This! Cube gain is permanently multiplied by 5, and gain 6x the Obtainium and Offerings from all sources, post-corruption.", - "effectHave": "You have unlocked a 5x multiplier to Cubes and 6x multiplier to Obtainium and Offerings.", - "effectHaveNot": "You have not unlocked a 5x multiplier to Cubes and 6x multiplier to Obtainium and Offerings." - }, - "wowPass": { - "name": "Shop Bonanza", - "description": "This upgrade will convince the seal merchant to sell you more cool stuff, which even persist on Singularity!", - "effectHave": "You have unlocked the Shop Bonanza.", - "effectHaveNot": "You have not unlocked the Shop Bonanza." - }, - "cookies": { - "name": "Cookie Recipes I", - "description": "For just a few Golden Quarks, re-open Wow! Bakery, adding five cookie-related Cube upgrades.", - "effectHave": "You have unlocked volume 1 of the recipe book.", - "effectHaveNot": "You have not unlocked volume 1 of the recipe book." - }, - "cookies2": { - "name": "Cookie Recipes II", - "description": "Diversify Wow! Bakery into cooking slightly more exotic cookies, adding five more cookie-related Cube upgrades.", - "effectHave": "You have unlocked volume 2 of the recipe book.", - "effectHaveNot": "You have not unlocked volume 2 of the recipe book." - }, - "cookies3": { - "name": "Cookie Recipes III", - "description": "Your Bakers threaten to quit without a higher pay. If you do pay them, they will bake even more fancy cookies.", - "effectHave": "You have appeased the union of Bakers.", - "effectHaveNot": "You have not appeased the union of Bakers." - }, - "cookies4": { - "name": "Cookie Recipes IV", - "description": "This is a small price to pay for Salvation.", - "effectHave": "You have paid your price for salvation.", - "effectHaveNot": "You have not paid your price for salvation." - }, - "cookies5": { - "name": "Cookie Recipes V", - "description": "The worst atrocity a man can commit is witnessing, without anguish, the suffering of others.", - "effectHave": "You have paid witness to the suffering of the masses.", - "effectHaveNot": "You have not paid witness to the suffering of the masses." - }, - "ascensions": { - "name": "Improved Ascension Gain", - "description": "Buying this, you will gain +2% Ascension Count forever, per level! Every 10 levels grants an additional, multiplicative +1% Ascension Count.", - "effect": "Ascension Count increases {{n}}% faster." - }, - "corruptionFourteen": { - "name": "Level Fourteen Corruptions", - "description": "Buy this to unlock level fourteen corruptions. :)", - "effectHave": "You have gained the ability to use level 14 corruptions. {{m}}", - "effectHaveNot": "You have not gained the ability to use level 14 corruptions. {{m}}" - }, - "corruptionFifteen": { - "name": "Level Fifteen Corruptions", - "description": "This doesn't *really* raise the corruption limit. Rather, it adds one FREE level to corruption multipliers, no matter what (can exceed cap). :)", - "effectHave": "You have gained a free corruption level. {{m}}", - "effectHaveNot": "You have not gained a free corruption level. {{m}}" - }, - "singOfferings1": { - "name": "Offering Charge", - "description": "Upgrade this to get +2% Offerings per level, forever!", - "effect": "Permanently gain {{n}}% more Offerings." - }, - "singOfferings2": { - "name": "Offering Storm", - "description": "Apparently, you can use this bar to attract more Offerings. +8% per level, to be precise.", - "effect": "Permanently gain {{n}}% more Offerings." - }, - "singOfferings3": { - "name": "Offering Tempest", - "description": "This bar is so prestine, it'll make anyone submit their Offerings. +4% per level, to be precise.", - "effect": "Permanently gain {{n}}% more Offerings." - }, - "singObtainium1": { - "name": "Obtainium Wave", - "description": "Upgrade this to get +2% Obtainium per level, forever!", - "effect": "Permanently gain {{n}}% more Obtainium." - }, - "singObtainium2": { - "name": "Obtainium Flood", - "description": "Holy crap, water bending! +8% gained Obtainium per level.", - "effect": "Permanently gain {{n}}% more Obtainium." - }, - "singObtainium3": { - "name": "Obtainium Tsunami", - "description": "A rising tide lifts all boats. +4% gained Obtainium per level.", - "effect": "Permanently gain {{n}}% more Obtainium." - }, - "singCubes1": { - "name": "Cube Flame", - "description": "Upgrade this to get +1% Cubes per level, forever!", - "effect": "Permanently gain {{n}}% more Cubes." - }, - "singCubes2": { - "name": "Cube Blaze", - "description": "Burn some more Golden Quarks! +8% gained Cubes per level.", - "effect": "Permanently gain {{n}}% more Cubes." - }, - "singCubes3": { - "name": "Cube Inferno", - "description": "Even Dante is impressed. +4% gained Cubes per level.", - "effect": "Permanently gain {{n}}% more Cubes." - }, - "singCitadel": { - "name": "Citadel of Singularity", - "description": "What a unique structual phenomenon... but it gives +2% Obtainium, Offerings, and 3-7D cubes per level! +1% Additional for every 10 levels!", - "effect": "Obtainium, Offerings, and 3-7D Cubes +{{n}}%, forever!" - }, - "singCitadel2": { - "name": "Citadel of 'Singularity': The Real Edition", - "description": "This actual Citadel gives +2% Obtainium, Offerings, and 3-7D cubes per level! +1% Additional for every 10 levels! Also sets the free level of the fake citadel to whatever level this is.", - "effect": "Obtainium, Offerings, and 3-7D Cubes +{{n}}%, forever!" - }, - "octeractUnlock": { - "name": "Octeracts", - "description": "Hey!!! What are you trying to do?!?", - "effectHave": "You have bought into the Octeract hype.", - "effectHaveNot": "You have not bought into the Octeract hype." - }, - "singOcteractPatreonBonus": { - "name": "Platonic $ells out!!!", - "description": "You know that Patreon bonus? Yeah, that's cool and all, but what if it also boosted Octeract production by the same amount?", - "effect": "Octeract production is {{n}}% faster for every $10 per month on the Patreon! Same as the Quark bonus which already exists." - }, - "offeringAutomatic": { - "name": "Blueberry Shards! (WIP)", - "description": "The legends are true. \n The Prophecies are fulfilled. \n Ant God has heard your prayers. \n Let there be blueberries! \n And they were good.", - "effect": "You have purchased {{n}} tasty blueberries." - }, - "intermediatePack": { - "name": "Intermediate Pack", - "description": "Double Global Speed, Multiply Ascension speed by 1.5, and gain +2% Quarks forever. Yum... 2% Quark Milk.", - "effectHave": "You have upgraded your package to intermediate.", - "effectHaveNot": "You have not upgraded your package to intermediate." - }, - "advancedPack": { - "name": "Advanced Pack", - "description": "Now we're cooking with kerosene! Gain +4% Quarks stack with intermediate, +0.33 to all corruption score multipliers, regardless of level!", - "effectHave": "You have bought our advanced package.", - "effectHaveNot": "You have not bought our advanced package." - }, - "expertPack": { - "name": "Expert Pack", - "description": "That's a handful! Gain +6% Quarks stack with advanced, 1.5x Ascension Score, Code 'add' gives 1.2x Ascension Timer.", - "effectHave": "You have switched to the expert provider.", - "effectHaveNot": "You have not switched to the expert provider." - }, - "masterPack": { - "name": "Master Pack", - "description": "A tad insane. Gain +8% Quarks stack with expert, for every level 14 corruption, Ascension score is multiplied by 1.1.", - "effectHave": "You have mastered your inner chakras.", - "effectHaveNot": "You have not mastered your inner chakras." - }, - "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.", - "effectHave": "You have found the reason for existence.", - "effectHaveNot": "You have not found the reason for existence." - }, - "wowPass2": { - "name": "Shop Liquidation Sale", - "description": "The Seal Merchant needs to get rid of some exotic goods. Only for a steep price. I do not think that is how sales work.", - "effectHave": "You have triggered the Liquidation event!", - "effectHaveNot": "You have not triggered the Liquidation event!" - }, - "wowPass3": { - "name": "QUAAAACK", - "description": "QUAAAAAAAACK. The Merchant has gone crazy for your QUARKS!", - "effectHave": "You have triggered the QUACKSTRAVAGANZA!!", - "effectHaveNot": "You have not triggered the QUACKSTRAVAGANZA!!" - }, - "potionBuff": { - "name": "Potion Decanter of Enlightenment", - "description": "Purported to actually be the fountain of youth, this item powers up potions considerably!", - "effect": "Potions currently give {{n}}x items!" - }, - "potionBuff2": { - "name": "Potion Decanter of Inquisition", - "description": "Staring at the glass, you aren't actually sure what this potion is.", - "effect": "Potions currently give {{n}}x items!" - }, - "potionBuff3": { - "name": "Potion Decanter of Maddening Instability", - "description": "SHE'S GONNA BLOW!!!! Said Midas, the Golden Quark Salesman. Oh yeah, did we mention he's in the game?", - "effect": "Potions currently give {{n}}x items!" - }, - "singChallengeExtension": { - "name": "Bigger Challenge Caps", - "description": "Need more Challenges? Well, add 2 more Reincarnation Challenges and 1 Ascension Challenge to the cap, per level.", - "effect": "You feel motivated enough to complete {{n}} more Reincarnation Challenges, and {{m}} more Ascension Challenges." - }, - "singChallengeExtension2": { - "name": "Biggerer Challenge Caps", - "description": "Need even more Challenges? Well, add 2 more Reincarnation Challenges and 1 Ascension Challenge to the cap, per level.", - "effect": "You feel motivated enough to complete {{n}} more Reincarnation Challenges, and {{m}} more Ascension Challenges." - }, - "singChallengeExtension3": { - "name": "BiggererEST Challenge Caps", - "description": "Need even MORE Challenges? Well, add 2 more Reincarnation Challenges and 1 Ascension Challenge to the cap, per level. Does it not seem excessive?", - "effect": "You feel motivated enough to complete {{n}} more Reincarnation Challenges, and {{m}} more Ascension Challenges." - }, - "singQuarkImprover1": { - "name": "Marginal Quark Gain Improver Thingy", - "description": "A doohickey that I forgot what it looked like. +0.5% Quarks per level, multiplicative with all other bonuses! Seems like it grows in cost a lot faster than anything else though. Also, did you know these descriptions can be arbitarily long?", - "effect": "You gain {{n}}% more Quarks!" - }, - "singQuarkHepteract": { - "name": "I wish my Quark Hepteract was marginally better.", - "description": "Wrong game, oops. Anyway, would you like a very slightly better DR exponent on Quark Hepteract?", - "effect": "The DR exponent is now {{n}}% larger!" - }, - "singQuarkHepteract2": { - "name": "I wish my Quark Hepteract was marginally better II.", - "description": "Still not the right game. Same as the previous upgrade.", - "effect": "The DR exponent is now {{n}}% larger!" - }, - "singQuarkHepteract3": { - "name": "I wish my Quark Hepteract was marginally better III.", - "description": "I AM NOT THE GODMOTHER YOU ARE LOOKING FOR, DYLAN!", - "effect": "The DR exponent is now {{n}}% larger!" - }, - "singOcteractGain": { - "name": "Octeract Absinthe", - "description": "You would have never known this tonic can boost your Octeracts! [+1.25% per level, in fact!]", - "effect": "Octeract Gain +{{n}}%" - }, - "singOcteractGain2": { - "name": "Pieces of Eight", - "description": "There is indeed eight of them, but each only gives +0.625% bonus, so each level gives +5% Octeract per level.", - "effect": "Octeract Gain +{{n}}%" - }, - "singOcteractGain3": { - "name": "The Obelisk Shaped like an Octagon.", - "description": "Platonic had to reach pretty far here. +2.5% Octeracts yeah!", - "effect": "Octeract Gain +{{n}}%" - }, - "singOcteractGain4": { - "name": "Octahedral Synthesis", - "description": "How does this even work!?? +2% Octeracts, you bet!", - "effect": "Octeract Gain +{{n}}%" - }, - "singOcteractGain5": { - "name": "The Eighth Wonder of the World", - "description": "is the wonder of the world we live in. [+1% Octeracts. Platonic, this is so stingy! but, he does not care one bit.]", - "effect": "Octeract Gain +{{n}}%" - }, - "platonicTau": { - "name": "Platonic TAU", - "description": "Placed in the wrong upgrade section, this will remove any restrictions on corruptions or corruption level caps! Also raises 3d cube gain to the power of 1.01!", - "effectHave": "This upgrade has been purchased", - "effectHaveNot": "This upgrade has not been purchased" - }, - "platonicAlpha": { - "name": "Platonic ALPHA...?", - "description": "Confusion ensues as to why there are two of these. This one is capitalized, so buying this ensures Platonic Alpha is always maxed!", - "effectHave": "This upgrade has been purchased", - "effectHaveNot": "This upgrade has not been purchased" - }, - "platonicDelta": { - "name": "Platonic DELTA", - "description": "Time follows you towards the future, after getting this bad boy. Gain +100% more cubes per day in your current singularity, up to +900% at day 9.", - "effectHave": "This upgrade has been purchased", - "effectHaveNot": "This upgrade has not been purchased" - }, - "platonicPhi": { - "name": "Platonic PHI", - "description": "Time follows you toward the past as well. Gain 5 additional free Singularity Upgrades per day in your singularity from code daily, up to +50 after 10 days.", - "effectHave": "This upgrade has been purchased", - "effectHaveNot": "This upgrade has not been purchased" - }, - "singFastForward": { - "name": "Etherflux Singularities", - "description": "Golden Quark gained by Singularity is increased by 100% (additive), and going singular at your all time highest count gives +1 singularity count!", - "effectHave": "You've transformed the Etherflux!", - "effectHaveNot": "You haven't transformed the Etherflux!" - }, - "singFastForward2": { - "name": "Aetherflux Singularities", - "description": "Golden Quark gained by Singularity is increased by 100% (additive) and going singular at your all time highest count gives +1 singularity count! It's like Etherflux but with an A.", - "effectHave": "You've transformed the Aetherflux!", - "effectHaveNot": "You haven't transformed the Aetherflux!" - }, - "singAscensionSpeed": { - "name": "A hecking good ascension speedup!", - "description": "Ascension Speed is raised to the power of 1.03, raised to 0.97 if less than 1x.", - "effect": "Ascension Speed ^{{n}}, ^{{m}} if < 1x" - }, - "singAscensionSpeed2": { - "name": "A mediocre ascension speedup!", - "description": "Ascension speed is multiplied by 6 if you have not purchased Antiquities in your current Singularity.", - "effect": "The effect is clear" - }, - "WIP": { - "name": "WIP TEMPLATE", - "description": "This is a template! Bottom Text.", - "effect": "Update this description at a later time!!!!!!!!!!" - }, - "ultimatePen": { - "name": "The Ultimate Pen", - "description": "You. It is you who is the author of your own story!", - "effect": "You do {{n}} own the Ultimate Pen. {{m}}" - }, - "oneMind": { - "name": "ONE MIND", - "description": "A note, you found on the 'ground': seems like an advertisement for a cult. \"Lock your ascension speed to 10x, and multiply all cubes based on the difference.\" Hmm...", - "effectHave": "You have joined the cult!", - "effectHaveNot": "You haven't joined the cult!" - }, - "wowPass4": { - "name": "QUQUQUQUAAKCKCKKCKKCKK", - "description": "Deals that'll cost you a beak and a wing!", - "effectHave": "You have quacked your last QUARK", - "effectHaveNot": "You haven't quacked your last QUARK" - }, - "blueberries": { - "name": "Blueberry Shards! (WIP)", - "description": "Blueberries! Yeah, Platonic is out of ideas. Well, each Blueberry gives a 0.01% chance per second to generate some Ambrosia!", - "effect": "You have purchased {{n}} tasty blueberries." - }, - "singAmbrosiaLuck2": { - "name": "Gilded Berries of Good Fortune", - "description": "Literally put some gold onto 'berries' and become lucky. ☘ +2 Ambrosia Luck per level!", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "singAmbrosiaLuck3": { - "name": "Dedicated Gold Smelting", - "description": "More gold is dipped onto each berry. ☘ +3 Ambrosia Luck per level!", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "singAmbrosiaLuck": { - "name": "Absolute Hot", - "description": "Your gold smelters get arbitrarily close to 'Absolute Hot'. ☘ +4 Ambrosia Luck per level, infinitely levelable!", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "singAmbrosiaLuck4": { - "name": "The Alchemists from the Beginning of the Game Work for your Golden Berry Needs", - "description": "Yeah, these upgrade titles can be arbitrarily long, too. ☘ +5 Ambrosia Luck per level!", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "singAmbrosiaGeneration2": { - "name": "Hourglass of Importance", - "description": "A somewhat important hourglass which somehow makes your blueberries generate seconds 1% faster per level..", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - }, - "singAmbrosiaGeneration3": { - "name": "Hourglass of Significance", - "description": "An hourglass which is still important, perhaps even more so. +1% Blueberry Second Generation per level.", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - }, - "singAmbrosiaGeneration": { - "name": "Hourglass of Limitlessness", - "description": "Remember- this hourglass is really important. But it gives +1% Blueberry Second Generation per level and is infinitely levelable!", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - }, - "singAmbrosiaGeneration4": { - "name": "Hourglass of Fantasy", - "description": "An hourglass which is unimportant and 'less timely'- whatever that means. +2% Blueberry Second Generation per level.", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - } - }, - "goldenQuarkAmount": "You have {{goldenQuarks}} Golden Quarks!", - "penalties": { - "globalSpeed": "<> is divided by <>.", - "ascensionSpeed": "<> is divided by <>.", - "offeringGain": "<> is divided by <>.", - "obtainiumGain": "<> is divided by <>.", - "cubeGain": "<> is divided by <>.", - "researchCosts": "<> are multiplied by <>.", - "cubeUpgradeCosts": "<> (Excluding Cookies) are multiplied by <>.", - "platonicCosts": "<> are multiplied by <>.", - "hepteractCosts": "<> are multiplied by <>.", - "penaltySmooth": "You will no longer experience sudden spikes in penalties.", - "penaltyRough": "Your penalties will sharply worsen in <>.", - "antiquitiesBought": "<>", - "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "xyz": "XYZ: Xtra dailY rewardZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Research for Dummies", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Automation Upgrades", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "irishAnt": "Irish Ants", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Irish Ants II: Electric Boogaloo", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ", - "twoHundredSixtyNine": "Two Hundred and Sixty Nine!", - "oneHundredThirtyOne": "One Hundred and Thirty One!" - } - }, - "general": { - "youAreInThe": "You are in the <>", - "validation": { - "finite": "Value must be a finite number!", - "zeroOrLess": "Only numbers greater than zero, please!", - "moreThanPlayerHas": "You can't afford this yet!", - "fraction": "Yeah, that isn't an integer. We don't accept fractions here!", - "goldenQuarksTooMany": "Sorry, I cannnot sell you this many Golden Quarks! Try buying fewer of them or typing -1 to buy max!", - "finiteInt": "Value must be a finite, non-decimal number!", - "invalidNumber": "Hey! That's not a valid number!" - }, - "cancelled": "Okay, maybe next time!", - "level": "Level", - "minimum": "Minimum", - "spent": "Spent", - "OK": "OK", - "Cancel": "Cancel", - "autoOnBracket": "Auto [ON]", - "autoOffBracket": "Auto [OFF]", - "softCapped": "(Softcapped)", - "maxed": "(Maxed)", - "affordable": "(Affordable)", - "enabled": "(Enabled)", - "infinity": "Infinity", - "sacrificeCapital": "SACRIFICE", - "multiBuyInstructions": "Buy multiple levels at once by holding <> while clicking!", - "autoOnColon": "Auto: ON", - "autoOffColon": "Auto: OFF", - "buyMaxOn": "Buy Max: ON", - "buyMaxOff": "Buy Max: OFF", - "on": "ON", - "off": "OFF", - "updateAlerts": { - "june282021": "June 28, 2021: V2.5.3. You have been refunded quarks from calculators if you purchased them. They are no longer refundable so be wary!", - "july22021": "July 2, 2021: V2.5.5. You have been refunded quarks from Powder EX upgrade, if you purchased levels. Your T1 ants were also reset and base cost set to 1e700 particles. Powder EX is no longer refundable, though, so be careful!", - "sing230Balancing": "Due to balancing changes, you were sent back to Singularity 230 to prevent softlocking your savefile!", - "december22xxxx": "You have loaded into the December 22 patch v1.", - "january42023": "You have loaded into the January 4, 2023 Patch v1.", - "v297hotfix1NoSing": "You have loaded into the version 2.9.7 hotfix 1!", - "v297hotfix1Sing": "You have loaded into the version 2.9.7 hotfix 1! Your uncapped resource singularity upgrades have been refunded! Sorry for the inconvenience." - }, - "languageChange": "Changing the language requires a reload! Would you like to reload now?" - }, - "upgrades": { - "descriptions": { - "1": "Increase production of Workers per producer bought.", - "2": "Increase production of Investments per producer bought.", - "3": "Increase production of Printers per producer bought.", - "4": "Increase production of Mints per producer bought.", - "5": "Increase production of Alchemies per producer bought.", - "6": "Increase all production based on producer bought.", - "7": "Gain free multipliers based on your purchased Alchemies.", - "8": "Gain 1 free Accelerator per 7 purchased Multipliers.", - "9": "Gain 1 free Multiplier per 10 purchased Accelerators.", - "10": "Improve Workers based on the first 750 purchased Investments.", - "11": "Accelerators improve generation production by 2% each.", - "12": "Each Prestige multiplies production by 1.01, multiplicatively (Max: 1e4x).", - "13": "Augments buff the production of Investments.", - "14": "Free Accelerators buff generation of Printers.", - "15": "Free Accelerators buff generation of Mints.", - "16": "Acceleration Multiplier buffs Diamond gain.", - "17": "Multiply Mint production by 1e+100.", - "18": "Multiply Printer production based on Mythos Shards.", - "19": "Multiply Investment production based on Mythos.", - "20": "Coin upgrade 1 is raised to the eleventh power.", - "21": "Gain 1 Multiplier and 5 Accelerators plus 1% more free Multipliers/Accelerators.", - "22": "Gain 1 Multiplier and 4 Accelerators plus 1% more free Multipliers/Accelerators.", - "23": "Gain 1 Multiplier and 3 Accelerators plus 1% more free Multipliers/Accelerators.", - "24": "Gain 1 Multiplier and 2 Accelerators plus 1% more free Multipliers/Accelerators.", - "25": "Gain 1 Multiplier and 1 Accelerators plus 1% more free Multipliers/Accelerators.", - "26": "Gain a free Accelerator Boost.", - "27": "Gain free Accelerators based on unspent Coins.", - "28": "Gain a free Multiplier per 160 Coin producers bought.", - "29": "Gain a free Accelerator per 80 Coin producers bought.", - "30": "Gain free Multipliers based on unspent Coins.", - "31": "Gain 1 free Accelerator Boost per 2,000 Coin producers bought.", - "32": "Gain free Accelerators based on Unspent Diamonds.", - "33": "Gain 1 free Multiplier for each Accelerator Boost owned.", - "34": "Gain 3% more free Multipliers.", - "35": "Gain 2% more free Multipliers.", - "36": "Multiply Crystal production by Diamonds, maximum 1e5000x.", - "37": "Multiply Mythos Shard production by the squared logarithm of Diamonds.", - "38": "Gain +20% more Offerings thanks to generous Discord Server Boosters!", - "39": "Gain +60% more Ant Speed thanks to generous Discord Server Boosters!", - "40": "Gain +25% more Ant Sacrifice rewards thanks to generous Discord Server Boosters!", - "41": "Multiply production based on unspent Mythos.", - "42": "Multiply Mythos Shard production based on unspent Diamonds.", - "43": "Multiply coin production by 1.01 per Transcension (Max: 1e30x).", - "44": "Multiply Mythos gain on Transcend by 1.01 per Transcension (Max: 1e6x).", - "45": "Gain free Accelerators based on Mythos Shards.", - "46": "Accelerator Boosts are 5% stronger and do not reset Prestige features.", - "47": "Multiply Mythos Shard production based on your AP.", - "48": "Multiply production based on owned Accelerators and Multipliers.", - "49": "Gain free Multipliers based on unspent Mythos.", - "50": "Gain +25% free Accelerators and Multipliers, but ONLY while doing Challenges.", - "51": "Increase production of all Mythos buildings based on owned Accelerator Boosts.", - "52": "Mythos building exponent +0.025.", - "53": "Augments produce more Shards based on Acceleration Multiplier.", - "54": "Wizards produce more Enchantments based on Multiplier.", - "55": "Grandmasters produce more Oracles based on Building power.", - "56": "Worker production is multiplied by 1e+5000.", - "57": "Investment production is multiplied by 1e+7500.", - "58": "Printer production is multiplied by 1e+15000.", - "59": "Coin Mint production is multiplied by 1e+25000.", - "60": "Alchemies production is multiplied by 1e+35000.", - "61": "Welcome to Reincarnation! +5% Offering Recycle, +2 EXP/Offering!", - "62": "Completing Challenges, automatically or manually, increase Offerings gained in Reincarnation. Bonus subject to time multiplier!", - "63": "Crystal Production is multiplied based on Particles to the sixth power [Caps at 1e6000x].", - "64": "Mythos Shard Production is multiplied by your Particles squared.", - "65": "Multiply the gain of Particles from Reincarnation by 5x!", - "66": "When you use an Offering, every unlocked rune will get 1 free experience.", - "67": "Atom gain is increased by 3% per Particle producer purchased!", - "68": "Gain a free Multiplier for every 1e1000x increase in tax.", - "69": "Gain more Obtainium based on your particle gain. [Works with automation at a reduced rate!]", - "70": "Time seems to go +0.333*log10(MAX Obtainium +1)% faster when you buy this.", - "71": "Runes will gain (Rune Level/25) additional EXP per Offering used.", - "72": "Obtainium gain from Reincarnations is multiplied (1 + 2C) where C is #Reincarnation Challenges completed, up to 50x!", - "73": "Gain +100% free Accelerator Boosts and +10 free Crystal Upgrade levels, but only in Reincarnation Challenges.", - "74": "Obtainium gain is increased based on highest ever unspent Offerings. [Max: 100,000 Unspent]", - "75": "Offering gain is increased based on highest ever unspent Obtainium [Max: 30,000,000 Obtainium]", - "76": "Ant generation kinda slow? I agree! Make all Ant tiers 5x faster!", - "77": "This is Synergism, right? Let's make each purchased Ant make all Ants 0.4% faster.", - "78": "Gain an Ant speed multiplier equivalent to (1 + 0.005 * (log10(MAX Offerings + 1))^2).", - "79": "The Ant God will accept an arbitrary number of Particles in order to give you 10% more from sacrifices.", - "80": "The Ant God will accept a larger arbitrary number of Particles to give you more Ant ELO.", - "81": "Automatically buy Workers if affordable.", - "82": "Automatically buy Investments if affordable.", - "83": "Automatically buy Printers if affordable.", - "84": "Automatically buy Coin Mints if affordable.", - "85": "Automatically buy Alchemies if affordable.", - "86": "Automatically buy Accelerators if affordable.", - "87": "Automatically buy Multipliers if affordable.", - "88": "Automatically buy Accelerator Boosts if affordable.", - "89": "Unlock Automatic Transcensions.", - "90": "Automatically buy from the Generator Shop.", - "91": "Automatically buy Coin Upgrades.", - "92": "Automatically buy Diamond Upgrades.", - "93": "Generate 1% of Diamond Gain from prestiging per second.", - "94": "Automatically buy Augments if affordable.", - "95": "Automatically buy Enchantments if affordable.", - "96": "Automatically buy Wizards if affordable.", - "97": "Automatically buy Oracles if affordable.", - "98": "Automatically buy Grandmasters if affordable.", - "99": "Automatically buy Mythos Upgrades if affordable.", - "100": "Generate 1% of Mythos Gain from transcending per second.", - "101": "Alchemies will produce Coin Mints.", - "102": "Coin Mints will produce Printers.", - "103": "Printers will produce Investments.", - "104": "Investments will produce Workers.", - "105": "Purchased Workers will produce Alchemies.", - "106": "Refineries can produce Alchemies equal to Refineries owned raised to 0.10", - "107": "Refinery -> Alchemy exponent increased from 0.10 to 0.25.", - "108": "Refinery -> Alchemy exponent increased from 0.25 to 0.50", - "109": "Refinery -> Alchemy exponent increased from 0.50 to 0.75", - "110": "Refinery -> Alchemy exponent increased from 0.75 to 1", - "111": "Augments can produce Pandora Boxes equal to Augments owned raised to 0.08", - "112": "Augment -> Box exponent increased from 0.08 to 0.16", - "113": "Augment -> Box exponent increased from 0.16 to 0.24", - "114": "Augment -> Box exponent increased from 0.24 to 0.32", - "115": "Augment -> Box exponent increased from 0.32 to 0.40", - "116": "Protons can produce Grandmasters equal to Protons owned raised to 0.05", - "117": "Protons -> Grandmaster exponent increased from 0.05 to 0.10", - "118": "Protons -> Grandmaster exponent increased from 0.10 to 0.15", - "119": "Protons -> Grandmaster exponent increased from 0.15 to 0.20", - "120": "Protons -> Grandmaster exponent increased from 0.20 to 0.25", - "121": "You probably autobought this. -50% taxes!", - "122": "Increase Crystal Upgrade 3 cap from +12% to +100%!", - "123": "Raise coin production to the power of 1.025. More EXPONENTS.", - "124": "Gain +3% more effective ELO.", - "125": "Constant Tax divisor is 0.333% stronger per challenge 10 completion. [Divisor^(1 + upgrade)]" - }, - "crystalEffects": { - "1": "Crystal production x{{x}}", - "2": "Crystal production x{{x}}", - "3": "Crystal production x{{x}}", - "4": "Coin production multiplier exponent +{{x}}", - "5": "Crystal production x{{x}}" - }, - "crystalUpgrades": { - "1": "Gain a 5% multiplicative boost to Crystals per AP per level.", - "2": "Gain a boost to Crystals based on held coins per level.", - "3": "Each purchased Crystal producer increases generation of Crystal producers by .1% per level. [MAX: {{max}}%]", - "4": "Improve the multiplier to coin production by .05 exponent per level. [MAX: +{{max}}]", - "5": "Every Transcension Challenge completion increases Crystal gain by 1% per level.", - "6": "Coming (not so) SOON!", - "7": "Coming (not so) SOON!", - "8": "Coming (not so) SOON!" - }, - "constantEffects": { - "1": "Tesseract building production x{{x}}", - "2": "Tesseract building production x{{x}}", - "3": "Offering gain x{{x}}", - "4": "Obtainium gain x{{x}}", - "5": "Ant Speed x{{x}}", - "6": "+{{x}} free Ant Levels", - "7": "+{{x}} free Rune Levels, +{{y}} to Rune Cap", - "8": "Rune EXP x{{x}}", - "9": "Runes effectiveness x{{x}}", - "10": "Cubes/Tesseracts on Ascension x{{x}}" - }, - "constantUpgrades": { - "1": "Make all Tesseract buildings {{level}}% more productive per level.", - "2": "Each Tesseract building bought increases the production of all of them by 0.1% per level [Max {{max}}%].", - "3": "Increase Offering gain +2% per level.", - "4": "Increase Obtainium gain +4% per level.", - "5": "Multiply Ant speed by (1 + log10(Constant + 1)/10)^level", - "6": "Add +2 free Ant Levels per level.", - "7": "Provides 7 free rune levels and increases the rune cap by 3 per level.", - "8": "Increase the rune EXP given by Offerings by 10% per level [Additive]", - "9": "When bought, rune effectiveness is increased by Log4(Talisman Shards +1) %", - "10": "When bought, gain Log4(Constant + 1)% more Wow! Cubes and Tesseracts on Ascension." - }, - "effects": { - "1": "Effect: Worker Production x{{x}}", - "2": "Effect: Investment Production x{{x}}", - "3": "Effect: Printer Production x{{x}}", - "4": "Effect: Mint Production x{{x}}", - "5": "Effect: Alchemy Production x{{x}}", - "6": "Effect: All Coin production x{{x}}", - "7": "Effect: Gain {{x}} free Multipliers from bought Alchemies.", - "8": "Effect: +{{x}} free Accelerators.", - "9": "Effect: +{{x}} free Multipliers.", - "10": "Effect: Worker Production x{{x}}", - "11": "Effect: Generator efficiency x{{x}}", - "12": "Effect: All Coin production x{{x}}", - "13": "Effect: Investment Production x{{x}}", - "14": "Effect: Printer Generation x{{x}}", - "15": "Effect: Mint Generation x{{x}}", - "16": "Effect: Gain {{x}}x more Diamonds on Prestige", - "17": "Effect: Mint Production x1e100 (Duh)", - "18": "Effect: Printer Production x", - "19": "Effect: Investment Production x{{x}}", - "20": "Effect: All coin production is further multiplied by {{x}} [Stacks with upgrade 1]!", - "21": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", - "22": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", - "23": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", - "24": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", - "25": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", - "26": "Effect: +1 Accelerator Boost.", - "27": "Effect: +{{x}} Accelerators.", - "28": "Effect: +{{x}} Multipliers.", - "29": "Effect: +{{x}} Accelerators.", - "30": "Effect: +{{x}} Multipliers.", - "31": "Effect: +{{x}} Accelerator Boosts", - "32": "Effect: +{{x}} Accelerators", - "33": "Effect: +{{x}} Multipliers", - "34": "Effect: +{{x}} Multipliers", - "35": "Effect: +{{x}} Multipliers", - "36": "Effect: All Crystal producers x{{x}}", - "37": "Effect: All Mythos producers production x{{x}}", - "38": "Effect: Thank you for getting the server above 30 boosts!", - "39": "Effect: Thank you for getting the server above 30 boosts!", - "40": "Effect: Thank you for getting the server above 30 boosts!", - "41": "Effect: Welcome to Transcension! Coin production is multiplied by {{x}}.", - "42": "Effect: All Mythos Shard producers are going into overdrive: x{{x}} the production!", - "43": "Effect: Multiply all coin production by {{x}}!", - "44": "Effect: Multiply Mythos gained in Transcension by {{x}}!", - "45": "Effect: +{{x}} Accelerators!", - "46": "Effect: It's kinda self-evident, ain't it?", - "47": "Effect: Mythos-tier producers production x{{x}}", - "48": "Effect: Multiply coin production by a factor of {{x}}!", - "49": "Effect: +{{x}} Multipliers through magic!", - "50": "Effect: It's quite obvious what the benefit is, but you must be in a Challenge for it to be in use!", - "51": "Effect: Mythos-tier producers production x{{x}}!", - "52": "Effect: Mythos-tier producers production x{{x}}! It's like inception, or something.", - "53": "Effect: Augments will produce {{x}}x as many Mythos Shards.", - "54": "Effect: Wizards will produce {{x}}x as many Enchantments; What productive spirits!", - "55": "Effect: Grandmasters will produce {{x}}x as many Oracles!", - "56": "Effect: It's quite obvious, ain't it?", - "57": "Effect: Look above!", - "58": "Effect: Look above!", - "59": "Effect: Look above!", - "60": "Effect: Look above!", - "61": "Effect: +5% Offering Recycle/+2EXP per Offerings. Duh!", - "62": "Effect: Base Offering amount for Reincarnations +{{x}}. Challenge yourself!", - "63": "Effect: All Crystal production x{{x}}", - "64": "Effect: All Mythos Shard production x{{x}}", - "65": "Effect: 5x Particle gain from Reincarnations. Duh!", - "66": "Effect: It's quite clear in the description!", - "67": "Effect: The first particle-tier producer is {{x}}x as productive.", - "68": "Effect: Your compliance with tax laws provides you with {{x}} free Multipliers, for some reason.", - "69": "Effect: Cosmic Magnetics will allow you to gain {{x}}x as much Obtainium reincarnating x{{y}} automatic gain.", - "70": "Effect: Contracted time makes your game timers run {{x}}% more quickly.", - "71": "Effect: Writing's on the wall. Look above!", - "72": "Effect: Obtainium multiplier: x{{x}}", - "73": "Effect: Same as Transcend upgrade 10, except you MUST be in a Reincarnation Challenge in particular.", - "74": "Effect: Obtainium multiplier: x{{x}}", - "75": "Effect: Offering Multiplier: x{{x}}", - "76": "Effect: Epic 5x Ants!", - "77": "Effect: Ant Speed Multiplier: x{{x}}", - "78": "Effect: Ant Speed Multiplier: x{{x}}", - "79": "Effect: You will gain +10% rewards =)", - "80": "Effect: Ant ELO +75 if this upgrade is purchased.", - "81": "Effect: All you need is right above this message.", - "120": "Effect: All you need to know is right above this message!", - "121": "Effect: -50% Taxes duh!", - "122": "Effect: +88% cap to Crystal Upgrade 3, duh!", - "123": "Effect: Coin Production ^1.025, duh!", - "124": "Effect: +3% Effective Ant ELO, duh!", - "125": "+{{x}}% Constant Divisor power." - }, - "shopTitles": { - "coin": "Coin Upgrades", - "diamond": "Diamond Upgrades", - "mythos": "Mythos Upgrades", - "generator": "Generator Shop", - "automation": "Automation Shop", - "particles": "Particles Upgrades" - }, - "hover": "Hover over an upgrade icon to see details!", - "hoverOverUpgrade": "Hover over an upgrade to view details!" - }, - "tabs": { - "main": { - "buildings": "Buildings", - "upgrades": "Upgrades", - "achievements": "Achievements", - "runes": "Runes", - "challenges": "Challenges", - "research": "Research", - "antHill": "Anthill", - "wowCubes": "WOW! Cubes", - "corruption": "Corruption", - "singularity": "Singularity", - "settings": "Settings", - "shop": "Shop", - "unsmith": "UNSMITH", - "purchase": "PseudoCoins" - }, - "buildings": { - "coin": "Coin Buildings", - "diamond": "Diamond Buildings", - "mythos": "Mythos Buildings", - "particle": "Particle Buildings", - "tesseract": "Tesseract Buildings" - }, - "runes": { - "runes": "Runes", - "talismans": "Talismans", - "blessings": "Blessings", - "spirits": "[=-Spirits-=]" - }, - "challenges": { - "normal": "Normal", - "exalt": "EXALT" - }, - "cubes": { - "cubeTributes": "Cube Tributes", - "tesseract": "Tesseract Gifts", - "hypercube": "Hypercube Benedictions", - "platonic": "Platonic Statues", - "cubeUpgrades": "Cube Upgrades", - "challenge15": "Challenge 15/Platonic Upgrades", - "hepteract": "Hepteract Forge" - }, - "singularity": { - "perks-penalties": "Perks / Penalties", - "octeracts": "Octeracts", - "ambrosia": "Ambrosia" - }, - "settings": { - "languages": "🌐 Languages 🌐", - "credit": "Credits", - "stats": "Stats for Nerds", - "resetHistory": "Reset History", - "ascendHistory": "Ascend History", - "singularityHistory": "Singularity History", - "hotkeys": "Hotkeys", - "account": "Account" - }, - "pseudocoins": { - "buy": "Purchase Coins", - "upgrades": "Buy Upgrades", - "merch": "Purchase Merch" - } - }, - "offlineProgress": { - "loading": "Loading Offline Progress...", - "prestigeCount": "Prestige Count: +", - "currentPrestigeTimer": "Current Prestige Timer: +<> seconds", - "offeringsGenerated": "Offerings Generated: <>", - "transcensionCount": "Transcension Count: +<>", - "currentTranscensionCounter": "Current Transcension Timer: +<> seconds", - "reincarnationCount": "Reincarnation Count: +<>", - "currentReincarnationTimer": "Current Reincarnation Timer: +<> seconds", - "obtainiumGenerated": "Obtainium Generated: <>", - "ingameAntSacTimer": "In-Game Ant Sacrifice Timer: +<> seconds", - "realAntSacTimer": "Real-Life Ant Sacrifice Timer: +<> seconds", - "currentAscensionTimer": "Current Ascension Timer: +<> seconds", - "exportQuarks": "Export Quarks: +<>" - }, - "corruptions": { - "names": { - "1": "Corruption I: Viscosity", - "2": "Corruption II: Spacial Dilation", - "3": "Corruption III: Hyperchallenged", - "4": "Corruption IV: Scientific Illiteracy", - "5": "Corruption V: Market Deflation", - "6": "Corruption VI: Extinction", - "7": "Corruption VII: Drought", - "8": "Corruption VIII: Financial Recession" - }, - "descriptions": { - "1": "You feel lethargic across the universe...", - "2": "Way to go, Albert.", - "3": "What's in a challenge?", - "4": "Maybe Albert wouldn't have theorized Dilation after all.", - "5": "Diamond Mine destroyed... no more monopolies!", - "6": "It killed the dinosaurs too, ya Dingus.", - "7": "More like California, am I right?", - "8": "Yet another 2020 catastrophe." - }, - "currentLevel": { - "1": "On this Ascension, this corruption is level {{ level }}. Effect: Free Accel. and Multipliers Exponent ^{{ effect }}", - "2": "On this Ascension, this corruption is level {{ level }}. Effect: Time Speed is divided by {{ effect }}", - "3": "On this Ascension, this corruption is level {{ level }}. Effect: Challenge Exponent Reqs. x{{ effect }}", - "4": "On this Ascension, this corruption is level {{ level }}. Effect: Obtainium gain ^{{ effect }}", - "5": "On this Ascension, this corruption is level {{ level }}. Effect: Diamond gain ^{{ effect }}", - "6": "On this Ascension, this corruption is level {{ level }}. Effect: Ant Production ^{{ effect }}", - "7": "On this Ascension, this corruption is level {{ level }}. Effect: Offering EXP divided by {{ effect }}", - "8": "On this Ascension, this corruption is level {{ level }}. Effect: Coin Gain ^{{ effect }}" - }, - "prototypeLevel": { - "1": "On next Ascension, this corruption will be level {{ level }}. Effect: Free Accel. and Multipliers Exponent ^{{ effect }}", - "2": "On next Ascension, this corruption will be level {{ level }}. Effect: Time Speed is divided by {{ effect }}", - "3": "On next Ascension, this corruption will be level {{ level }}. Effect: Challenge Exponent Reqs. x{{ effect }}", - "4": "On next Ascension, this corruption will be level {{ level }}. Effect: Obtainium gain ^{{ effect }}", - "5": "On next Ascension, this corruption will be level {{ level }}. Effect: Diamond gain ^{{ effect }}", - "6": "On next Ascension, this corruption will be level {{ level }}. Effect: Ant Production ^{{ effect }}", - "7": "On next Ascension, this corruption will be level {{ level }}. Effect: Offering EXP divided by {{ effect }}", - "8": "On next Ascension, this corruption will be level {{ level }}. Effect: Coin Gain ^{{ effect }}" - }, - "scoreMultiplier": "Current Score Multiplier: {{ curr }} / Next Ascension Score Multiplier: {{ next }}", - "spiritEffect": "This corruption gives Rune Spirit Effect +{{curr}}% / Next Ascension Rune Spirit Effect +{{next}}%", - "exitCorruption": { - "name": "CLEANSE THE CORRUPTION", - "description": "Free this world of sin.", - "current": "Reset all Corruptions to level 0 for your current ascension. Does not reset your current ascension.", - "planned": "Push that big 'Reset Corruptions' button to confirm your decision.", - "multiplier": "Note: if you need to do this, you may have bitten off more than you can chew." - }, - "max": "MAX", - "current": "Current: ", - "next": " / Next: ", - "loadoutTable": { - "next": "Next:", - "firstRowTitle": "Click to copy the next Corruptions to the clipboard. This is the format that can be imported", - "otherRowTitle": "Click to rename. Hotkey: SHIFT+{{ value }}", - "import": "Import", - "importTitle": "Import Corruption Loadout in text format", - "zero": "Zero", - "zeroTitle": "Reset Corruptions to zero on your next Ascension. Hotkey: SHIFT+9", - "save": "Save", - "saveTitle": "Save current Corruptions to this Loadout", - "load": "Load" - }, - "importCorruptionsPrompt": { - "import": "Enter a Corruption Loadout to import for next Ascension. It must be in the following text format: 1/2/3/4/5/6/7/8", - "importError": "Your input was not in the correct format, try again." - }, - "corruptionLoadoutName": { - "loadoutPrompt": "What would you like to name Loadout {{ loadNum }}? Names cannot be longer than {{ maxChars }} characters. Nothing crazy!", - "errors": { - "noName": "Okay, maybe next time.", - "exceedsCharacterLimit": "The name you provided is too long! Try again.", - "regexError": "The Loadout Renamer didn't like a character in your name! Try something else.", - "crazyJoke": "Ant God approves of your joke!" - } - }, - "loadoutExport": { - "saveErrorNavigator": "Unable to write the save to clipboard: {{ message }}" - }, - "corrStatsBtn": "Corruption Stats", - "corrLoadoutsBtn": "Corruption Loadouts", - "cleanse": "Cleanse", - "confirm": "Confirm", - "intro": "The most rewarding ventures are those few would dare to embark.", - "traitInfo": "Select the trait levels you wish to run with. Choose wisely! <>", - "antExponent": "This Ascension's climate raises Ant production to the power of <>.", - "spiritBonus": "However, it also multiplies Rune Spirit Effects by <>.", - "corruptionBank": "You have <> Wow! Cubes in the Ascension bank. Gain more by finishing Challenges! Ascend to redeem them.", - "corruptionScore": "Your Ascension Score is <> (base) * <> (Corruption mult) * <> (Bonus mult) = <>", - "ascensionCount": "If you Ascend now, <> will be added to your ascension count.", - "corruptionCubes": "If you Ascend now, you will gain <> Wow! Cubes.", - "corruptionTesseracts": "If you Ascend now, you will gain <> Wow! Tesseracts. [<100,000>>]", - "corruptionHypercubes": "If you Ascend now, you will gain <> Wow! Hypercubes. [<1,000,000,000>>]", - "corruptionPlatonics": "If you Ascend now, you will gain <> PLATONIC CUBES. [<2,666,000,000,000>>]", - "corruptionHepteracts": "If you Ascend now, you will gain <> HEPTERACTS. [<1.666e17>>]", - "autoAscend": { - "c10Completions": "Ascend when you've completed Sadistic Challenge I a total of <> times, Currently <>", - "realTime": "Ascend when the timer is at least <> seconds (Real-time), Currently <>", - "on": "Auto Ascend [ON]", - "off": "Auto Ascend [OFF]", - "modeCompletions": "Mode: C10 Completions", - "modeRealTime": "Mode: Real time" - }, - "importLoadoutInTextFormat": "Import Corruption Loadout in text format", - "loadoutApplied": "Corruption Loadout from previous run has been applied. This will take effect on the next Ascension." - }, - "footnotes": { - "buildings": "Press [1], [2], [3], [4], or [5] to buy the corresponding tier starting from the top. Press [A] to buy Accelerator, [M] to buy Multiplier, or [B] to buy Accelerator Boost.", - "buildings2": "Press [Left arrow] or [Right arrow] to switch tabs. Enjoy!", - "crystals": "Press [1], [2], [3], [4], or [5] to buy the respective tiered producer. Press [6], [7], [8], [9] or [0] to buy the corresponding Crystal upgrade starting on the left.", - "mythos": "Press [1], [2], [3], [4], or [5] to buy the respective tiered producer.", - "particle": "Press [1], [2], [3], [4], or [5] to buy the respective tiered producer.", - "upgrade": "Press [1], [2], [3], [4], [5] or [6] on your keyboard to use resources for each upgrades.", - "achievements": { - "green": "Green background: Achieved.", - "purple": "Purple background: Unachieved, provides bonus multiplier.", - "red": "Red background: Unachieved, provides content/feature unlock.", - "none": "No background: Unachieved, nothing special." - }, - "runes": "Press [1], [2], [3], [4] or [5] on your keyboard to use offerings for each rune, starting with Speed Rune on the left; must have rune unlocked to use hotkey!", - "challenges": { - "hotkey": "Press [1], [2]... up to [0] to enter challenges 1 to 10. Press [E] to exit your Transcension or Reincarnation challenge if stuck!", - "finishTranscension": "If you are unable to finish a Transcension challenge, press the hotkey listed above OR click on the purple Challenge \"C\" button on the reset buttons on top.", - "leaveReincarnation": "To leave a reincarnation challenge, press the grey Challenge \"C\" instead!" - }, - "research": "Welcome to the future! Obtainium is gained through <>. I'd recommend studying the <> researches first. The <> researches are never reset whereas the <> researches will reset upon the next reset tier!", - "shop": "Hover over each portion of the shop to see what each upgrade does!" - }, - "buildings": { - "taxWarning": "Your tax also caps your Coin gain at {{gain}}/s.", - "acceleratorPower": "Acceleration Power: {{power}}% || Acceleration Multiplier: {{mult}}x", - "multiplierPower": "Multiplier Power: {{power}}x || Multiplier: {{mult}}x", - "acceleratorBoost": "Reset Diamonds and Prestige Upgrades, but add {{amount}}% Acceleration Power and 5 free Accelerators.", - "coinsPerSecond": "Coins/Sec: {{coins}} [{{percent}}%]", - "costCoins": "Cost: {{coins}} coins.", - "costDiamonds": "Cost: {{diamonds}} Diamonds.", - "names": { - "workers": "Workers: {{amount}} [+{{gain}}]", - "investments": "Investments: {{amount}} [+{{gain}}]", - "printers": "Printers: {{amount}} [+{{gain}}]", - "coinMints": "Coin Mints: {{amount}} [+{{gain}}]", - "alchemies": "Alchemies: {{amount}} [+{{gain}}]", - "accelerators": "Accelerators: {{amount}} [+{{gain}}]", - "multipliers": "Multipliers: {{amount}} [+{{gain}}]", - "acceleratorBoost": "Accelerator Boost: {{amount}} [+{{gain}}]", - "refineries": "Refineries: {{amount}} [+{{gain}}]", - "coalPlants": "Coal Plants: {{amount}} [+{{gain}}]", - "coalRigs": "Coal Rigs: {{amount}} [+{{gain}}]", - "pickaxes": "Pickaxes: {{amount}} [+{{gain}}]", - "pandorasBoxes": "Pandoras Boxes: {{amount}} [+{{gain}}]", - "augments": "Augments: {{amount}} [+{{gain}}]", - "enchantments": "Enchantments: {{amount}} [+{{gain}}]", - "wizards": "Wizards: {{amount}} [+{{gain}}]", - "oracles": "Oracles: {{amount}} [+{{gain}}]", - "grandmasters": "Grandmasters: {{amount}} [+{{gain}}]", - "protons": "Protons: {{amount}} [+{{gain}}]", - "elements": "Elements: {{amount}} [+{{gain}}]", - "pulsars": "Pulsars: {{amount}} [+{{gain}}]", - "quasars": "Quasars: {{amount}} [+{{gain}}]", - "galacticNuclei": "Galactic Nuclei: {{amount}} [+{{gain}}]", - "dot": "Dot: {{amount}} [+{{gain}}]", - "vector": "Vector: {{amount}} [+{{gain}}]", - "threeSpace": "Three-Space: {{amount}} [+{{gain}}]", - "bentTime": "Bent Time: {{amount}} [+{{gain}}]", - "hilbertSpace": "Hilbert Space: {{amount}} [+{{gain}}]" - }, - "crystalMult": "You have {{crystals}} Crystals, multiplying Coin production by {{gain}}.", - "hoverCrystalUpgrade": "Hover over a crystal upgrade to get information!", - "autoPrestige": "{{action}} when your {{name}} can increase by a factor {{factor}} [Toggle number above]. Current Multiplier: {{mult}}.", - "per": { - "crystal": "Crystal/sec: {{amount}}", - "ref": "Ref./sec: {{amount}}", - "plants": "Plants/sec: {{amount}}", - "rigs": "Rigs/sec: {{amount}}", - "pickaxes": "Pickaxes/sec: {{amount}}", - "shards": "Shards/sec: {{amount}}", - "augments": "Augments/sec: {{amount}}", - "enchantments": "Enchantments/sec: {{amount}}", - "wizards": "Wizards/sec: {{amount}}", - "oracles": "Oracles/sec: {{amount}}", - "atoms": "Atoms/sec: {{amount}}", - "protons": "Protons/sec: {{amount}}", - "elements": "Elements/sec: {{amount}}", - "pulsars": "Pulsars/sec: {{amount}}", - "quasars": "Quasars/sec: {{amount}}", - "constant": "+Constant/sec: {{amount}}", - "dot": "Dot/sec: {{amount}}", - "vector": "Vector/sec: {{amount}}", - "threeSpace": "Three-Space/sec: {{amount}}", - "bentTime": "Bent Time/sec: {{amount}}" - }, - "crystalUpgrades": { - "currentLevel": "Current Level: <>", - "cost": "Cost: <> crystals", - "currentEffect": "Current Effect: <>" - }, - "mythosYouHave": "You have {{shards}} Mythos Shards, providing {{mult}} Multiplier Power boosts.", - "eachMultiplierBoost": "Each Multiplier Boost increases the base effect of Multipliers by 0.005!", - "costMythos": "Cost: {{mythos}} Mythos", - "atomsYouHave": "You have {{atoms}} Atoms, providing {{power}} Building Power. Multiplier to Coin Production: {{mult}}", - "costParticles": "Cost: {{particles}} Particles", - "autoReincarnate": "{{name}} when the autotimer is at least {{amount}} real-life seconds. [Toggle number above]. Current timer: {{timer}}s.", - "thanksR2x14": "Thanks to Research 2x14, you also multiply Crystal production by {{mult}}", - "thanksR2x15": "Thanks to Research 2x15, you also multiply Mythos Shard production by {{mult}}", - "tesseractsYouHave": "You have {{tesseracts}} Wow! Tesseracts. Gain more by beating Challenge 10 on each Ascension.", - "constantYouHave": "You have a mathematical constant of {{const}}. Taxes are divided by {{amount}}.", - "costTesseracts": "Cost: {{tesseracts}} Tesseracts", - "autoTesseract": "Auto buyer will save at least {{tesseracts}} tesseracts. [Enter number above].", - "autoAscensionTesseract": "On Ascension, Auto buyer will save at least {{percent}}% of your current amount of tesseracts. [Enter number above].", - "excessiveWealth": "Due to your excessive wealth, coin production is divided by {{div}} to pay taxes! {{- warning}}", - "constantHover": "Hover over an icon for a description of the upgrade. Click to buy it!" - }, - "octeract": { - "buyLevel": { - "buyPrompt": "How many Octeracts would you like to spend? You have {{n}} OCT. Type -1 to use max!", - "cancelPurchase": "Purchase cancelled!", - "alreadyMax": "Hey! You have already maxed this upgrade. :D", - "cannotAfford": "You cannot afford this upgrade. Sorry!", - "multiBuy": "Purchased {{n}} levels, thanks to Multi Buy!" - }, - "toString": { - "costNextLevel": "Cost for next level", - "becomeAffordable": "(Affordable in {{n}})" - }, - "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 40% More Quarks, 20% More Octeracts, And 100,000x Ant Speed...", - "effect": "You have {{n}} paid your respects to Derpsmith." - }, - "octeractGain": { - "name": "Octeract Cogenesis", - "description": "Have you despised how slow these damn things are? Gain 1% more of them per level! Simple.", - "effect": "Octeract Gain is increased by {{n}}%." - }, - "octeractGain2": { - "name": "Octeract Trigenesis", - "description": "It turns out that you have six additional dimensions to modify your Cogenesis. +1% more Octs per level!", - "effect": "Octeract Gain is increased by {{n}}%." - }, - "octeractQuarkGain": { - "name": "Quark Octeract", - "description": "An altered forme of the hepteract, this gives a 1.1% Quark Bonus per level without Diminishing Return.", - "effect": "Quark gain is increased by {{n}}%." - }, - "octeractQuarkGain2": { - "name": "Octo-Hepteract Primality Synergism", - "description": "For every 111 levels of Quark Octeract, you gain 0.01% more quarks per digit in your Quark Hepteract count per level!", - "effect": "Octo-Hepteract Primality Synergism is {{n}} active." - }, - "octeractCorruption": { - "name": "EXTRA CHONKY Corruptions", - "description": "Adds one level to the cap on corruptions. Derpsmith approves.", - "effect": "Corruption level cap is increased by {{n}}" - }, - "octeractGQCostReduce": { - "name": "EXTRA WIMPY Golden Quark Costs!", - "description": "Reduces the cost of Golden Quarks in the shop by 1% per level.", - "effect": "Golden Quarks are {{n}}% cheaper!" - }, - "octeractExportQuarks": { - "name": "Improved Download Speeds", - "description": "Thanks to ethernet technology, export quarks are increased by 40% per level! Only normal ones.", - "effect": "Export quarks +{{n}}%" - }, - "octeractImprovedDaily": { - "name": "CHONKER Daily Code", - "description": "Derpsmith hacks into the source code, and adds +1 free Singularity upgrade per day from Daily.", - "effect": "Code 'daily' gives +{{n}} free Singularity upgrades per use." - }, - "octeractImprovedDaily2": { - "name": "CHONKERER Daily Code", - "description": "Derpsmith implemented hyperspeed multiplication. +1% more free Singularity upgrades per day from Daily!", - "effect": "Code 'daily' gives +{{n}}% more free Singularity upgrades per use." - }, - "octeractImprovedDaily3": { - "name": "CHONKEREREST Daily Code", - "description": "It will never satisfy Derpsmith. +1 +0.5% more free Singularity upgrades per day from Daily!", - "effect": "Code 'daily' gives +{{n}} more free Singularity upgrades per use." - }, - "octeractImprovedQuarkHept": { - "name": "I wish for even better Quark Hepteracts.", - "description": "The godmother is absent, but Derpsmith is here! +2% DR exponent per level. Stacks additively with all the others!", - "effect": "Quark Hepteract DR +{{n}}." - }, - "octeractImprovedGlobalSpeed": { - "name": "The forbidden clock of time", - "description": "Hypothesized to be locked in a hyperbolic time chamber. +1% Global Speed per level per singularity!", - "effect": "Global Speed per singularity +{{n}}%" - }, - "octeractImprovedAscensionSpeed": { - "name": "Abstract Photokinetics", - "description": "Gain +0.05% Ascension Speed per level per singularity!", - "effect": "Ascension Speed per singularity +{{n}}%" - }, - "octeractImprovedAscensionSpeed2": { - "name": "Abstract Exokinetics", - "description": "Gain +0.02% Ascension Speed per level per singularity!", - "effect": "Ascension Speed per singularity +{{n}}%" - }, - "octeractImprovedFree": { - "name": "Wow! I want free upgrades to be better.", - "description": "Singularity Upgrade level is (paid level * free levels)^0.6 instead of being added.", - "effect": "Singularity Upgrade free levels are {{n}} being powered!" - }, - "octeractImprovedFree2": { - "name": "Wow! Free upgrades still suck.", - "description": "Who said beggars can't be choosers? Extends the exponent of the first upgrade to 0.65.", - "effect": "Exponent of previous upgrade +{{n}}." - }, - "octeractImprovedFree3": { - "name": "Wow! Make free upgrades good already, Platonic!", - "description": "Extends the exponent of the free upgrades to 0.70.", - "effect": "Exponent of the first upgrade +{{n}}" - }, - "octeractImprovedFree4": { - "name": "Coupon of Ultimate Penniless Derpsmiths", - "description": "Each level adds 0.001 to the exponent of free upgrades, with the first level adding another 0.01!", - "effect": "Exponent of the first upgrade +{{n}}" - }, - "octeractSingUpgradeCap": { - "name": "Overwriting Pointers", - "description": "Derpsmith encountered a SegFault after reassigning null... +1 to level cap on certain Singularity Upgrades per level!", - "effect": "Some Singularity Upgrades have +{{n}} max level!" - }, - "octeractOfferings1": { - "name": "Offering Electrolosis", - "description": "Gain 1% more offerings per level.", - "effect": "Offering gain +{{n}}%" - }, - "octeractObtainium1": { - "name": "Obtainium Deluge", - "description": "Gain 1% more obtainium per level.", - "effect": "Obtainium gain +{{n}}%" - }, - "octeractAscensions": { - "name": "Voided Warranty", - "description": "Gain +1% Ascension Count per level, with a 2% bonus for every 10 levels.", - "effect": "Ascension Count increases {{n}}% faster." - }, - "octeractAscensions2": { - "name": "Hidden Late Fees", - "description": "Gain +1% Ascension Count per level, with a 2% bonus for every 10 levels. But... this scales a lot faster. Must be those hidden late fees.", - "effect": "Ascension Count increases {{n}}% faster." - }, - "octeractAscensionsOcteractGain": { - "name": "Digital Octeract Accumulator", - "description": "Octeract gain is 1% faster for every digit in your Ascension count!", - "effect": "Octeract Gain per OOM Ascension count +{{n}}%" - }, - "octeractFastForward": { - "name": "Derpsmith's Singularity Discombobulator", - "description": "Each level makes Singularity give +100% Golden Quarks (additive) and singularity at all time highest count grants +1 singularity count!", - "effect": "Singularities give {{n100}}% more GQ and count as {{n}} more." - }, - "octeractAutoPotionSpeed": { - "name": "Pill of Increased Thirst", - "description": "You can buy pills of thirst-making to consume potions automatically faster! 4% faster per level to be precise.", - "effect": "Auto Potion Singularity Perk works {{n}}% faster than before!" - }, - "octeractAutoPotionEfficiency": { - "name": "Vitamin O Infusion", - "description": "Thanks to the generosity of your Derpsmith, Potions are 2% more potent per level!", - "effect": "Potions give {{n}}% more Offerings and Obtainium." - }, - "octeractOneMindImprover": { - "name": "Infinite Transcription of the One Mind", - "description": "You ask what this upgrade does, but Derpsmith just nods his head. What is he hiding from you?", - "effect": "One Mind converts Ascension Speed to Octeract Gain to the power of {{n}}." - }, - "octeractAmbrosiaLuck2": { - "name": "Florentine Cranberries", - "description": "Totally not a reskin of the blueberry! Adds ☘ +2 Ambrosia Luck, which can increase Ambrosia drop amounts when Blueberries generate Ambrosia.", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "octeractAmbrosiaLuck3": { - "name": "Berries of a Four Leaf Clover", - "description": "Totally not a reskin of the blueberry! Adds ☘ +3 Ambrosia Luck per level.", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "octeractAmbrosiaLuck": { - "name": "Berries of an Eight Leaf Clover", - "description": "Totally not a reskin of the blueberry! Adds ☘ +4 Ambrosial Luck per level, and it is infinitely levelable!", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "octeractAmbrosiaLuck4": { - "name": "Berries of a Ten Leaf Clover", - "description": "Totally not a reskin of the blueberry! Adds ☘ +5 Ambrosial Luck. And it's mega expensive somehow.", - "effect": "☘ Ambrosia Luck +{{n}}(!)" - }, - "octeractAmbrosiaGeneration2": { - "name": "Hourglass of Minutiae", - "description": "A somewhat primative hourglass which somehow makes your blueberries generate seconds 1% faster per level..", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - }, - "octeractAmbrosiaGeneration3": { - "name": "Hourglass of Myopathy", - "description": "An hourglass which is still primative, though somehow less so. +1% Blueberry Second Generation per level.", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - }, - "octeractAmbrosiaGeneration": { - "name": "Hourglass of Infinitude", - "description": "Don't get it twisted- this hourglass is really primative. But it gives +1% Blueberry Second Generation per level and is infinitely levelable!", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - }, - "octeractAmbrosiaGeneration4": { - "name": "Hourglass of Reality", - "description": "An hourglass which is nonprimative and 'more timely'- whatever that means. +2% Blueberry Second Generation per level.", - "effect": "Blueberry Seconds Generation +{{n}}%(!)" - } - }, - "amount": "You have {{octeracts}} Octeracts!", - "secondsPerOcteract": "+1 per <> seconds", - "octeractsPerSecond": "<> per second", - "totalGenerated": "Total Generated: <> Octeracts!", - "generatedCubeBonus": "3-7 Dimensional Cubes <>", - "generatedQuarkBonus": "Quarks <>", - "generatedOfferingBonus": "Offerings <>", - "generatedObtainiumBonus": "Obtainium <>" - }, - "runes": { - "offeringsYouHave": "You have {{offerings}} Offerings.", - "gainExp": "Gain {{amount}}x EXP per offering sacrificed.", - "recycleChance": "You have {{percent}}% chance of recycling your offerings. This multiplies EXP gain by {{mult}}!", - "hover": "Hey, hover over a rune icon to get details on what each one does and what benefits they're giving you!", - "thanksResearches": "Thanks to researches, your effective levels are increased by {{percent}}%", - "levelup": { - "1": "+(Level/4)^1.25 Accelerator, +0.25% Accelerators per level. +1 Accelerator Boost every 20 levels!", - "2": "+(Level/10) Multipliers every 10th level, +0.25% Multipliers per level. Tax growth is delayed more for each level!", - "3": "~(1 + (Level/2)^2 * 2^(Level/2) / 256)x Crystal Production. +1 free level for each Crystal upgrade per 16 levels!", - "4": "+0.125% building cost growth delay per level, +0.0625% Offering recycle chance per level [MAX: 25%], 2^((1000 - Level)/1100) Tax growth multiplier AFTER level 400", - "5": "~(1 + level/200)x Obtainium, (1 + Level^2/2500)x Ant Hatch Speed, +0.005 base Offerings for each tier per level", - "6": "+0.2% Quarks, +1% all Cube types per level! Start with +10% Quarks.", - "7": "I wonder what happens if you feed it {{exp}} Rune EXP." - }, - "power": { - "1": "Speed Rune Bonus: +{{bonus}} Accelerators, +{{percent}}% Accelerators, +{{boost}} Accelerator Boosts.", - "2": "Duplication Rune Bonus: +{{mult1}} Multipliers, +{{mult2}}% Multipliers, -{{tax}}% Tax Growth.", - "3": "Prism Rune Bonus: All Crystal Producer production multiplied by {{mult}}, gain +{{gain}}' free crystal levels.", - "4": "Thrift Rune Bonus: Delay all producer cost increases by {{delay}}%. Offering recycle chance: +{{chance}}%. -{{tax}}% Tax Growth", - "5": "S. Intellect Rune Bonus: Obtainium gain x{{gain}}. Ant Speed: x{{speed}}. Base Offerings: +{{offerings}}", - "6": "IA Rune Bonus: Quark Gain +{{percent1}}%, Ascensions give +{{percent2}}% more of all cube types.", - "7": "You cannot grasp the true form of Ant God's treasure." - }, - "talismans": { - "fortify": "FORTIFY", - "enhance": "ENHANCE", - "respec": "RESPEC", - "respecAll": "RESPEC ALL", - "respecConfirm": "Confirm [-100,000 Offerings]", - "respecConfirmAll": "Confirm All [-400,000 Offerings]", - "respecCancel": "Cancel Respec Changes", - "respecSummary": "+-==-+ Select for 3 GREEN Runes, for Respec! +-==-+", - "buy": "BUY", - "buyAll": "BUY ALL", - "autoBuyOn": "Auto Buy: ON", - "autoBuyOff": "Auto Buy: OFF", - "clickBuyEveryType": "Click to buy every type of Talisman Shards and Fragments, if affordable", - "costToBuy": "Cost to buy {{name}} ({{buyAmount}}): {{obtainium}} Obtainium and {{offerings}} Offerings.", - "modifiers": { - "positive": "{{name}}: Positive", - "negative": "{{name}}: Negative" - }, - "shards": { - "shard": "Talisman Shard", - "commonFragment": "Common Fragment", - "uncommonFragment": "Uncommon Fragment", - "rareFragment": "Rare Fragment", - "epicFragment": "Epic Fragment", - "legendaryFragment": "Legendary Fragment", - "mythicalFragment": "Mythical Fragment" - }, - "names": { - "exemption": "Exemption", - "chronos": "Chronos", - "midas": "Midas", - "metaphysics": "Metaphysics", - "polymath": "Polymath", - "mortuus": "Mortuus Est", - "plastic": "Plastic" - }, - "summaries": { - "exemption": "=-=-=-= Exemption Talisman Effects =-=-=-=", - "chronos": "=-=-=-= Chronos Talisman Effects =-=-=-=", - "midas": "=-=-=-= Midas Talisman Effects =-=-=-=", - "metaphysics": "=-=-=-= Metaphysics Talisman Effects =-=-=-=", - "polymath": "=-=-=-= Polymath Talisman Effects =-=-=-=", - "mortuus": "=-=-=-= Mortuus Est Talisman Effects =-=-=-=", - "plastic": "=-=-=-= Plastic Talisman Effects =-=-=-=" - }, - "effects": { - "exemption": "Taxes -{{x}}%", - "chronos": "Gain +{{x}}% Global Speed Acceleration.", - "midas": "Rune Blessing bonuses +{{x}}%", - "metaphysics": "Talismans' Bonus Rune Levels +{{x}} per level", - "polymath": "Rune Spirit Bonuses +{{x}}%", - "mortuus": "Bonus Ant Levels: +{{x}}", - "plastic": "Gain 1x normal production (Joke)!" - }, - "bonusRuneLevels": { - "speed": "Bonus Speed Rune Levels: {{x}}", - "duplication": "Bonus Duplication Rune Levels: {{x}}", - "prism": "Bonus Prism Rune Levels: {{x}}", - "thrift": "Bonus Thrift Rune Levels: {{x}}", - "SI": "Bonus SI Rune Levels: {{x}}" - }, - "mythicEffects": { - "exemption": "Mythic Effect: +400 Duplication Rune Levels!", - "chronos": "Mythic Effect: +400 Speed Rune Levels!", - "midas": "Mythic Effect: +400 Thrift Rune Levels!", - "metaphysics": "Mythic Effect: +400 Prism Rune Levels!", - "polymath": "Mythic Effect: +400 SI Rune Levels!", - "mortuus": "Mythic Effect: Gain ant speed based on your total rune level!", - "plastic": "Mythic Effect: Gain 1x your normal quark values (Joke)!" - }, - "maxEnhance": "Get Max Enhance for a Mythical bonus effect!" - }, - "blessings": { - "buyUpTo": "Buy up to <> Levels per purchase, if affordable. [Input to toggle]", - "autoRuneOn": "Auto Rune: ON", - "autoRuneOff": "Auto Rune: OFF", - "allIncreaseLevel": "ALL Increase Level", - "blessingLevel": "<>: {{amount}}", - "blessingPower": "Blessing Power: <> =-=-= Effect: <>x {{reward}}!", - "rewards": { - "0": "Global Speed", - "1": "Multiplier Boosts", - "2": "Ant Sacrifice Rewards", - "3": "Delay for A.Boost Cost", - "4": "Obtainium --> Ant Mult." - }, - "increaseLevel": "Increase Level By <> [Cost: <> Offerings]" - }, - "spirits": { - "spiritLevel": "Spirit level: <>", - "spiritPower": "Spirit Power: <> =-=-= Effect: <>{{reward}}!", - "rewards": { - "0": "x Global Speed", - "1": "x Wow! Cubes by Ascension", - "2": "x Additional levels to Crystal caps", - "3": "x Obtainium", - "4": "% stronger Research 4x9 effect" - }, - "buyUpTo": "Buy up to <> Levels per purchase, if affordable. [Input to toggle]" - }, - "perOfferingText": "+{{exp}} EXP per offering, {{x}} [{{y}}] Offerings to level up once.", - "runeEffectSummaryTitle": "=====RUNE EFFECT SUMMARY=====", - "bonusAmount": "[Bonus: {{x}}]", - "bonusNope": "[Bonus: Nope!]", - "resourcesToEnhance": "=-=-= Resources Required to ENHANCE =-=-=", - "resourcesToLevelup": "-=-=- Resources Required to Level Up -=-=-", - "autoEnhanceOn": "Auto Enhance: ON", - "autoEnhanceOff": "Auto Enhance: OFF", - "autoFortifyOn": "Auto Fortify: ON", - "autoFortifyOff": "Auto Fortify: OFF", - "names": { - "speed": "Speed Rune", - "duplication": "Duplication Rune", - "prism": "Prism Rune", - "thrift": "Thrift Rune", - "SI": "Superior Intellect", - "IA": "Infinite Ascent", - "AOAG": "Antiquities of Ant God" - }, - "maxLevel": "Maxed Level!", - "TNL": "+1 in {{EXP}} EXP" - }, - "singularityChallenge": { - "enterChallenge": { - "lowSingularity": "Derpsmith prohibits you from entering this challenge. Go do some more Singing first.", - "confirmation": "You are about to enter {{name}}. Your Singularity Timer will not reset but you will be taken back to the beginning of a Singularity. Do you proceed?", - "decline": "Derpsmith nods his head. Come back when you are ready...", - "acceptSuccess": "You are attempting {{name}} #{{tier}}! You were sent to Singularity {{singReq}}. Buy Antiquities to complete the challenge!", - "acceptFailure": "Derpsmith declares you are already in a singularity challenge and prohibits you from destroying the fabric of your Reality." - }, - "exitChallenge": { - "incompleteWarning": "WARNING: You will not get a completion as you have not yet purchased Antiquities.", - "confirmation": "Are you sure you want to quit {{name}} Tier {{tier}} \n{{warning}}`", - "decline": "Derpsmith tries to hug you, but he has no arms.", - "acceptSuccess": "You have completed the {{tier}} tier of {{name}}! The corresponding challenge rewards have been updated.", - "acceptFailure": "You have been transported back to your highest reached Singularity. Try again soon! -Derpsmith" - }, - "toString": { - "canEnter": "Can be entered after reaching Singularity {{unlockSing}} [Your highest: {{highestSing}}]", - "tiersCompleted": "Tiers completed", - "currentTierSingularity": "The current tier of this challenge takes place in Singularity" - }, - "data": { - "noSingularityUpgrades": { - "name": "No Singularity Upgrades", - "description": "Simply put, you have to beat the target singularity without (most) Singularity Upgrades.
Octeracts, Perks and Quality of Life Singularity Upgrades are preserved.", - "ScalingReward1": "+50% increase to <> gain", - "UniqueReward1": "1st - +12% <>!", - "UniqueReward2": "1st - A free <>!", - "UniqueReward3": "20th - A new <> upgrade!", - "UniqueReward4": "30th - +6% <> for free!", - "UniqueReward5": "30th - A new <> upgrade for NOT FREE!" - }, - "oneChallengeCap": { - "name": "One Challenge Caps", - "description": "Beat the target Singularity, but the first 14 Challenges have cap of only 1!", - "ScalingReward1": "+0.03 increase to <> values", - "ScalingReward2": "+1% <> Speed", - "UniqueReward1": "1st - +3 <> Cap!", - "UniqueReward2": "20th - +1 Free <>", - "UniqueReward3": "20th - A new <> upgrade!", - "UniqueReward4": "25th - +7 <> Cap! And +2 to Ascension Challenge caps." - }, - "noOcteracts": { - "name": "No Octeract Effects", - "description": "Beat the target Singularity, but octeracts and their upgrades do nothing!
Effective Singularity is also much higher based on tier.", - "ScalingReward1": "+0.02 increase to <> bonus power (Base: 2.00)", - "UniqueReward1": "1st - A bonus to <> based on <>!", - "UniqueReward2": "10th - A bonus to <> based on <>!", - "UniqueReward3": "10th - A new <> upgrade!" - }, - "limitedAscensions": { - "name": "Twenty Ascensions Challenge", - "description": "Derpsmith put an embargo on Ascensions. Only (20 - completions) are allowed throughout the entire Singularity, before Ascensions trigger massive debuffs!
Ascension Count Multiplier is hardcapped at 1. Oh and Delta is disabled. Ha.", - "ScalingReward1": "<> per Digit in your <>", - "UniqueReward1": "1st - Permanently double the cap of <> for free!!! (This is really good!)", - "UniqueReward2": "1st - A new feature ;) <>", - "UniqueReward3": "20th - A bonus to <>, <> & <> while in an EXALT! (Based on that Exalts total completions!)", - "UniqueReward4": "25th - A new <> Calculator, amazing!" - }, - "noAmbrosiaUpgrades": { - "name": "No Ambrosia Upgrades", - "description": "Gold Guy has lost his muster (and yes, that's his name!) and needs your help.
Clear the Singularity without any effects from Ambrosia or Ambrosia-Tier Upgrades!", - "ScalingReward1": "+15 & +0.5% <>", - "ScalingReward2": "+2% <> Speed", - "UniqueReward1": "1st - A free <>!", - "UniqueReward2": "1st - +1 <> every time <> is gained!", - "UniqueReward3": "10th - Another free <>!!!", - "UniqueReward4": "15th - A new <> upgrade!", - "UniqueReward5": "20th - A THIRD FREE <>?!?!", - "UniqueReward6": "20th - An <> upgrade!" - }, - "limitedTime": { - "name": "The Grand Singularity Speedrun!", - "description": "Derpsmith has a stopwatch and he's not afraid to use it! Beat the target Singularity in a limited time frame!
<>
After (600 - 20 * completion) seconds, your obt/off/cube production shatters (Divides by (10 + completions) every minute.", - "ScalingReward1": "+6% <>!", - "ScalingReward2": "+6% <>!", - "ScalingReward3": "+1% <>!", - "UniqueReward1": "1st - your quarks no longer reset on singulatity!", - "UniqueReward2": "15th - A new <> upgrade!", - "UniqueReward3": "25th - A very expensive, not good, pretty bad <> upgrade!" - }, - "sadisticPrequel": { - "name": "SADISTIC EXALT III - The Prequel", - "description": "How much more will Platonic misuse the word 'Sadistic'? [No Sing Upgrade, Oct Upgrades OR Ambrosia Upgrades]", - "ScalingReward1": "+3% <> per completion!", - "ScalingReward2": "+3% more <> from code 'Daily' per completion!", - "UniqueReward1": "1st - +50 Free Upgrades from code 'Daily'!", - "UniqueReward2": "10th - A first-tier <>", - "UniqueReward3": "20th - A second-tier <>", - "UniqueReward4": "30th - A particularly Sadistic <>!" - } - }, - "intro": "Do you have what it takes to earn EXALT from Ant God?", - "ScalingHeader": "Scaling Effects (Per Completion)", - "UniqueHeader": "Unique Effects (On Completion #)" - }, - "settings": { - "confirmationTitle": "Confirmation Toggles", - "noHotkeyAvailable": "These do not work with hotkeys. Too bad!", - "specialActions": "Special Actions", - "daily": "Daily", - "add": "Add", - "addAll": "xAll", - "add1": "Add x1", - "time": "Time", - "enterPromoCodeHere": "Enter a promotion code here!", - "currentTheme": "Current Theme", - "themes": { - "dark": "Dark Mode", - "darker": "Darker Mode", - "lighterDark": "Lighter Dark Mode", - "light": "Light Mode", - "dracula": "Dracula Mode" - }, - "currentIconSet": "Current Icon Set", - "notation": { - "default": "Default", - "pureScientific": "Pure Scientific", - "pureEngineering": "Pure Engineering" - }, - "currentNotation": "Current Annotation", - "iconSets": { - "default": "Default", - "legacy": "Legacy", - "simplified": "Simplified", - "monotonous": "Monotonous" - }, - "joinDiscord": "Click the image below to join the Discord!", - "joinPatreon": "Support Development on Patreon!", - "exportQuark": "{{x}}s until +{{y}} export Quark", - "exportGoldenQuark": "{{x}}s until +{{y}} export Golden Quark", - "quarksOnExport": "Quarks on export: {{x}} [Max {{y}}]", - "goldenQuarksOnExport": "Golden Quarks on export: {{x}} [Max {{y}}]", - "copyToClipboard": "Copy to Clipboard", - "exportHere": "Export the game here", - "currently": "Currently: {{x}}", - "loadGameBelow": "Load game below!", - "loadFromFile": "Load from file", - "saveManually": "Save the game manually", - "deleteSave": "Delete savefile", - "events": { - "inactive": "<> INACTIVE", - "activeUntil": "ACTIVE UNTIL: {{x}}", - "starts": "STARTS {{x}}" - } - }, - "wowCubes": { - "greenText": "You can also spend them on upgrades that persist through Ascension.", - "open1": "Open x1", - "open10%": "Open 10%", - "open50%": "Open 50%", - "openCustom": "Custom Amount", - "openAll": "Open All", - "autoOff": "Auto Open [OFF]", - "autoOn": "Auto Open {{percent}}%", - "quarks": { - "quarkTitle": "-=- Cube to Quark Corner -=-", - "resetInfo": "Quark Rewards reset midnight!", - "cubeQuarksToday": "Quarks gained from Cubes: <>", - "cubeQuarksOpenRequirement": "Open {{amount}} Cubes for next quark.", - "cubeQuarksOpenToday": "Cubes opened today: <>", - "tesseractQuarksToday": "Quarks gained from Tesseracts: <>", - "tesseractQuarksOpenRequirement": "Open {{amount}} Tesseracts for next quark.", - "tesseractQuarksOpenToday": "Tesseracts opened today: <>", - "hypercubeQuarksToday": "Quarks gained from Hypercubes: <>", - "hypercubeQuarksOpenRequirement": "Open {{amount}} Hypercubes for next quark.", - "hypercubeQuarksOpenToday": "Hypercubes opened today: <>", - "platonicCubeQuarksToday": "Platonic Cubes gained from Cubes: <>", - "platonicCubeQuarksOpenRequirement": "Open {{amount}} Platonic Cubes for next quark.", - "platonicCubeQuarksOpenToday": "Platonic Cubes opened today: <>" - }, - "cubes": { - "intro": "You feel a sense of Pride and Accomplishment... and a hunger for power.", - "instructions": "Open up some Lootb-- er, Wow! Cubes, to get one of ten permanent bonuses.", - "inventory": "You possess <> Wow! Cubes. Get them from ascending!", - "total": "You have a total of <> Cube tributes!", - "items": { - "1": "Hermes' Tribute x{{amount}}: +{{bonus}} Accelerators per Accelerator Boost", - "2": "Aphrodite's Tribute x{{amount}}: +{{bonus}}% Multipliers", - "3": "Plutus' Tribute x{{amount}}: +{{bonus}}% Offering Gain", - "4": "Iris' Tribute x{{amount}}: +{{bonus}}% Rune EXP", - "5": "Athena's Tribute x{{amount}}: +{{bonus}}% Obtainium Gain", - "6": "Artemis' Tribute x{{amount}}: +{{bonus}}% Ant Speed", - "7": "Ares' Tribute x{{amount}}: +{{bonus}}% Sacrifice Reward", - "8": "Moloch's Tribute x{{amount}}: +{{bonus}} Effective ELO", - "9": "Midas' Tribute x{{amount}}: +{{bonus}} Bonus Rune Levels on Talismans", - "10": "Chronos' Tribute x{{amount}}: +{{bonus}}% Global Time Acceleration" - } - }, - "tesseracts": { - "intro": "You obtain guidance from beings in another dimension!", - "instructions": "Open up some Lootb-- er, Wow! Tesseracts, to boost tributes from the previous tier.", - "inventory": "You possess <> Wow! Tesseracts. Get them from ascending with at least 100,000 score!", - "total": "You have a total of <> Tesseract gifts!", - "items": { - "1": "Hermes' Gift x{{amount}}: +{{bonus}}% Hermes Tribute Power", - "2": "Aphrodite's Gift x{{amount}}: +{{bonus}}% Aphrodite Tribute Power", - "3": "Plutus' Gift x{{amount}}: +{{bonus}}% Plutus Tribute Power", - "4": "Iris' Gift x{{amount}}: +{{bonus}}% Iris Tribute Power", - "5": "Athena's Gift x{{amount}}: +{{bonus}}% Athena Tribute Power", - "6": "Artemis' Gift x{{amount}}: +{{bonus}}% Artemis Tribute Power", - "7": "Ares' Gift x{{amount}}: +{{bonus}}% Ares Tribute Power", - "8": "Moloch's Gift x{{amount}}: +{{bonus}}% Moloch Tribute Power", - "9": "Midas' Gift x{{amount}}: +{{bonus}}% Midas Tribute Power", - "10": "Chronos' Gift x{{amount}}: +{{bonus}}% Chronos Tribute Power" - } - }, - "hypercubes": { - "intro": "I didn't know that Wow! enterprises made 5-Dimensional Objects.", - "instructions": "Open up some Lootb-- er, Wow! Hypercubes, to boost blessings from the previous tier.", - "inventory": "You possess <> Wow! Hypercubes. Get them from ascending with at least 1e9 score!", - "total": "You have a total of <> Hypercube benedictions!", - "items": { - "1": "Hermes' Benediction x{{amount}}: +{{bonus}}% Hermes Gift Power", - "2": "Aphrodite's Benediction x{{amount}}: +{{bonus}}% Aphrodite Gift Power", - "3": "Plutus' Benediction x{{amount}}: +{{bonus}}% Plutus Gift Power", - "4": "Iris' Benediction x{{amount}}: +{{bonus}}% Iris Gift Power", - "5": "Athena's Benediction x{{amount}}: +{{bonus}}% Athena Gift Power", - "6": "Artemis' Benediction x{{amount}}: +{{bonus}}% Artemis Gift Power", - "7": "Ares' Benediction x{{amount}}: +{{bonus}}% Ares Gift Power", - "8": "Moloch's Benediction x{{amount}}: +{{bonus}}% Moloch Gift Power", - "9": "Midas' Benediction x{{amount}}: +{{bonus}}% Midas Gift Power", - "10": "Chronos' Benediction x{{amount}}: +{{bonus}}% Chronos Gift Power" - } - }, - "platonics": { - "intro": "This seems very familiar.", - "instructions": "Open up some Lootb-- er, Platonic! Cubes, for epic perks!.", - "inventory": "You possess <> Wow! Platonic Cubes. Get them from ascending with at least 2.666e12 score!", - "total": "You have a total of <> Platonic Cubes opened!", - "items": { - "1": "Cube Shard: x{{amount}}: +{{bonus}}% Bonus Wow! Cubes", - "2": "Tesseract Shard: x{{amount}}: +{{bonus}}% Bonus Wow! Tesseracts", - "3": "Hypercube Shard: x{{amount}}: +{{bonus}}% Bonus Wow! Hypercubes", - "4": "Platonic Remnant: x{{amount}}: +{{bonus}}% Bonus Platonic! Cubes", - "5": "Hypercube Statue: x{{amount}}: +{{bonus}}% ALL Hypercube bonuses", - "6": "Keynesian Statue: x{{amount}}: +{{bonus}}% Bonus Constant exponent on taxes", - "7": "High-Scoring Statue: x{{amount}}: +{{bonus}}% More Score on corruptions", - "8": "Chronos Statue: x{{amount}}: +{{bonus}}% <> Global Speed (after speed diminishing returns)" - } - }, - "hepteractForge": { - "howDidIGetHere": "How did I get here?", - "noTimeToWaste": "Oh well, no time to waste. This is your lab. Make cool stuff with your Hepteracts!", - "noPassiveBonus": "Hepteracts do not provide passive bonuses. They must be made useful through crafting.", - "youPossessHepteracts": "You possess <> Hepteracts! You know where to get these, right?", - "craft": "Craft", - "max": "Max", - "expand": "Expand", - "warp": "Warp", - "autoSetting": "Auto Setting : {{x}}%", - "autoCraftPercentage": "Autocraft Percentage", - "autoCraftPercentagePrompt": "Enter a number from 0 to 100 (integer only!) to set autocraft percentage. Every ascension, that percentage of your hepteracts are used to craft equally split between every hepteract with AUTO ON. Auto crafting also does not consume other resources! [Except Quarks, of course...]", - "unlocked": "< UNLOCKED >", - "locked": "< LOCKED >", - "inventory": "Inventory: {{x}} / {{y}}", - "orbs": "Orbs:", - "effect": "Effect:", - "powder": "Powder:", - "warps": "Warps:", - "descriptions": { - "chronos": { - "effect": "This hepteract bends time, in your favor. +0.06% Ascension Speed per Chronos Hepteract.", - "currentEffect": "Current Effect: Ascension Speed +{{x}}%", - "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Obtainium!" - }, - "hyperrealism": { - "effect": "This bad boy can make hypercube gain skyrocket. +0.06% Hypercubes per Hyperreal Hepteract.", - "currentEffect": "Current Effect: Hypercubes +{{x}}%", - "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Offerings." - }, - "quark": { - "effect": "One pound, two pound fish, fishy grant +0.05% Quarks per Quark Hepteract fish fish.", - "currentEffect": "Current Effect: Quarks +{{x}}%", - "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Quarks." - }, - "challenge": { - "effect": "That's preposterous. How are you going to gain +0.05% C15 Exponent per Challenge Hepteract? How!?", - "currentEffect": "Current Effect: C15 Exponent +{{x}}%", - "oneCost": "One of these will cost you {{x}} Hepteracts, {{y}} Platonic Cubes and {{z}} Cubes." - }, - "abyss": { - "effect": "It seems like this holds the power to be at the End of Time. Do you remember why you need this?", - "currentEffect": "<[You will submit to the Omega Entity of Time]>", - "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Wow! Cubes (lol)" - }, - "accelerator": { - "effect": "Haha, stupid Corruptions. +2,000 +0.03% Uncorruptable Accelerators per 'Way too many accelerators' Hepteract!", - "currentEffect": "Current Effect: Uncorruptable Accelerators +{{x}} + {{y}}%", - "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Wow! Tesseracts" - }, - "acceleratorBoost": { - "effect": "Haha, stupid Corruptions. +0.1% Accelerator Boosts per 'Way too many accelerator boosts' Hepteract!", - "currentEffect": "Current Effect: Accelerator Boosts +{{x}}%", - "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Hypercubes" - }, - "multiplier": { - "effect": "Haha, stupid Corruptions. +1,000 +0.03% Uncorruptable Multipliers per 'Way too many multipliers' Hepteract!", - "currentEffect": "Current Effect: Uncorruptable Multipliers +{{x}} +{{y}}%", - "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Obtainium" - } - } - } - }, - "dynamicUpgrades": { - "validation": { - "setPurchaseAmount": "Set maximum purchase amount per click for the {{x}} upgrade. Type -1 to set to MAX by default.", - "toggleKept": "Toggle kept at {{x}}.", - "onlyNegativeOne": "The only valid negative number for toggle is -1.", - "notZero": "You cannot set the toggle to 0." - }, - "toggleMax": "Your toggle is now set to MAX", - "toggle": "Your toggle is now set to {{x}}" - }, - "hepteracts": { - "unlockedCraft": "Congratulations. You have unlocked the ability to craft {{x}} in the hepteract forge!", - "notUnlocked": "This is not an unlocked craft, thus you cannot craft this item!", - "reachedCapacity": "You have reached the current capacity of {{x}}. Please expand to craft more.", - "craftMax": "This will attempt to craft as many as possible. \nYou can craft up to {{x}} ({{y}}%). Are you sure?", - "executionFailed": "Execution failed: material could not be calculated.", - "craft": "How many would you like to craft? \nYou can buy up to {{x}} ({{y}}%) amount.", - "cancelled": "Okay, maybe next time.", - "notEnough": "Insufficient inventory to expand.", - "craftedHepteracts": "You have successfully crafted {{x}} hepteracts.", - "craftedHepteractsMax": "You have successfully crafted {{x}} hepteracts. If this is less than your input, you either hit the inventory limit or you had insufficient resources.", - "expandPrompt": "This will reduce your balance by {{x}}, but capacity will increase from {{y}} to {{z}} [Expansion Multiplier: {{a}}]. Agree to the terms and conditions and stuff?", - "doubleSpent": "Something already modified your balance or cap, try again!", - "expandedInventory": "Successfully expanded your inventory. You can now fit {{x}}.", - "orbEffect": "Orb Effect: Opening Cubes gives {{x}}% more Quarks.", - "orbsPurchasedToday": "Orbs Purchased Today: {{x}}.", - "amalgamate": "You can amalgamate Overflux Orbs here. [NOTE: these expire at the end of your current day]", - "cost250k": "Cost: 250,000 Hepteracts per Overflux Orb", - "craftMaxOrbs": "This will attempt to buy as many orbs as possible. \nYou can buy up to {{x}} with your hepteracts. Are you sure?", - "hepteractInput": "How many Orbs would you like to purchase?\n You can buy up to {{x}} with your hepteracts.", - "gainedPowder": "You have also gained {{x}} powder immediately, thanks to your shop upgrades.", - "purchasedOrbs": "You have purchased {{x}} Overflux Orbs [+{{y}}% to effect]. {{z}} Enjoy!", - "allCubeGain": "ALL Cube Gain +{{x}}% [Multiplicative], +{{y}}% Quarks [Multiplicative]", - "allCubeGainExtended": "ALL Cube Gain +{{x}}% [Multiplicative], +{{y}}% Quarks [Multiplicative], Ascension Count +{{z}}%, Tesseract Building Production x{{a}} [From Platonic Upgrade 4x1]", - "powderEffect": "Powder effect: {{x}}", - "powderLumps": "You have {{x}} lumps of Overflux Powder.", - "expiredOrbs": "Expired Overflux Orbs become powder at a rate of {{x}} Orbs per powder lump!", - "dayWarpsRemaining": "Day Warps remaining today: {{x}}", - "warpImpossible": "Warping is impossible (you get multiplier to Quarks instead)", - "machineCooldown": "Sorry, but this machine is on cooldown.", - "atleastPowder": "Sorry, but you need 25 powder to operate the warp machine.", - "stumbleMachine": "You stumble upon a mysterious machine. A note attached says that you can reset daily Cube openings for 25 Powder. However it only works once each real life day. You in?", - "walkAwayMachine": "You walk away from the machine, powder intact.", - "useMachine": "Upon using the machine, your cubes feel just a little more rewarding. Daily cube opening counts have been reset! [-25 Powder]", - "useAllWarpsPrompt": "Turning this OFF, will consume all of your remaining Warps (without doing a Warp).\nAre you sure?", - "machineDidNotConsume": "Machine didn't consume your Warps.", - "boostQuarksPrompt": "This machine will now be able to boost your Quarks gained from opening Cubes, based on how many Warps you have remaining. While its ON, warping will be impossible and turning it OFF won't be so easy.\nAre you sure you want to turn it ON?", - "machineOverdrive": "Machine will go into overdrive,\nonce you will have some Warps.", - "machineInOverdrive": "Machine is now on overdrive.", - "machineUsualContinue": "Machine will continue to work as usual, for now." - }, - "importexport": { - "copiedSave": "Copied save to clipboard!", - "copiedFile": "Savefile copied to file!", - "exportFailed": "Export failed!", - "unableCopySave": "Unable to write the save to clipboard.", - "reloadDeletePrompt": "The next confirmation is to delete the save data\nIf you do not want to delete it, cancel it", - "resetPrompt": "Answer the question to confirm you'd like to reset: what is {{a}}+{{b}}? (Hint: {{sum}})", - "wrongAnswer": "Answer was wrong, not resetting!", - "unableImport": "Unable to import this file!", - "loadTestInLive": "You are attempting to load a testing file in a non-testing version!", - "promocodePrompt": "Got a code? Great! Enter it in (CaSe SeNsItIvE). \n [Note to viewer: this is for events and certain always-active codes. \n May I suggest you type in \"synergism2021\" or \"Khafra\" perchance?]", - "comeBackSoon": "Alright, come back soon!", - "noAddCodes": "You do not have an 'Add' code attempt! You will gain 1 in {{x}} seconds.", - "useXAdds": "You can use up to {{x}} attempts at once. How many would you like to use? You can enter a negative value which will use all attempts except the specified number.", - "cancelAdd": "No worries, you didn't lose any of your uses! Come back later!", - "daily0Uses": "0 uses left. Next: end of the day.", - "daily1Uses": "1 use left. Next: end of the day.", - "add1Uses": "{{x}} use left.", - "add0Uses": "{{x}} uses left. Next: in {{y}} seconds.", - "addUses": "{{x}} uses left.", - "timeMultiplier": "{{x}} use(s) left. Multiplier: {{y}}x", - "promocodes": { - "synergism2021": "Promo Code 'synergism2021' Applied! +25 Offerings, +50 Quarks", - "unsmith": "It's Spaghetti Time! [Awarded an achievement!!!]", - "antismith": "Hey, isn't this just a reference to Antimatter Dimensions? Shh. [Awarded an achievement!!!]", - "khafra": "Khafra has blessed you with {{x}} Quarks!", - "daily": { - "message": "Thank you for playing today!\nThe Ant God rewards you with this gift:", - "message2": "Feeling especially generous, the Ant God has also given you free levels of the following Singularity upgrades:" - }, - "add": { - "calculator3": "Thanks to PL-AT Ω you have also gained {{x}} real-life seconds to your Ascension Timer!", - "calculator5": "Thanks to PL-AT Γ you have additionally gained {{x}} real-life seconds to your GQ Export Timer!", - "calculator6": "Thanks to PL-AT _ you have gained {{x}} seconds of Octeract generation!", - "calculator7": "Finally, thanks to PL-AT Ω you have gained {{x}} seconds of Blueberry Time Generation!", - "calculatorSolution": "For {{w}} Quarks or nothing: What is {{x}} + {{y}}? The answer is {{z}} according to your calculator.", - "calculatorPrompt": "For {{w}} Quarks or nothing: What is {{x}} + {{y}}?", - "calculatorMaxed": "Your calculator figured out that {{a}} + {{b}} = {{c}} on its own, so you were awarded {{d}} Quarks! {{e}} {{f}} {{g}} {{h}} {{i}} You have {{j}} uses of Add. You will gain 1 in {{k}} seconds.", - "freeLevel": "Moreover, gain {{x}} free levels of GQ1 and {{y}} free levels of GQ3!!!", - "cancelled": "No worries, you didn't lose any of your uses! Come back later!", - "reward": "You were awarded {{a}} Quarks! {{b}} {{c}} {{d}} You have {{e}} uses of Add. You will gain 1 in {{f}} seconds.", - "wrong": "You guessed {{w}}, but the answer was {{x}}. You have {{y}} uses of Add. You will gain 1 in {{z}} seconds." - }, - "sub": { - "subbed": "Thanks for using the \"sub\" code! I've taken away {{x}} Quarks! :)", - "gave": "I gave you {{x}} Quarks so I could take {{y}} away." - }, - "gamble": { - "wait": "Wait a little bit. We'll get back to you when you're ready to lose again.", - "prompt": "Are you sure? The house always wins!", - "cancelled": "Scared? You should be!", - "betPrompt": "How many Quarks are you putting up?", - "cheaters": "Due to cheaters, you can only bet 10k max.", - "won": "You won. The Syncasino offers you a grand total of 25% of the pot! [+{{x}} Quarks]", - "lost": "Try again... you can do it! [-{{x}} quarks]" - }, - "time": { - "wait": "If you imported a save, you cannot use this code for 15 minutes to prevent cheaters.\n\nRegardless, you must wait at least 15 minutes between each use.", - "confirm": "Click the button within the next 15 seconds to test your luck! If you click within {{x}} ms of a randomly generated time, you will win a prize! This particular instance has a {{y}}x multiplier due to elapsed time between uses.", - "won": "You clicked at the right time! [+{{x}} Quarkies]", - "lost": "You didn't guess the right time, try again soon!", - "ambrosia": "Your blueberries resonate slightly, giving {{blueberryTime}} real life seconds of Blueberry Time." - }, - "spoiler": { - "moreThan1": "You will gain {{x}} Octeracts (when they come out) every second, assuming you have them unlocked!", - "one": "You will gain an Octeract (when they come out) every {{x}} seconds, assuming you have them unlocked!" - }, - "invalid": "Your code is either invalid or already used. Try again!", - "bribe": { - "notUnlocked": "Hmmm... you aren't ready yet.", - "overCapacity": "You can't hold more!", - "thanks": "Thank Alonso (in Discord) for the bribe." - } - } - }, - "toggles": { - "percentBetweenInclusive": "Value must be a number between {{x}} and {{y}}, inclusive!", - "percentKeptAt": "Your percentage is kept at {{x}}%.", - "onAscensionHepteractsCraft": "Okay. On Ascension, {{x}}% of your Hepteracts will be used in crafting.", - "autoUpgradeOn": "Auto Upgrades: [ON]", - "autoUpgradeOff": "Auto Upgrades: [OFF]", - "upgradeMaxIfPossible": "Upgrade: MAX [if possible wow]", - "upgradeOneLevelWow": "Upgrade: 1 Level wow", - "saveOfferingsOn": "Save Offerings [ON]", - "saveOfferingsOff": "Save Offerings [OFF]", - "modeTime": "Mode: TIME", - "modeAmount": "Mode: AMOUNT", - "modePercentage": "Mode: PERCENTAGE" - }, - "main": { - "dataPersistent": "Data on this page is now persistent! If you do not know what this means, you can safely ignore it.", - "starRepo": "Please show your appreciation by giving the GitHub repo a star. ❤️ https://github.com/pseudo-corp/SynergismOfficial", - "transferredFromLZ": "Transferred save to new format successfully!", - "allCorruptionsZero": "All Corruptions have been set to Zero. This will take effect on the next Ascension.", - "corruptionLoadoutApplied": "Corruption Loadout {{x}} \"{{y}}\" has been applied. This will take effect on the next Ascension.", - "ascendPrompt": "Ascending will reset all buildings, rune levels [NOT CAP!], talismans, most researches, and the anthill feature for Cubes of Power. Continue?", - "reincarnatePrompt": "Reincarnating will reset EVERYTHING but in return you will get extraordinarily powerful Particles, and unlock some very strong upgrades and some new features. would you like to Reincarnate? [Disable this message in settings.]", - "transcendPrompt": "Transcends will reset coin and prestige upgrades, coin producers, crystal producers AND diamonds. The first Transcension unlocks new features. Would you like to Transcend? [Toggle this message in settings.]", - "prestigePrompt": "Prestige will reset coin upgrades, coin producers AND crystals. The first Prestige unlocks new features. Would you like to Prestige? [Toggle this message in settings.]", - "welcomeToSingularity": "Welcome to Singularity #{{x}}. You're back to familiar territory, but something doesn't seem right.", - "singularityCancelled": "If you decide to change your mind, let me know. -Ant God", - "singularityMessage1": "You have reached the end of the game, on Singularity #{{x}}. Platonic and the Ant God are proud of you.", - "singularityMessage2": "You may choose to sit on your laurels, and consider the game 'beaten', or you may do something more interesting.", - "singularityMessage3": "You're too powerful for this current universe. The multiverse of Synergism is truly endless, but out there are even more challenging universes parallel to your very own.", - "singularityMessage4": "Start anew, and enter Singularity #{{x}}. Your next universe is harder than your current one, but unlock a permanent +10% Quark Bonus, +10% Ascension Count Bonus, and Gain {{y}} Golden Quarks, which can purchase game-changing endgame upgrades [Boosted by {{z}}% due to patreon bonus!].", - "singularityMessage5": "However, all your past accomplishments are gone! ALL Challenges, Refundable Shop upgrades, Upgrade Tab, Runes, All Cube upgrades, All Cube Openings, Hepteracts (Except for your Quark Hepteracts), Achievements will be wiped clean.", - "singularityConfirm0": "Do you wish to start singularity #{{x}}? Your next universe is harder but you will gain {{y}} Golden Quarks.", - "singularityConfirm1": "So, what do you say? Do you wish to enter the Singularity?", - "singularityConfirm2": "Are you sure you wish to enter the Singularity?", - "singularityConfirm3": "Are you REALLY SURE? You cannot go back from this (without an older savefile)! Confirm one last time to finalize your decision.", - "noAntiquity": "Hmph. Please return with an Antiquity. Thank you. -Ant God", - "insideSingularityChallenge": "Derpsmith thinks you are in a Singularity Challenge. You may exit it by clicking on the challenge icon in the Exalt tab.", - "gameBeat": "Well. It seems you've reached the eye of the Singularity. I'm pleased. This also means there is nowhere to go from here. At least, not until higher powers expand your journey.", - "exitAscensionChallenge": "Are you absolutely sure that you want to exit the Ascension Challenge? You will need to clear challenge 10 again before you can attempt the challenge again!", - "buyResearch3x11": "[LOCKED - Buy Research 3x11]" - }, - "history": { - "perSecondOn": "Per second: ON", - "perSecondOff": "Per second: OFF" - }, - "event": { - "aprilFools": { - "introText": "The <> spins at you, telepathically communicating: 'This is NOT a <><>, I swear. Just click me already!'", - "clicked": "See? Yet another reason to trust Unsmith. Ah well. For clicking me, you gain 5% more Offerings, Obtainium, and ALL Cubes until you refresh the page!", - "clickedText": "You have clicked the <>! Until refresh, gain <>, <>, <>!" - } - }, - "account": { - "logout": "The page will now reload. You are logged out! Goodbye!!" - }, - "pseudoCoins": { - "coinCount": "You have <>!", - "cost": "Cost: <>", - "maxxed": "<>", - "buyButton": "Buy! <>", - "currEffect": "Current Level:", - "nextEffect": "Next Level:", - "upgradeNames": { - "INSTANT_UNLOCK_1": "The Talisman Activator-inator", - "INSTANT_UNLOCK_2": "The Rune Discoverer-inator", - "CUBE_BUFF": "Gold-Infused Cubes", - "AMBROSIA_LUCK_BUFF": "The Gold Leaf Clovers", - "AMBROSIA_GENERATION_BUFF": "Alchemized Ambrosia Speedup", - "GOLDEN_QUARK_BUFF": "Even Golder Quarks", - "FREE_UPGRADE_PROMOCODE_BUFF": "Bribing the Daily Code", - "CORRUPTION_LOADOUT_SLOT_QOL": "More Corruption Loadouts!", - "AMBROSIA_LOADOUT_SLOT_QOL": "More Ambrosia Loadouts!", - "AUTO_POTION_FREE_POTIONS_QOL": "Potion Duplication Glitch", - "OFFLINE_TIMER_CAP_BUFF": "Cozier Beds Enshrined in Gold", - "ADD_CODE_CAP_BUFF": "The Limited-Edition PLAT-P Calculator" - }, - "upgradeEffects": { - "INSTANT_UNLOCK_1": "The Plastic Talisman is <> always unlocked! <>", - "INSTANT_UNLOCK_2": "The Rune of Infinite Ascent is <> always unlocked! <>", - "CUBE_BUFF": "Cube Gain is multiplied by <>", - "AMBROSIA_LUCK_BUFF": "Ambrosia Luck is increased by <>", - "AMBROSIA_GENERATION_BUFF": "Blueberry Generation Speed is multiplied by <>", - "GOLDEN_QUARK_BUFF": "Golden Quark Gain is multiplied by <>", - "FREE_UPGRADE_PROMOCODE_BUFF": "Code 'Daily' gives <> the Free Upgrades!", - "CORRUPTION_LOADOUT_SLOT_QOL": "You have <> additional Corruption Loadout slots!", - "AMBROSIA_LOADOUT_SLOT_QOL": "You have <> additional Ambrosia Loadout slots!", - "AUTO_POTION_FREE_POTIONS_QOL": "Auto-Potion is <> FREE!", - "OFFLINE_TIMER_CAP_BUFF": "Offline Time Capacity is multiplied by <>", - "ADD_CODE_CAP_BUFF": "Code 'add' Capacity is multiplied by <>" - } - } -} +{ + "testing": { + "saveInLive": "Savefiles cannot be used in live!", + "saveInLive2": "You can't load this save anymore!", + "errorSaving": "An error prevented this file from being saved.", + "gameSaved": "Game saved successfully!" + }, + "save": { + "loadFailed": "Unable to load save.", + "saveToClipboard": "Are you sure you want to enable copy save to clipboard?" + }, + "ambrosia": { + "ambrosia": "Ambrosia", + "amount": "You have <> Ambrosia! [Lifetime: <>]", + "blueberryGeneration": "Each second, gain <> seconds of Blueberry Time.", + "perGen": "Currently gaining <> Ambrosia with a <> chance of another. [<>] {{extra}}", + "blueberrySecond": "You currently have <> accumulated Blueberry Seconds! Generating Ambrosia when <> is accumulated.", + "bonuses": "Your ambrosia is giving <> ALL cubes and <> Quarks!", + "prerequisite": "Prerequisites:", + "prereqNotMet": " (Not Met!)", + "blueberryCost": "Blueberries (To Activate):", + "prereqNotMetAlert": "You do not have the necessary prerequisites to purchase this upgrade.", + "notEnoughBlueberries": "You do not have enough Blueberries to activate this module.", + "availableBlueberries": "You have <> unspent Blueberries. Unlock higher tier modules below using them!", + "cubeUpgradeThresholds": "Your Blueberry Time requirements have been doubled <> times due to lifetime Ambrosia. <>!", + "cubeUpgradeRedBarFills": "Your Red Bar has filled <> times while Cookie Upgrade 29 is purchased, giving <>!", + "ambrosiaBuyPrompt": "How many Ambrosia would you like to spend? You have {{amount}} Ambrosia. Type -1 to use max!", + "refund": "You have refunded all spent Blueberries and Ambrosia.", + "refundWord": "Refund", + "data": { + "ambrosiaTutorial": { + "name": "Ambrosia Tutorial Module", + "description": "Blueberries generate Ambrosia over time. Spend them in the Ambrosia tree! +5% Cubes/lvl, +1% Quarks/lvl", + "effect": "This tutorial module increases cube gain by {{cubeAmount}}% and quarks by {{quarkAmount}}%" + }, + "ambrosiaQuarks1": { + "name": "Ambrosia Quark Module I", + "description": "Congrats on completing the tutorial module. You need to have it maxed to buy levels of this. +1% Quarks/lvl.", + "effect": "This quark module increases Quark gain by {{amount}}%" + }, + "ambrosiaCubes1": { + "name": "Ambrosia Cube Module I", + "description": "Congrats on completing the tutorial module. You need to have it maxxed to buy levels of this. +5% Cubes/lvl. Every 10 levels gives 1.1x Cubes.", + "effect": "This cube module increases cube gain by {{amount}}%" + }, + "ambrosiaLuck1": { + "name": "Ambrosia Luck Module I", + "description": "Congrats on completing the tutorial module. You need to have it maxxed to buy levels of this. ☘ +2 Ambrosia Luck/lvl. Every 10 levels gives ☘ +12 more!", + "effect": "This luck module increases ☘ Ambrosia Luck by {{amount}}" + }, + "ambrosiaCubeQuark1": { + "name": "Ambrosia Cube-Quark Hybrid Module I", + "description": "A first generation hybrid module. Gain +0.01% Quarks per level per digit in the values of all cube types.", + "effect": "This first generation hybrid module increases Quark gain by {{amount}}%" + }, + "ambrosiaLuckQuark1": { + "name": "Ambrosia Luck-Quark Hybrid Module I", + "description": "A first generation hybrid module. Gain +0.01% more Quarks per level per 1 ☘ Ambrosia Luck! Diminishing returns after 1,000 Luck.", + "effect": "This first generation hybrid module increases Quark gain by {{amount}}%" + }, + "ambrosiaQuarkCube1": { + "name": "Ambrosia Quark-Cube Hybrid Module I", + "description": "A first generation hybrid module. Gain +0.05% more cubes per level per digit in your Quark balance, squared!", + "effect": "This first generation hybrid module increases cube gain by {{amount}}%" + }, + "ambrosiaLuckCube1": { + "name": "Ambrosia Luck-Cube Hybrid Module I", + "description": "A first generation hybrid module. Gain +0.02% more cubes per level per 1 ☘ Ambrosia Luck!", + "effect": "This first generation hybrid module increases cube gain by {{amount}}%" + }, + "ambrosiaCubeLuck1": { + "name": "Ambrosia Cube-Luck Hybrid Module I", + "description": "A first generation hybrid module. Gain ☘ +0.02 Ambrosia Luck per level per digit in the values of all cube types.", + "effect": "This first generation hybrid module increases ☘ Ambrosia Luck by {{amount}}" + }, + "ambrosiaQuarkLuck1": { + "name": "Ambrosia Quark-Luck Hybrid Module I", + "description": "A first generation hybrid module. Gain ☘ +0.02 Ambrosia Luck per level per digit in your Quark balance, squared.", + "effect": "This first generation hybrid module increases ☘ Ambrosia Luck by {{amount}}" + }, + "ambrosiaQuarks2": { + "name": "Ambrosia Quark Module II", + "description": "Self-Synergies! Gain +1% Quarks per level, +0.1% for every 10 levels in Ambrosia Quark Module I.", + "effect": "This second generation Quark module increases Quark gain by {{amount}}%" + }, + "ambrosiaCubes2": { + "name": "Ambrosia Cube Module II", + "description": "Self-Synergies! Gain +6% cubes / lvl , +0.6% for every 10 levels in Ambrosia Cube Module I. Every 10 levels gives 1.13x cubes.", + "effect": "This second generation Cube module increases cube gain by {{amount}}%" + }, + "ambrosiaLuck2": { + "name": "Ambrosia Luck Module II", + "description": "Self-Synergies! Gain ☘ +3 Ambrosia Luck/lvl, +0.3 for every 10 levels in Ambrosia Luck Module I. Every 10 levels gives ☘ +40 more!", + "effect": "This second generation Luck module increases ☘ Ambrosia Luck by {{amount}}" + }, + "ambrosiaPatreon": { + "name": "Shameless, Ambrosial Patreon Reminder", + "description": "In every realm, Platonic sells out. +1% Blueberry Generation Speed for every +1% Quarks by the Patreon bonus!", + "effect": "Generous Patreon supporters grant you {{amount}}% more Blueberry Time Generation. If you are not already, consider becoming a Patreon supporter to support development!" + }, + "ambrosiaObtainium1": { + "name": "RNG-based Obtainium Booster", + "description": "Gain +0.1% Obtainium per ☘ Ambrosia Luck!", + "effect": "This module increases Obtainium gain by {{amount}}%!" + }, + "ambrosiaOffering1": { + "name": "RNG-based Offering Booster", + "description": "Gain +0.1% Offerings per ☘ Ambrosia Luck!", + "effect": "This module increases Offering gain by {{amount}}%!" + }, + "ambrosiaHyperflux": { + "name": "Hyperfluxed Wow! Cube Industrial Production", + "description": "Gain +1% cubes per level, per level of Platonic Upgrade 4x4 purchased (multiplicative!!!)", + "effect": "This module increases Cubes gain by {{amount}}%!" + } + }, + "loadouts": { + "load": "MODE: LOAD LOADOUT", + "save": "MODE: SAVE LOADOUT", + "none": "No loadout saved in this slot!", + "loadout": "Loadout", + "confirmation": "Saving to this slot will override its build. Are you sure?", + "imported": "Imported loadout" + }, + "importTree": { + "success": "Tree successfully imported!", + "failure": "Could not import tree as it is invalid!", + "error": "Could not parse submitted file! Double check that it is a Blueberry Tree loadout file." + }, + "exportTree": { + "exportButton": "Export" + } + }, + "achievements": { + "descriptions": { + "1": "[{{number}}] A Loyal Employee: Hire your first Worker.", + "2": "[{{number}}] Small Business: Hire 10 Workers.", + "3": "[{{number}}] Now we're synergizing!: Hire 100 Workers.", + "4": "[{{number}}] Gaining Redundancies: Hire 1,000 Workers.", + "5": "[{{number}}] A cog in the machine: Hire 5,000 Workers.", + "6": "[{{number}}] A nail in the machine: Hire 10,000 Workers.", + "7": "[{{number}}] Are we even in the machine anymore?: Hire 20,000 Workers.", + "8": "[{{number}}] STONKS!!!: Purchase 1 Investment.", + "9": "[{{number}}] Planning ahead: Purchase 10 Investments.", + "10": "[{{number}}] Inside Trading: Purchase 100 Investments.", + "11": "[{{number}}] Outside Trading?: Purchase 1,000 Investments.", + "12": "[{{number}}] Market Takeover: Purchase 5,000 Investments.", + "13": "[{{number}}] Trickle-Down Economics: Purchase 10,000 Investments.", + "14": "[{{number}}] Eliminated Regulation: Purchase 20,000 Investments.", + "15": "[{{number}}] Stationery!: Build 1 Printer.", + "16": "[{{number}}] Printing Press: Build 10 Printers.", + "17": "[{{number}}] It prints free money!: Build 100 Printers.", + "18": "[{{number}}] Solving Our Debts: Build 1,000 Printers.", + "19": "[{{number}}] Monopolizing the market: Build 5,000 Printers.", + "20": "[{{number}}] We're running out of Ink!: Build 10,000 Printers.", + "21": "[{{number}}] 3D-printing the universe: Build 20,000 Printers.", + "22": "[{{number}}] A national treasure: Establish 1 Coin Mint.", + "23": "[{{number}}] Now with competition!: Establish 10 Coin Mints.", + "24": "[{{number}}] Counterfeiting with Style!: Establish 100 Coin Mints.", + "25": "[{{number}}] Why do we need all these?: Establish 1000 Coin Mints.", + "26": "[{{number}}] No really, why??: Establish 5,000 Coin Mints.", + "27": "[{{number}}] Is no one to stop us???: Establish 10,000 Coin Mints.", + "28": "[{{number}}] Oh well, time to mint: Establish 20,000 Coin Mints.", + "29": "[{{number}}] Newton's Apprentice: Create 1 Alchemy.", + "30": "[{{number}}] Lab Work: Create 10 Alchemies.", + "31": "[{{number}}] Satanic Becomings: Create 66 Alchemies.", + "32": "[{{number}}] Satan Incarnate: Create 666 Alchemies.", + "33": "[{{number}}] Is this more demonic?: Create 6,666 Alchemies.", + "34": "[{{number}}] Golden Paradise: Create 17,777 Alchemies.", + "35": "[{{number}}] Unlocking secrets to the world: Create 42,777 Alchemies.", + "36": "[{{number}}] Leveling up: Prestige for at least 1 Diamond.", + "37": "[{{number}}] High-Tiered: Prestige for at least 1e+6 Diamonds.", + "38": "[{{number}}] Highly Regarded: Prestige for at least 1e+100 Diamonds.", + "39": "[{{number}}] Prestigious: Prestige for at least 1e+1000 Diamonds.", + "40": "[{{number}}] Legendary: Prestige for at least 1e+10000 Diamonds.", + "41": "[{{number}}] Divine: Prestige for at least 1e+77777 Diamonds.", + "42": "[{{number}}] Perfectly Respected: Prestige for at least 1e+250000 Diamonds.", + "43": "[{{number}}] A Simple Detour: Transcend for at least 1 Mythos.", + "44": "[{{number}}] Tunnel Vision: Transcend for at least 1e+6 Mythos.", + "45": "[{{number}}] Risen from the Ashes: Transcend for at least 1e+50 Mythos.", + "46": "[{{number}}] Paradigm Shift: Transcend for at least 1e+308 Mythos.", + "47": "[{{number}}] Preparation: Transcend for at least 1e+2000 Mythos.", + "48": "[{{number}}] Revising the Plan: Transcend for at least 1e+25000 Mythos.", + "49": "[{{number}}] Leaving the Universe: Transcend for at least 1e+100000 Mythos.", + "50": "[{{number}}] Going Quantum: Reincarnate for at least 1 Particle.", + "51": "[{{number}}] Tunneling Vision: Reincarnate for at least 100,000 Particles.", + "52": "[{{number}}] Simulating the World: Reincarnate for at least 1e+30 Particles.", + "53": "[{{number}}] Multidimensional Creation: Reincarnate for at least 1e+200 Particles.", + "54": "[{{number}}] Lepton Dance: Reincarnate for at least 1e+1500 Particles.", + "55": "[{{number}}] Do we have enough yet?: Reincarnate for at least 1e+5000 Particles.", + "56": "[{{number}}] I Feel Luck in My Cells: Reincarnate for at least 1e+7777 Particles.", + "57": "[{{number}}] One Way Only: Prestige without buying Multipliers.", + "58": "[{{number}}] Authentic Shifting: Transcend without having bought a Multiplier.", + "59": "[{{number}}] The Singularity: Reincarnate without having bought a Multiplier.", + "60": "[{{number}}] Gotta go SLOW!: Prestige without buying Accelerators or Accelerator Boosts.", + "61": "[{{number}}] I'm really going slow: Transcend without having bought Accelerators or Boosts.", + "62": "[{{number}}] Are we there yet?: Reincarnate without having bought Accelerators or Boosts.", + "63": "[{{number}}] A careful search for Diamonds: Get 1e120,000 Coins in [Reduced Diamonds] without buying Accelerators or Boosts.", + "64": "[{{number}}] Very Based: Prestige without purchasing Coin Upgrades.", + "65": "[{{number}}] Miser: Transcend without purchasing Coin Upgrades.", + "66": "[{{number}}] True Miser: Transcend without purchasing Coin or Diamond Upgrades.", + "67": "[{{number}}] Coinless Pursuit: Reincarnate without purchasing Coin Upgrades.", + "68": "[{{number}}] Diamonds don't matter to me!: Reincarnate without purchasing Coin or Diamond Upgrades.", + "69": "[{{number}}] Leave nothing behind: Reincarnate without purchasing Coin, Diamond or Mythos Upgrades.", + "70": "[{{number}}] Leave NOTHING behind.: Reincarnate without purchasing Coin, Diamond, Mythos, or Generator Upgrades.", + "71": "[{{number}}] Out of Order: Buy Generator Upgrade Row 1, #2 first in a Transcension (IV -> III)", + "72": "[{{number}}] More Out of Order: Buy Generator Upgrade Row 1, #3 first in a Transcension (III -> II)", + "73": "[{{number}}] Four's a Company: Buy Generator Upgrade Row 1, #4 first in a Transcension (II -> I)", + "74": "[{{number}}] Five's a Croud: Buy Generator Upgrade Row 1, #5 first in a Transcension (I -> V)", + "75": "[{{number}}] Vaseline without the Machine: Exit [No Multiplier] with at least 1e1000 coins and without any of the row 1 generator upgrades.", + "76": "[{{number}}] Rage against the Machine: Exit [No Accelerator] with at least 1e1000 coins and without any of the row 1 generator upgrades.", + "77": "[{{number}}] Amish Paradise: Exit [No Shards] with at least 1e99,999 coins and without any of the row 1 generator upgrades.", + "78": "[{{number}}] Single-Cell: Complete [No Multiplier] once.", + "79": "[{{number}}] Solidarity: Complete [No Multiplier] three times.", + "80": "[{{number}}] Duplication-Free!: Complete [No Multiplier] five times.", + "81": "[{{number}}] Multitasking Challenged: Complete [No Multiplier] ten times.", + "82": "[{{number}}] No Deaths: Complete [No Multiplier] twenty times.", + "83": "[{{number}}] Population One: Complete [No Multiplier] fifty times.", + "84": "[{{number}}] Insert Another Token: Complete [No Multiplier] seventy-five times.", + "85": "[{{number}}] Slow Start: Complete [No Accelerator] once", + "86": "[{{number}}] Respawn Rate -12%: Complete [No Accelerator] three times.", + "87": "[{{number}}] Putting the Breaks On: Complete [No Accelerator] five times.", + "88": "[{{number}}] Racing a Sloth...: Complete [No Accelerator] ten times.", + "89": "[{{number}}] ... and Losing.: Complete [No Accelerator] twenty times.", + "90": "[{{number}}] Planck Distance Traveled: Complete [No Accelerator] fifty times.", + "91": "[{{number}}] Inverse-Ackermann Growth: Complete [No Accelerator] seventy-five times.", + "92": "[{{number}}] Intact: Complete [No Shards] once.", + "93": "[{{number}}] Augments are Stupid!: Complete [No Shards] three times.", + "94": "[{{number}}] Grandmasters are Brilliant!: Complete [No Shards] five times.", + "95": "[{{number}}] Gotta get those Grandmasters Stronger: Complete [No Shards] ten times.", + "96": "[{{number}}] Summoning Enhancements: Complete [No Shards] twenty times.", + "97": "[{{number}}] Magic 99/99: Complete [No Shards] fifty times.", + "98": "[{{number}}] Perfect Foresight: Complete [No Shards] seventy-five times.", + "99": "[{{number}}] Inflation: Complete [Cost+] once.", + "100": "[{{number}}] Hyperinflation: Complete [Cost+] three times.", + "101": "[{{number}}] Market Bubble: Complete [Cost+] five times.", + "102": "[{{number}}] Bull Market: Complete [Cost+] ten times.", + "103": "[{{number}}] Wealth Inequality: Complete [Cost+] twenty times.", + "104": "[{{number}}] Severe Overpay: Complete [Cost+] fifty times.", + "105": "[{{number}}] Societal Collapse: Complete [Cost+] seventy-five times.", + "106": "[{{number}}] Excavation: Complete [Reduced Diamonds] once.", + "107": "[{{number}}] Digging Deep: Complete [Reduced Diamonds] three times.", + "108": "[{{number}}] Frack As Needed: Complete [Reduced Diamonds] five times.", + "109": "[{{number}}] Unobtainium Pickaxe: Complete [Reduced Diamonds] ten times.", + "110": "[{{number}}] Fortune III: Complete [Reduced Diamonds] twenty times.", + "111": "[{{number}}] Every kiss...: Complete [Reduced Diamonds] fifty times.", + "112": "[{{number}}] ...begins with K.: Complete [Reduced Diamonds] seventy-five times.", + "113": "[{{number}}] Tax evasion!: Complete {[Tax+]} once.", + "114": "[{{number}}] Keeping up with the Joneses: Complete {[Tax+]} twice.", + "115": "[{{number}}] Offshore deposits: Complete {[Tax+]} three times.", + "116": "[{{number}}] Bribing officials: Complete {[Tax+]} five times.", + "117": "[{{number}}] Becoming President: Complete {[Tax+]} ten times.", + "118": "[{{number}}] Charitable Donation: Complete {[Tax+]} fifteen times.", + "119": "[{{number}}] IRS Audit: Complete {[Tax+]} twenty-five times.", + "120": "[{{number}}] Is there anybody in there?: Complete {[No Accelerator/Multiplier]} once.", + "121": "[{{number}}] Human being: Complete {[No Accelerator/Multiplier]} twice.", + "122": "[{{number}}] Interdimensional: Complete {[No Accelerator/Multiplier]} three times.", + "123": "[{{number}}] A slow nickel: Complete {[No Accelerator/Multiplier]} five times.", + "124": "[{{number}}] Multipliers don't even work 0/5: Complete {[No Accelerator/Multiplier]} ten times.", + "125": "[{{number}}] Accelerators don't even work -5/5: Complete {[No Accelerator/Multiplier]} fifteen times.", + "126": "[{{number}}] ACCELERATOR BOOSTS DON'T EVEN WORK -100/5: Complete {[No Accelerator/Multiplier]} twenty-five times.", + "127": "[{{number}}] I hate this challenge: Complete Cost++ Once.", + "128": "[{{number}}] A costly mistake: Complete Cost++ Twice.", + "129": "[{{number}}] Impetus: Complete Cost++ Three Times.", + "130": "[{{number}}] Are you broke yet? Complete Cost++ Five Times.", + "131": "[{{number}}] The world of Finance: Complete Cost++ Ten Times.", + "132": "[{{number}}] Marginal Gains: Complete Cost++ Twenty Times.", + "133": "[{{number}}] I buy these: Complete Cost++ Twenty-Five Times.", + "134": "[{{number}}] Agnostic: Complete No Runes Once.", + "135": "[{{number}}] Ant-i Runes: Complete No Runes Twice.", + "136": "[{{number}}] Isn't it getting tiresome?: Complete No Runes Three Times.", + "137": "[{{number}}] Machine does not accept offerings: Complete No Runes Five Times.", + "138": "[{{number}}] Runes Suck 1/5: Complete No Runes Ten Times.", + "139": "[{{number}}] I didn't even notice Prism was gone: Complete No Runes Twenty Times.", + "140": "[{{number}}] Atheist: Complete No Runes Twenty-Five Times.", + "141": "[{{number}}] Sadism: Complete {[Sadistic I]} Once.", + "142": "[{{number}}] Masochism: Complete {[Sadistic I]} Twice.", + "143": "[{{number}}] Insanity: Complete {[Sadistic I]} Three Times.", + "144": "[{{number}}] How? Complete {[Sadistic I]} Five Times.", + "145": "[{{number}}] Why? Complete {[Sadistic I]} Ten Times.", + "146": "[{{number}}] Descend: Complete {[Sadistic I]} Twenty Times.", + "147": "[{{number}}] End of the Universe: Complete {[Sadistic I]} Twenty-Five Times.", + "148": "[{{number}}] Gas gas gas: Purchase 5 Accelerators.", + "149": "[{{number}}] 0 to 25: Purchase 25 Accelerators.", + "150": "[{{number}}] 0 to 100: Purchase 100 Accelerators", + "151": "[{{number}}] Highway to Hell: Purchase 666 Accelerators.", + "152": "[{{number}}] Perhaps you should brake: Purchase 2,000 Accelerators.", + "153": "[{{number}}] Exit the vehicle now!: Purchase 12,500 Accelerators.", + "154": "[{{number}}] Faster than light: Purchase 100,000 Accelerators.", + "155": "[{{number}}] I've been duped!: Purchase 2 Multipliers.", + "156": "[{{number}}] Funhouse Mirrors: Purchase 20 Multipliers.", + "157": "[{{number}}] Friend of binary: Purchase 100 Multipliers.", + "158": "[{{number}}] Feeling the cost growth yet?: Purchase 500 Multipliers.", + "159": "[{{number}}] Perhaps you'll feel the cost now: Purchase 2,000 Multipliers.", + "160": "[{{number}}] Exponential Synergy: Purchase 12,500 Multipliers.", + "161": "[{{number}}] Cloned: Purchase 100,000 Multipliers.", + "162": "[{{number}}] Jerk > 0: Purchase 2 Accelerator Boosts.", + "163": "[{{number}}] Can't the speedometer move any faster?: Purchase 10 Accelerator Boosts.", + "164": "[{{number}}] 50 G rotations: Purchase 50 Accelerator Boosts.", + "165": "[{{number}}] Dematerialize: Purchase 200 Accelerator Boosts.", + "166": "[{{number}}] Breaking the laws of Physics: Purchase 1,000 Accelerator Boosts.", + "167": "[{{number}}] Decayed Realism: Purchase 5,000 Accelerator Boosts.", + "168": "[{{number}}] Kinda fast: Purchase 15,000 Accelerator Boosts.", + "169": "[{{number}}] The Galactic Feast: Obtain 3 Galactic Crumbs.", + "170": "[{{number}}] Only the finest: Obtain 100,000 Galactic Crumbs.", + "171": "[{{number}}] Six-Course Meal: Obtain 666,666,666 Galactic Crumbs.", + "172": "[{{number}}] Accumulation of Food: Obtain 1e20 Galactic Crumbs.", + "173": "[{{number}}] Cookie Clicking: Obtain 1e40 Galactic Crumbs.", + "174": "[{{number}}] Unlimited Bread Sticks!: Obtain 1e500 Galactic Crumbs.", + "175": "[{{number}}] Restaurant at the end of the Universe: Obtain 1e2500 Galactic Crumbs.", + "176": "[{{number}}] Ant-icipation!: Amass a 2x Ant Multiplier through sacrifice and own a Tier 2 Ant.", + "177": "[{{number}}] Ant-ecedent: Amass a 6x Ant Multiplier through sacrifice and own a Tier 3 Ant.", + "178": "[{{number}}] Ants are friends, not food!: Amass a 20x Ant Multiplier through sacrifice and own a Tier 4 Ant.", + "179": "[{{number}}] Ant Devil?: Amass a 100x Ant Multiplier through sacrifice and own a Tier 5 Ant.", + "180": "[{{number}}] The world's best chef: Amass a 500x Ant Multiplier through sacrifice and own a Tier 6 Ant.", + "181": "[{{number}}] 6 Michelin Stars: Amass a 6,666x Ant Multiplier through sacrifice and own a Tier 7 Ant.", + "182": "[{{number}}] Keys to the Restaurant at the end of the Universe: Amass a 77,777x Ant Multiplier through sacrifice and own a Tier 8 Ant.", + "183": "[{{number}}] Up: Ascend Once.", + "184": "[{{number}}] Double-Up: Ascend Twice.", + "185": "[{{number}}] Give me Ten!: Ascend Ten Times.", + "186": "[{{number}}] Give me a Hundred: Ascend 100 Times.", + "187": "[{{number}}] Give me a Thousand: Ascend 1,000 Times.", + "188": "[{{number}}] Give me some arbitrary number I: Ascend 14,142 Times.", + "189": "[{{number}}] Give me some arbitrary number II: Ascend 141,421 Times.", + "190": "[{{number}}] Now that's what I call getting some Pi!: Attain a constant of 3.14.", + "191": "[{{number}}] One in a million: Attain a constant of 1,000,000 [1e6].", + "192": "[{{number}}] A number: Attain a constant of 4.32e10.", + "193": "[{{number}}] The coolest of numbers: Attain a constant of 6.9e21.", + "194": "[{{number}}] Planck^(-1): Attain a constant of 1.509e33.", + "195": "[{{number}}] Epsilon > a lot: Attain a constant of 1e66.", + "196": "[{{number}}] NUM_MAX: Attain a constant of 1.8e308.", + "197": "[{{number}}] Casualties: Clear 'Reduced Ants' challenge once.", + "198": "[{{number}}] Fatalities: Clear 'Reduced Ants' challenge twice.", + "199": "[{{number}}] Destruction: Clear 'Reduced Ants' challenge three times.", + "200": "[{{number}}] War, what is it good for?: Clear 'Reduced Ants' challenge five times.", + "201": "[{{number}}] Absolutely everything.: Clear 'Reduced Ants' challenge ten times.", + "202": "[{{number}}] Perfect Storm: Clear 'Reduced Ants' challenge twenty times.", + "203": "[{{number}}] Immaculate Storm: Clear 'Reduced Ants' challenge thirty times.", + "204": "[{{number}}] I didn't need those stupid reincarnations anyway!: Clear 'No Reincarnation' challenge once.", + "205": "[{{number}}] [x1,x2,0,x3]: Clear 'No Reincarnation' challenge twice.", + "206": "[{{number}}] Nonmetaphysical: Clear 'No Reincarnation' challenge three times.", + "207": "[{{number}}] Living alone: Clear 'No Reincarnation' challenge five times.", + "208": "[{{number}}] DM me on discord if you read these names: Clear 'No Reincarnation' challenge ten times.", + "209": "[{{number}}] Yeah: Clear 'No Reincarnation' challenge twenty times.", + "210": "[{{number}}] Science! Clear 'No Reincarnation' challenge thirty times.", + "211": "[{{number}}] The IRS strikes back: Clear 'Tax+++' challenge once.", + "212": "[{{number}}] Fiscal Policy: Clear 'Tax+++' challenge twice.", + "213": "[{{number}}] Economic Boom: Clear 'Tax+++' challenge three times.", + "214": "[{{number}}] Ant-onomics: Clear 'Tax+++' challenge five times.", + "215": "[{{number}}] 'Wow Platonic Tax sucks 1/5': Clear 'Tax+++' challenge ten times.", + "216": "[{{number}}] Haha this is hard for some reason: Clear 'Tax+++' challenge twenty times.", + "217": "[{{number}}] Taxes are hard: Clear 'Tax+++' challenge thirty times.", + "218": "[{{number}}] Shiny Blue Rock: Clear 'No Research' once.", + "219": "[{{number}}] It's like Avatar: Clear 'No Research' twice.", + "220": "[{{number}}] It's like Unobtainium: Clear 'No Research' three times.", + "221": "[{{number}}] It's like a thing: Clear 'No Research' five times.", + "222": "[{{number}}] It's like: Clear 'No Research' ten times.", + "223": "[{{number}}] It's: Clear 'No Research' twenty times.", + "224": "[{{number}}] It: Clear 'No Research' thirty times.", + "225": "[{{number}}] Pretty Corrupt: Clear an Ascension with above 100,000 score.", + "226": "[{{number}}] Bought out: Clear an Ascension with above 1 million score.", + "227": "[{{number}}] Utterly Corrupt: Clear an Ascension with above 10 million score.", + "228": "[{{number}}] Antitrust: Clear an Ascension with above 100 million score.", + "229": "[{{number}}] Ant-i-trust: Clear an Ascension with above 1 billion score.", + "230": "[{{number}}] This is pretty unfair: Clear an Ascension with above 5 billion score.", + "231": "[{{number}}] Antichrist: Clear an Ascension with above 25 billion score.", + "232": "[{{number}}] Highly Blessed: Level your Speed Rune Blessing to 100,000.", + "233": "[{{number}}] Divine Blessing: Level your Speed Rune Blessing to 100,000,000.", + "234": "[{{number}}] Blessing III: Level your Speed Rune Blessing to 100 billion.", + "235": "[{{number}}] Spirit I: Level your Speed Spirit to 1 Million.", + "236": "[{{number}}] Spirit II: Level your Speed Spirit to 1 Billion.", + "237": "[{{number}}] Spirit III: Level your Speed Spirit to 1 Trillion.", + "238": "[{{number}}] Three-folded: [Hint: you may want to look into the inception]", + "239": "[{{number}}] Seeing red: [Hint: you may need a lot of red items]", + "240": "[{{number}}] ASCENDED: [Hint: you may need a LOT of Ascensions OR an particularly amazing Ascension]", + "241": "[{{number}}] Aesop: [Hint: you gotta be pretty dang slow]", + "242": "[{{number}}] Aesop's Revenge: [Hint: you gotta be pretty dang fast]", + "243": "[{{number}}] Unsmith: [Hint: unsmith emoji :unsmith: can be a pretty good input]", + "244": "[{{number}}] Smith: [Hint: :antismith: looks promising as well]", + "245": "[{{number}}] BLESSED: [Hint: Your Speed Blessing best be unreasonably high!]", + "246": "[{{number}}] Why? [Hint: Sometimes even 1 in over a Trillion counts!]", + "247": "[{{number}}] Challenging! [Hint: Challenge 11 is calling your name, but with even less Ants]", + "248": "[{{number}}] Seeing Red but not Blue: [Hint: Can you get red stuff without getting blue stuff?]", + "249": "[{{number}}] Overtaxed: [Hint: It might pay not to read!]", + "250": "[{{number}}] The Thousand Suns: [Hint: You need to fully research into becoming GOD]", + "251": "[{{number}}] The Thousand Moons: [Hint: You may need to cube yourself up]", + "252": "[{{number}}] Ultimate: Complete 'SADISTIC II' Challenge.", + "253": "[{{number}}] Platonicism: Clear an Ascension with 1e12 score.", + "254": "[{{number}}] That's a handful!: Clear an Ascension with 1e14 score.", + "255": "[{{number}}] The game where everything is made up: Clear an Ascension with 1e17 score.", + "256": "[{{number}}] ... and the points don't matter: Clear an Ascension with 2e18 score.", + "257": "[{{number}}] Arguably moral: Clear an Ascension with 4e19 score.", + "258": "[{{number}}] Khafra's Personal Best: Clear an Ascension with 1e21 score.", + "259": "[{{number}}] 100 million million million!: Clear an Ascension with 1e23 score.", + "260": "[{{number}}] Highly Dimensional Being: Ascend a total of 10 million times.", + "261": "[{{number}}] Ant God's upheaval: Ascend a total of 100 million times.", + "262": "[{{number}}] Did you forget about Ant God?: Ascend a total of 2 billion times.", + "263": "[{{number}}] Ant God is unemployed thanks to you: Ascend a total of 40 billion times.", + "264": "[{{number}}] I hope you're happy with yourself: Ascend a total of 800 billion times.", + "265": "[{{number}}] Oh well: Ascend a total of 16 trillion times.", + "266": "[{{number}}] Keep up the gradual numerical increase: Ascend a total of 100 trillion times.", + "267": "[{{number}}] Eigenvalued: Achieve a constant of 1e1,000.", + "268": "[{{number}}] Achieve Mathematics: Achieve a constant of 1e5,000.", + "269": "[{{number}}] Ramsay (5,5): Achieve a constant of 1e15,000.", + "270": "[{{number}}] What comes after this?: Achieve a constant of 1e50,000.", + "271": "[{{number}}] LARGE BOY: Achieve a constant of 1e100,000.", + "272": "[{{number}}] LARGER BOY: Achieve a constant of 1e300,000.", + "273": "[{{number}}] LARGEST BOY: Achieve a constant of 1e1,000,000.", + "274": "[{{number}}] Power Creep: Singularity 1 time.", + "275": "[{{number}}] Have you enough cubes?: Singularity 2 times.", + "276": "[{{number}}] Singularity: Singularity 3 times.", + "277": "[{{number}}] SingularRity: Singularity 4 times.", + "278": "[{{number}}] SiINguLaRrRity: Singularity 5 times.", + "279": "[{{number}}] SiIINGuLArRrIiTyY: Singularity 7 times.", + "280": "[{{number}}] Inception: Singularity 10 times." + }, + "rewards": { + "3": "Gain +.05% to Accelerator Power.", + "4": "Start Transcensions/Challenges with Worker Autobuyer unlocked.", + "5": "Gain +1 Accelerator per 500 Workers owned.", + "6": "Gain +1 Multiplier per 1,000 Workers owned.", + "7": "Gain +1 Accelerator Boost per 2,000 workers owned.", + "10": "Gain +.10% to Accelerator Power.", + "11": "Start Transcensions/Challenges with Investment Autobuyer unlocked.", + "12": "Gain +1 Accelerator per 500 Investments owned.", + "13": "Gain +1 Multiplier per 1,000 Investments owned.", + "14": "Gain +1 Accelerator Boost per 2,000 Investments owned.", + "17": "Gain +.15% to Accelerator Power.", + "18": "Start Transcensions/Challenges with Printer Autobuyer unlocked.", + "19": "Gain +1 Accelerator per 500 Printers owned.", + "20": "Gain +1 Multiplier per 1,000 Printers owned.", + "21": "Gain +1 Accelerator Boost per 2,000 Printers owned.", + "24": "Gain +.20% to Accelerator Power.", + "25": "Start Transcensions/Challenges with Coin Mint Autobuyer unlocked.", + "26": "Gain +1 Accelerator per 500 Mints owned.", + "27": "Gain +1 Multiplier per 1,000 Mints owned.", + "28": "Gain +1 Accelerator Boost per 2,000 Mints owned.", + "31": "Gain +.25% to Accelerator Power.", + "32": "Start Transcensions/Challenges with Alchemy Autobuyer unlocked.", + "33": "Gain 10% more Offerings from resets || +1 Accelerator per 500 Alchemies!", + "34": "Gain 15% more Offerings from resets (stacks multiplicatively!) || +1 Multiplier per 1,000 Alchemies!", + "35": "Gain 25% more Offerings from resets (stacks multiplicatively!) || +1 Accelerator Boost per 2,000 Alchemies!", + "36": "Multiply Crystal Production by 2x.", + "37": "Multiply Crystal Production by the common logarithm of owned Diamonds. Prestiges give more Offerings based on time spent (Up to +15 at 1800 seconds)", + "38": "Unlock the Duplication rune!", + "43": "Accelerator Boosts can be purchased from any screen. Unlock the Auto-Prestige feature.", + "44": "Unlock the Prism Rune! Transcensions give more Offerings based on time spent (Up to +15 at 1800 seconds)", + "45": "Reduce tax scaling by up to 5%, depending on the length of Prestige.", + "46": "Reduce tax scaling by up to another 5%, depending on length of Prestige.", + "47": "Reduce tax scaling by up to ANOTHER 10%, depending on length of Prestige!", + "50": "Unlock new Atomic production and unlock 3 new incredibly difficult Challenges! Gain 2x particles on all future Reincarnations!", + "51": "Manual Reincarnations give +4 Obtainium (unaffected by multipliers except time multiplier)!", + "52": "Reincarnations give more Offerings based on time spent (Up to +25 at 1800 seconds)", + "53": "Increase the amount of Obtainium gained through all features by 0.125% additive for each rune level.", + "57": "Gain +1, +1% free Multipliers!", + "58": "Gain +1, +1% more free Multipliers!", + "59": "Gain +1, +1% more, MORE free Multipliers!", + "60": "Gain +2, +1% free Accelerators!", + "61": "Gain +2, +1% more free Accelerators!", + "62": "Gain +2, +1% more, MORE free Accelerators!", + "71": "+1% Conversion Exponent on all generator upgrades!", + "72": "+1% Conversion Exponent on all generator upgrades!", + "73": "+1% Conversion Exponent on all generator upgrades!", + "74": "+1% Conversion Exponent on all generator upgrades!", + "75": "+1% Conversion Exponent on all generator upgrades!", + "76": "+1% Conversion Exponent on all generator upgrades!", + "77": "+1% Conversion Exponent on all generator upgrades! They're in overdrive now!", + "78": "Start Transcensions/Challenges with 1 Refinery and automatically buy Refineries.", + "79": "Automatically buy the first Crystal upgrade if you can afford it!", + "80": "Start Transcensions/Challenges with Multiplier Autobuyer unlocked. +5% Offering recycle.", + "82": "Delay tax growth by 4%.", + "84": "+1% Obtainium (stacks additively with other achievement rewards)", + "85": "Start Transcensions/Challenges with 1 Coal Plant and automatically buy Coal Plants.", + "86": "Automatically buy the second Crystal upgrade if you can afford it!", + "87": "Start Transcensions/Challenges with Accelerator Autobuyer unlocked. +5% Offering recycle.", + "89": "Delay tax growth by 4%.", + "91": "+3% Obtainium (stacks additively with other Achievement rewards)", + "92": "Start Transcensions/Challenges with 1 Coal Rig and automatically buy Coal Rigs.", + "93": "Automatically buy the third Crystal upgrade if you can afford it!", + "94": "+5% Offering recycle.", + "96": "Delay tax growth by 4%.", + "98": "+5% Obtainium (stacks additively with other achievement rewards)", + "99": "Start Transcensions/Challenges with 1 Diamond Pickaxe and automatically buy Diamond Pickaxes.", + "100": "Automatically buy the fourth Crystal upgrade if you can afford it!", + "101": "+5% Offering recycle.", + "102": "Unlock the Thrift rune!", + "103": "Delay tax growth by 4%.", + "105": "+7% Obtainium (stacks additively with other achievement rewards)", + "106": "Start Transcensions/Challenges with 1 Pandora's Box and automatically buy Pandora's Boxes.", + "107": "Automatically buy the fifth Crystal upgrade if you can afford it!", + "108": "+5% Offering recycle.", + "110": "Delay tax growth by 4%.", + "112": "+9% Obtainium (stacks additively with other achievement rewards)", + "115": "+5% Offering recycle.", + "117": "Delay tax growth by 5.66%.", + "118": "Each Reincarnation Challenge completion delays tax growth by 0.75% per level, multiplicative. Effect: {{x}}x", + "119": "+11% Obtainium. Unlock a nice trinket somewhere...", + "122": "+7.5% Offering recycle.", + "124": "Delay tax growth by 5.66%. Unlock 5 new incredibly powerful researches!", + "126": "+13% Obtainium. You get an accessory to commemorate this moment!", + "127": "Unlock 20 new incredibly expensive yet good researches. Unlock the [Anthill] feature!", + "128": "Make researches go Cost-- with 1.5x Obtainium!", + "129": "+7.5% Offering recycle. Gain another 1.25x Obtainium multiplier!", + "131": "Delay tax growth by 5.66%.", + "132": "Permanently gain +25% more sacrifice reward!", + "133": "+15% Obtainium. Obtain the gift of Midas himself.", + "134": "Unlock 10 newer incredibly expensive yet good researches. Unlock in the Runes Tab!", + "135": "Talisman positive bonuses are now +0.02 stronger per level.", + "136": "Talisman positive bonuses are now +0.02 even stronger per level.", + "137": "Permanently gain +25% more sacrifice reward!", + "140": "+17% Obtainium. Lazy joke about not leaking talismans here [You get a new one]", + "141": "Unlock a new reset tier!", + "147": "+19% Obtainium (Achievement total is up to 100%!). Gain the Polymath Talisman!", + "169": "ALL Ant speed multiplied by {{x}}", + "171": "+16.666% ALL Ant speed!", + "172": "Gain more Ants the longer your Reincarnation lasts (Max speed achieved in 2 hours)", + "173": "Unlock Ant Sacrifice, allowing you to reset your Ants and Ant upgrades in exchange for amazing rewards! Automatically buy Worker Ants.", + "174": "Ant Multiplier from sacrifice is multiplied by another logarithm: x{{x}}", + "176": "Unlock Tier 2 Ant autobuy, and autobuy Inceptus and Fortunae Ants! Add +25 Base Ant ELO.", + "177": "Unlock Tier 3 Ant autobuy, and autobuy Tributum Ants! Add +50 Base Ant ELO.", + "178": "Unlock Tier 4 Ant autobuy, and autobuy Celeritas and Multa Ants! Add +75 Base Ant ELO.", + "179": "Unlock Tier 5 Ant autobuy, and autobuy Sacrificium Ants! Add +100 Base Ant ELO.", + "180": "Unlock Tier 6 Ant autobuy, and autobuy Hic and Experientia Ants! Add +1% Base Ant ELO.", + "181": "Unlock Tier 7 Ant autobuy, and autobuy Praemoenio Ants! Add +2% Base Ant ELO.", + "182": "Unlock Tier 8 Ant autobuy, and autobuy Scientia and Phylacterium Ants! Add +3% Base Ant ELO.", + "187": "Gain an Ascension Count multiplier based on your score: x{{x}}. Also: Offerings +{{y}}% [Max: 100% at 1M Ascensions]", + "188": "Gain +100 Ascension count for all Ascensions longer than 10 seconds. Also: Obtainium +{{x}}% [Max: 100% at 5M Ascensions]", + "189": "Gain 20% of Excess time after 10 seconds each Ascension as a linear multiplier to Ascension count. Also: Cubes +{{x}}% [Max: 200% at 500M Ascensions]", + "193": "Gain {{x}}% more Cubes on Ascension!", + "195": "Gain {{x}}% more Cubes and Tesseracts on Ascension! Multiplicative with the other Ach. bonus [MAX: 25,000% at e100,000 Const]", + "196": "Gain {{x}}% more Platonic Cubes on Ascension! [MAX: 2,000% at e100,000 Const]", + "197": "You will unlock a stat tracker for Ascensions.", + "198": "Gain +4% Cubes on Ascension!", + "199": "Gain +4% Cubes on Ascension!", + "200": "Gain +4% Cubs on Ascension! Did I spell that wrong? You bet I did.", + "201": "Gain +3% Cubes on Ascension!", + "202": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count. Also: Tesseracts +{{x}}% [Max: 200% at 1B Ascensions]", + "204": "You will gain 25% of Excess time after 10 seconds each Ascension as a linear multiplier to rewards.", + "205": "Gain +4% Tesseracts on Ascension!", + "206": "Gain +4% Tesseracts on Ascension!", + "207": "Gain +4% Tesseracts on Ascension!", + "208": "Gain +3% Tesseracts on Ascension!", + "209": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count.", + "211": "You will gain 25% MORE Excess time (Total: 50%) after 10 seconds each Ascension as a linear multiplier to rewards.", + "212": "Gain +4% Hypercubes on Ascension!", + "213": "Gain +4% Hypercubes on Ascension!", + "214": "Gain +4% Hypercubes on Ascension!", + "215": "Gain +3% Hypercubes on Ascension!", + "216": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count. Also: Hypercubes +{{x}}% [Max: 200% at 2B Ascensions]", + "218": "You gain gain 50% MORE MORE excess time (Total: 100%) after 10 seconds each Ascension as a linear multiplier to rewards.", + "219": "Gain +4% Platonic Cubes on Ascension!", + "220": "Gain +4% Platonic Cubes on Ascension!", + "221": "Gain +4% Platonic Cubes on Ascension!", + "222": "Gain +3% Platonic Cubes on Ascension!", + "223": "Gain 20% of Excess time after 10 seconds each Ascensions as a linear multiplier to Ascension count. Also: Platonic Cubes +{{x}}% [Max: 200% at 2.674B Ascensions]", + "240": "Ascension Cube Gain Multipliers is VERY slightly affected by global speed multipliers: {{x}}x (Min: 1.10x, Max: 1.50x)", + "250": "You gain a permanent +60% Obtainium and Offering bonus, with +6% all Cube types!", + "251": "You gain a permanent +100% Obtainium and Offering bonus, with +10% all Cube types!", + "253": "You will gain +10% Hypercubes! Why? I don't know.", + "254": "Cube Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]", + "255": "Tesseract Gain +{{x}}% [Max: +15% at 1e25 Ascension Score], and allow gain of Hepteracts.", + "256": "Hypercube Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]. Also, Overflux Powder conversion rate is 5% better!", + "257": "Platonic Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]. Also, Overflux Powder conversion rate is 5% better!", + "258": "Hepteract Gain +{{x}}% [Max: +15% at 1e25 Ascension Score]", + "259": "Corruption score is increased by 1% for every expansion of Abyss Hepteract!", + "260": "You will gain 10% more Ascension count, forever!", + "261": "You will gain 10% more Ascension count, forever!", + "262": "Ascensions are {{x}}% faster! Max: +10%", + "263": "Ascensions are {{x}}% faster! Max: +10%", + "264": "Hepteracts +{{x}}% [Max: 40% at 8T Ascensions]!", + "265": "Hepteracts +{{x}}% [Max: 20% at 160T Ascensions]!", + "266": "Quarks +{{x}}% [Max: 10% at 1Qa Ascensions]!", + "267": "Ascension Score is boosted by {{x}}% [Max: 100% at 1e100,000 Const]", + "270": "Hepteract Gain is boosted by {{x}}% [Max: 100% at 1e1,000,000 const], Constant Upgrade 1 boosted to 1.06 (from 1.05), Constant Upgrade 2 boosted to 1.11 (from 1.10).", + "271": "When you open a Platonic Cube, gain {{x}} Hypercubes, rounded down [Max: 1 at 1e1,000,000 Const]" + }, + "alerts": { + "36": "Congratulations on your first Prestige. The first of many. You obtain Offerings. You can use them in the new Runes tab! [Unlocked Runes, Achievements, Diamond Buildings and some Upgrades!]", + "38": "Hmm, it seems you are getting richer, being able to get 1 Googol diamonds in a single Prestige. How about we give you another Rune? [Unlocked Duplication Rune in Runes tab!]", + "255": "Wow! You gained 1e17 (100 Quadrillion) score in a single Ascension. For that, you can now generate Hepteracts if you get above 1.66e17 (166.6 Quadrillion) score in an Ascension. Good luck!" + }, + "hover": "Hover over an achievement to view information.", + "totalPoints": "Achievement Points: {{x}}/{{y}} [{{z}}%]", + "rewardGainMessage": "Reward: {{x}} AP. {{y}} Quarks! {{z}}", + "completed": " COMPLETED!", + "notification": "You unlocked an achievement: {{m}}" + }, + "reset": { + "details": { + "prestige": "Coins, Coin Producers, Coin Upgrades, and Crystals are reset, but in return you gain diamonds and a few Offerings. Required: {{amount}}/1e16 Coins || TIME SPENT: {{timeSpent}} Seconds.", + "transcension": "Reset all Coin and Diamond Upgrades/Features, Crystal Upgrades & Producers, for Mythos/Offerings. Required: {{amount}}/1e100 Coins || TIME SPENT: {{timeSpent}} Seconds.", + "reincarnation": "Reset ALL previous reset tiers, but you will gain Particles, Obtainium and Offerings! Required: {{amount}}/1e300 Mythos Shards || TIME SPENT: {{timeSpent}} Seconds.", + "acceleratorBoost": "Reset Coin Producers/Upgrades, Crystals and Diamonds in order to increase the power of your Accelerators. Required: {{amount}}/{{required}} Diamonds.", + "transcensionChallenge": { + "in": "Are you tired of being in your Challenge or stuck? Click to leave Challenge {{n}}. Progress: {{amount}}/{{required}} Coins. TIME SPENT: {{timeSpent}} Seconds.", + "out": "You're not in a Transcension Challenge right now. Get in one before you can leave it, duh!" + }, + "reincarnationChallenge": { + "in": { + "coins": "Are you done or tired of being in your Challenge? Click to leave Challenge {{n}}. Progress: {{amount}}/{{required}} Coins. TIME SPENT: {{timeSpent}} Seconds.", + "transcendShards": "Are you done or tired of being in your Challenge? Click to leave Challenge {{n}}. Progress: {{amount}}/{{required}} Mythos Shards. TIME SPENT: {{timeSpent}} Seconds." + }, + "out": "You're not in a Reincarnation Challenge right now. How could you leave what you are not in?" + }, + "ascensionChallenge": "Click this if you're in an Ascension Challenge and want to leave. You get it already!", + "ascension": "Ascend, C-10 is required! +{{cubeAmount}} Wow! Cubes for doing it! Time: {{timeSpent}} Seconds. (Real-time {{realTimeSpent}} Seconds)", + "singularity": "Are you willing to give up your laurels for a greater Challenge? The Ant God bribes you with {{gqAmount}} Golden Quarks. Time: {{timeSpent}} Seconds." + } + }, + "ants": { + "upgrades": { + "1": "Promotes romance and unity within the colony. [+12% Ant Speed / level]", + "2": "Sweetens crumbs to increase their value [Each level increases Crumb --> Coin Conversion efficiency, up to ^50,000,000]", + "3": "Swarms the Taxman into submission [Up to -99.5% taxes!]", + "4": "Scares you into running faster [up to x20]", + "5": "Imitates your body through magic shape-shifting powers [up to x40]", + "6": "Tries to please Ant God... but fails [Additional Offerings!]", + "7": "Helps you build a few things here and there [+3% Building Cost Delay / level, Cap 9,999,999%]", + "8": "Knows how to salt and pepper food [Up to 1,000x Rune EXP!]", + "9": "Can make your message to Ant God a little more clear [+1 all Rune Levels / level, Cap 10 Million]", + "10": "Has big brain energy [Additional Obtainium!]", + "11": "A valuable offering to the Ant God [Gain up to 3x Sacrifice Rewards!]", + "12": "Betray Ant God increasing the fragility of your dimension [Unlocks ant talisman, Up to 2x faster timers on most things]" + }, + "descriptions": { + "1": "Gain a Worker Ant for your everyday life. Gathers Galactic Crumbs. Essential!", + "2": "Gain a Breeder Ant that produces Worker Ants automatically!", + "3": "Gain a Meta-breeder Ant that produces Breeder Ants automatically!", + "4": "Gain a Mega-breeder Ant that produces Meta-breeder Ants automatically!", + "5": "Gain a Queen Ant that produces Mega-breeder Ants automatically!", + "6": "Gain a Lord Royal Ant that produces Queen Ants automatically!", + "7": "Gain an ALMIGHTY ANT that produces Lord Royal Ants automatically!", + "8": "Gain a DISCIPLE OF ANT GOD that produces ALMIGHTY ANTS automatically!" + }, + "generates": { + "1": "Generates {{x}} Crumbs/sec", + "2": "Generates {{x}} Workers/sec", + "3": "Generates {{x}} Breeders/sec", + "4": "Generates {{x}} MetaBreeders/sec", + "5": "Generates {{x}} MegaBreeders/sec", + "6": "Generates {{x}} Queens/sec", + "7": "Generates {{x}} Royals/sec", + "8": "Generates {{x}} ALMIGHTIES/sec" + }, + "rewards": { + "1": "CURRENT EFFECT: ALL Ants work at {{x}}x speed.", + "2": "CURRENT EFFECT: Crumb --> Coin exponent is ^{{x}}", + "3": "CURRENT EFFECT: Tax growth is multiplied by {{x}}", + "4": "CURRENT EFFECT: Accelerator Boosts +{{x}}%", + "5": "CURRENT EFFECT: Multipliers +{{x}}%", + "6": "CURRENT EFFECT: Offerings x{{x}}", + "7": "CURRENT EFFECT: Building Costs scale {{x}}% slower!", + "8": "CURRENT EFFECT: Rune EXP is multiplied by {{x}}!", + "9": "CURRENT EFFECT: Each rune has +{{x}} effective levels.", + "10": "CURRENT EFFECT: Obtainium x{{x}}", + "11": "CURRENT EFFECT: Sacrificing is {{x}}x as effective", + "12": "CURRENT EFFECT: Global timer is sped up by a factor of {{x}}" + }, + "header": "The ants welcome you to their home.", + "hover": "Hover over the icons for description. Click icons to buy!", + "youHaveGalacticCrumbs": "You have {{x}} Galactic Crumbs [{{y}}/s], providing a {{z}} Coin Multiplier", + "owned": "Owned: {{x}} [+{{y}}]", + "costGalacticCrumbs": "Cost: {{x}} Galactic Crumbs", + "costParticles": "Cost: {{x}} Particles", + "autoSacrificeOn": "Auto Sacrifice: ON", + "autoSacrificeOff": "Auto Sacrifice: OFF", + "modeRealTime": "Mode: Real-time", + "modeInGameTime": "Mode: In-game time", + "sacrificeWhenTimer": "Sacrifice when the timer is at least {{x}} seconds ({{y}}), Currently: {{z}}", + "yourAntELO": "<> <> [{{y}} effective]", + "upgradeMultiplier": "Upgrade Multiplier: <>", + "timeMultiplier": "Time Multiplier: <>", + "resetAnthill": "Reset Anthill features for:", + "antSacMultiplier": "Ant Sacrifice Multiplier: {{y}}x --> <>", + "autoReset": "This resets your Crumbs, Ants and Ant Upgrades in exchange for some multiplier and resources. Continue?", + "elo": "+{{x}} [>{{y}} ELO]" + }, + "challenges": { + "1": { + "name": "No Multipliers Challenge || {{- value}} Completions", + "flavor": "Multipliers make the game a little too fast. Let's take them out!", + "restrictions": "Transcend and reach the goal except Multipliers do nothing but act like Accelerators, which are nerfed by 50%!", + "goal": "Goal: Gain {{value}} Coins in challenge.", + "per": { + "1": "+10 base Multiplier Boosts! [+0.05 to power!] Current: ", + "2": "+10% total Multiplier Boosts! Current: ", + "3": "+0.04 base Rune exp per Offering! Current: " + }, + "first": "+1 free Multiplier! +1 Base EXP per offering used!", + "start": "Start [No Multipliers]", + "current": { + "1": "+{{value}} Boosts", + "2": "+{{value}}% more Boosts", + "3": "+{{value}} Rune EXP [Highest Completion]" + } + }, + "2": { + "name": "No Accelerators Challenge || {{- value}} Completions", + "flavor": "Who needs accelerators? They do basically nothing now.", + "restrictions": "Transcend and reach the goal except Accelerators do nothing! Multipliers are nerfed a bit as well.", + "goal": "Goal: Gain {{value}} Coins in challenge.", + "per": { + "1": "+5 Free Accelerators! Current: ", + "2": "+5% Accelerator Boost Power! Current: ", + "3": "+0.25% Accelerator Power! Current: " + }, + "first": "+1 base offering for Prestige and Transcensions.", + "start": "Start [No Accelerators]", + "current": { + "1": "+{{value}} Accelerators", + "2": "+{{value}}% A.Boost Power", + "3": "+{{value}}% Accelerator Power" + } + }, + "3": { + "name": "No Shards Challenge || {{- value}} Completions", + "flavor": "Alright, now you're thinking, how else can I make the game harder?", + "restrictions": "Transcend and reach the goal except you do not produce Crystals or Mythos Shards.", + "goal": "Goal: Gain {{value}} Coins in challenge.", + "per": { + "1": "Crystal --> Coin conversion exponent +0.04! Current: ", + "2": "+0.5% to Grandmaster production per Mythos producer bought. Current: ", + "3": "When you use a rune, all other runes gain +0.01 EXP. Current: " + }, + "first": "Gain an offering automatically every 2 seconds!", + "start": "Start [No Shards]", + "current": { + "1": "Exponent +{{value}}", + "2": "+{{value}}%", + "3": "+{{value}} EXP" + } + }, + "4": { + "name": "Cost+ Challenge || {{- value}} Completions", + "flavor": "You're getting rich now, but inflation hasn't happened yet? I don't think so!", + "restrictions": "Transcend and reach the goal except Coin/Crystal producers, Accelerators and Multipliers cost more. [Gets harder each time!]", + "goal": "Goal: Gain {{value}} Coins in challenge.", + "per": { + "1": "Accelerator Cost scale slows down by +5 purchases. Current: ", + "2": "Multiplier Cost scale slows down by +2 purchases. Current: ", + "3": "Building Cost Delay +0.5%. Current: " + }, + "first": "None", + "start": "Start [Cost+]", + "current": { + "1": "Accelerator Delay +{{value}}", + "2": "Multiplier Delay +{{value}}", + "3": "Building Cost Delay +{{value}}%" + } + }, + "5": { + "name": "Reduced Diamonds Challenge || {{- value}} Completions", + "flavor": "You ever wonder how you get so many diamonds?", + "restrictions": "Transcend and reach the goal except you gain far fewer Diamonds from all sources [Gets harder each time!]", + "goal": "Goal: Gain {{value}} Coins in challenge.", + "per": { + "1": "+0.01 Coin --> Diamond conversion exponent on Prestige! Current: ", + "2": "Multiply Crystal production by 10! Current: ", + "3": " " + }, + "first": "None", + "start": "Start [Reduced Diamonds]", + "current": { + "1": "Exponent = ^{{value}}", + "2": "Crystal production x{{value}}", + "3": " " + } + }, + "6": { + "name": "Higher Tax Challenge || {{- value}} Completions", + "flavor": "The tax man caught wind that you reincarnated recently...", + "restrictions": "Reincarnate and reach the goal except tax has a lower cap, and Coin production is divided by 1e250.", + "goal": "Goal: Gain {{value}} Mythos Shards in challenge.", + "per": { + "1": "-3.5% Taxes [Multiplicative]! Current: ", + "2": "Thrift Rune Exp +10%! Current: ", + "3": "Prestige Offerings +2%! Current: " + }, + "first": "-7.5% Taxes!", + "start": "Start ", + "current": { + "1": "Tax multiplier x{{value}}", + "2": "EXP +{{value}}%", + "3": "+{{value}}% Prestige-based Offerings" + } + }, + "7": { + "name": "No Multipliers/Accelerators Challenge || {{- value}} Completions", + "flavor": "You're really going to hate this one.", + "restrictions": "Reincarnate and reach the goal except Accelerators and Multipliers do nothing. Coin Production is divided by 1e1,250.", + "goal": "Goal: Gain {{value}} Mythos Shards in challenge.", + "per": { + "1": "Accelerator/Multiplier boost power exponent +0.04! Current: ", + "2": "Speed Rune Exp +10%! Current: ", + "3": "Duplication Rune Exp +10%! Current: " + }, + "first": "Multiplier Boost power +25%! The first Discord-Booster Global Diamond Upgrade.", + "start": "Start ", + "current": { + "1": "Exponent = ^{{value}}", + "2": "EXP +{{value}}%", + "3": "EXP +{{value}}%" + } + }, + "8": { + "name": "Cost++ Challenge || {{- value}} Completions", + "flavor": "You thought you could outgrow inflation by Reincarnating?", + "restrictions": "Reincarnate and reach the goal except Cost Scaling for producers and Accelerators/Multipliers scale much, much faster.", + "goal": "Goal: Gain {{value}} Mythos Shards in challenge.", + "per": { + "1": "Base Building Power +0.25! Current: ", + "2": "Prism Rune Exp +20%! Current: ", + "3": "Transcend Offerings +4%! Current: " + }, + "first": "Unlock the Anthill feature! Includes 20 new Researches. A Global Diamond Upgrade.", + "start": "Start ", + "current": { + "1": "+{{value}}", + "2": "+{{value}}% EXP", + "3": "+{{value}}% Transcend-based offerings" + } + }, + "9": { + "name": "No Runes Challenge || {{- value}} Completions", + "flavor": "You'll never complain about Prism being bad again.", + "restrictions": "Reincarnate and reach the goal except runes always have level 1 effects. All coin production is divided by e2,000,000.", + "goal": "Goal: Gain {{value}} Coins in challenge.", + "per": { + "1": "+1 free Ant level! Current: ", + "2": "+10% Ant speed [Multiplicative!] Current: ", + "3": "SI Rune Exp +20%! Current: " + }, + "first": "Unlock the Talismans feature! [In Runes tab]. A Global Diamond Upgrade.", + "start": "Start ", + "current": { + "1": "+{{value}} free levels", + "2": "x{{value}} Ant Speed", + "3": "+{{value}}% EXP" + } + }, + "10": { + "name": "Sadistic Challenge I || {{- value}} Completions", + "flavor": "I'm sorry for what I've unleashed onto the world.", + "restrictions": "Reincarnate and reach the goal except run the first five challenges AT THE SAME TIME! Coin Production /e12,500,000.", + "goal": "Goal: Gain {{value}} Coins in challenge.", + "per": { + "1": "+100 base ELO for sacrificing ants! Current: ", + "2": "+2% Ant Sacrifice Reward! Current: ", + "3": "Reincarnation Offerings +10%! Current: " + }, + "first": "Unlock the Ascension Reset Tier!", + "start": "Start ", + "current": { + "1": "+{{value}} Ant ELO", + "2": "+{{value}}% Ant Sacrifice reward", + "3": "+{{value}}% Reincarnate-based offerings" + } + }, + "11": { + "name": "Reduced Ants Challenge || {{- value}} Completions", + "flavor": "The great Ant War of '21 wiped off all of the skilled ants.", + "restrictions": "Ascend and reach the goal but only get free ant upgrades and from Challenge8/9 completions. FOR ASCENSION CHALLENGES YOU MUST CLEAR CHALLENGE 10 TO ATTEMPT THEM.", + "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", + "per": { + "1": "+12 free Ant Levels! Current: ", + "2": "Ant Speed x(1e5)^completions! Current: ", + "3": "+80 to Rune Caps! Current: " + }, + "first": "Unlock 15 Researches, and unlock the ability to open Tesseracts! You also get to toggle Corruptions ;)", + "start": "Start <[(Reduced Ants)]>", + "current": { + "1": "+{{value}} free ant levels", + "2": "Ant Speed x{{value}}", + "3": "+{{value}} to Rune Caps" + } + }, + "12": { + "name": "No Reincarnation Challenge || {{- value}} Completions", + "flavor": "For some reason, you just can't do it.", + "restrictions": "Ascend and reach the goal but you do not gain Particles and you cannot Reincarnate at all! Ant production ^0.5.", + "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", + "per": { + "1": "+50% Obtainium! Current: ", + "2": "+12% Offerings! Current: ", + "3": "+1 Cube Tribute per opening! Current: " + }, + "first": "Unlock 15 Researches, and unlock the mystical Spirit Power! Find these in the Runes tab. Increase Corruption Cap by 2 levels. Finally, unlock two new corruptions! ;)", + "start": "Start <[(No Reincarnation)]>", + "current": { + "1": "+{{value}}% Obtainium", + "2": "+{{value}}% Offerings", + "3": "+{{value}} additional Cube Tributes" + } + }, + "13": { + "name": "Tax+++ Challenge || {{- value}} Completions", + "flavor": "Good luck with the IRS, buddy.", + "restrictions": "Ascend and reach the goal, but taxes are much higher and grow with challenge completions. Ant production ^0.23", + "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", + "per": { + "1": "Taxes -3.33%! Multiplicative! Current: ", + "2": "+6 maximum to Talisman Level Cap! Current: ", + "3": "+3% Spirit Power effectiveness! Current: " + }, + "first": "Unlock 15 Researches, and unlock the power of the Hypercube! Increase Corruption Cap by 2 levels, to 9! Finally, unlock two new corruptions! ;)", + "start": "Start <[(Tax+++)]>", + "current": { + "1": "+{{value}}% Corruption Tax", + "2": "+{{value}} Talisman Level Cap", + "3": "+{{value}}% Effectiveness" + } + }, + "14": { + "name": "No Research Challenge || {{- value}} Completions", + "flavor": "The dimension that never progressed past the dark ages. Many fear to even step foot.", + "restrictions": "Ascend and reach the goal but you do not gain Obtainium nor are any researches purchasable. Ant production ^0.2.", + "goal": "Goal: Complete Challenge 10 [Sadistic Challenge I] {{value}} times.", + "per": { + "1": "+50% stronger effect on researches 1x1 through 1x5. Current: ", + "2": "+1 research purchased per roomba tick! Current: ", + "3": "+200 to Rune Caps! Current: " + }, + "first": "Unlock 15 Researches, and a way to coalesce your power into the Singularity. Increase Corruption Cap by 2 levels, to 11! Finally, unlock two new corruptions! ;)", + "start": "Start <[(No Research)]>", + "current": { + "1": "+{{value}}% Power", + "2": "+{{value}} per Tick", + "3": "+{{value}} to Rune Caps" + } + }, + "15": { + "name": "SADISTIC CHALLENGE II || {{- value}} Completions", + "flavor": "The worst atrocity a man can commit is witnessing, without anguish, the suffering of others.", + "restrictions": "Ascend and reach the goal but you're stuck in all corruptions at level 11, and Ant production ^0.01.", + "goal": "Goal: {{value}} Coins, but get bonuses based on your best attempt.", + "per": { + "1": "Folly of mankind: ", + "2": "to believe they can defeat ", + "3": "what Ant God labored " + }, + "first": "You would break the universe if you could!", + "start": "Start <[(Sadistic Challenge II)]>", + "current": { + "1": " ", + "2": " ", + "3": " " + }, + "noGoal": "You will find no goal in sight, but get bonuses based on your best attempt." + }, + "header": "Is the base game too easy? Try these situations! [Click the icons to view challenge details!]", + "autoChallengeSweepOn": "Auto Challenge Sweep [ON]", + "autoChallengeSweepOff": "Auto Challenge Sweep [OFF]", + "retryChallengesOn": "Retry Challenges: ON", + "retryChallengesOff": "Retry Challenges: OFF", + "autoAscRunChalOn": "Auto Ascension Run Chal.{{x}} [ON]", + "autoAscRunChalOff": "Auto Ascension Run Chal.{{x}} [OFF]", + "autoRunChalOn": "Automatically Run Chal.{{x}} [ON]", + "autoRunChalOff": "Automatically Run Chal.{{x}} [OFF]", + "modeStart": "MODE: START", + "modeExit": "MODE: EXIT", + "modeWait": "MODE: WAIT", + "modeOff": "MODE: OFF", + "modeEnter": "MODE: ENTER", + "bonusFirstCompletion": "Bonus/Unlock for First Completion", + "timeStartSweep": "Time for start of sweep: <>/s", + "timeExitChallenge": "Time before exiting challenge: <>s", + "timeEnterChallenge": "Time before entering challenge: <>s", + "autoTimer": "<> <>", + "perCompletionBonus": "Per Completion Bonuses || <>", + "perCompletionBonusEmpty": "Per Completion Bonuses", + "hypercubeOneTimeBonus": "Gain 1 Wow! HYPERCUBE for completing this challenge (First Time Bonus)", + "ascensionBankAdd": "Completing the challenge adds {{x}} to Ascension Bank and increase base Score by {{y}}.", + "firstTimeBonus": "Gain {{x}} for completing this challenge [First Time Bonus]!", + "firstTimeBonusQuarks": "Gain {{x}} Quarks for completing this challenge [First Time Bonus]!" + }, + "cubes": { + "upgradeNames": { + "1": "Wow! I want more Cubes.", + "2": "Wow! I want passive Offering gain too.", + "3": "Wow! I want better passive Obtainium", + "4": "Wow! I want to keep mythos building autobuyers.", + "5": "Wow! I want to keep mythos upgrade autobuyer.", + "6": "Wow! I want to keep auto Mythos gain.", + "7": "Wow! I want the particle building automators.", + "8": "Wow! I want to automate Particle Upgrades.", + "9": "Wow! I want to automate researches better dangit.", + "10": "Wow! This is pretty good but expensive.", + "11": "Wow! I want more Cubes 2.", + "12": "Wow! I want building power to be useful 1.", + "13": "Wow! I want opened Cubes to give more tributes 1.", + "14": "Wow! I want Iris Tribute bonuses to scale better 1.", + "15": "Wow! I want Ares Tribute bonuses to scale better 1.", + "16": "Wow! I want more rune levels 1.", + "17": "Wow! I want just a little bit more Crystal power.", + "18": "Wow! I want to accelerate time!", + "19": "Wow! I want to unlock a couple more coin upgrades.", + "20": "Wow! I want to improve automatic rune tools.", + "21": "Wow! I want to hack in more score 1.", + "22": "Wow! I wish my Artemis was a little better 1", + "23": "Wow! I want opened Cubes to give more tributes 2.", + "24": "Wow! I want Plutus Tribute bonuses to scale better 1", + "25": "Wow! I want Moloch Tribute bonuses to scale better 1", + "26": "Wow! I want to start Ascensions with rune levels.", + "27": "Wow! I want to start Ascensions with one of each Reincarnation building.", + "28": "Wow! I want to finally render Reincarnating obsolete.", + "29": "Wow! I want to increase maximum Reincarnation Challenge completions.", + "30": "Wow! I want to arbitrarily increase my Cube and Tesseract gain.", + "31": "Wow! I want to hack in more score 2.", + "32": "Wow! I want runes to be easier to level up over time.", + "33": "Wow! I want opened Cubes to give more tributes 3.", + "34": "Wow! I want Chronos Tribute bonuses to scale better 1", + "35": "Wow! I want Aphrodite Tribute bonuses to scale better 1", + "36": "Wow! I want building power to be useful 2.", + "37": "Wow! I want more rune levels 2.", + "38": "Wow! I want more Tesseracts while corrupted!", + "39": "Wow! I want more score from Challenge 10 completions.", + "40": "Wow! I want Athena Tribute bonuses to scale better 1.", + "41": "Wow! I want to hack in more score 3.", + "42": "Wow! I want some Uncorruptable Obtainium.", + "43": "Wow! I want even more Uncorruptable Obtainium!", + "44": "Wow! I want Midas Tribute bonus to scale better 1.", + "45": "Wow! I want Hermes Tribute bonus to scale better 1.", + "46": "Wow! I want even MORE Offerings!", + "47": "Wow! I want even MORE Obtainium!", + "48": "Wow! I want to start ascension with an Ant.", + "49": "Wow! I want to start ascension with a Challenge 6-8 completion.", + "50": "Wow! I want to be enlightened by the power of a thousand suns.", + "51": "Wow! A pile of Chocolate Chip Cookies.", + "52": "Wow! A pile of Sugar Cookies.", + "53": "Wow! A pile of Butter Cookies.", + "54": "Wow! A pile of Vanilla Wafers.", + "55": "Wow! A pile of White Chocolate Cookies.", + "56": "Wow! A bag of Snickerdoodles.", + "57": "Wow! A bag of Macarons.", + "58": "Wow! A bag of Gingerbread Cookies.", + "59": "Wow! A bag of Lemon Cookies.", + "60": "Wow! A bag of Ginger Snaps.", + "61": "Wow! A tin of Whoopie Pies.", + "62": "Wow! A tin of Toffee Bars.", + "63": "Wow! A tin of Brownie Cookies.", + "64": "Wow! A tin of Fortune Cookies.", + "65": "Wow! A tin of Biscotti.", + "66": "Wow! A box of Mother's Favorite Cookies.", + "67": "Wow! A box of Metaphysical Brownies.", + "68": "Wow! A box of Not Cookies.", + "69": "Wow! A box of Cookies Beyond This World.", + "70": "Wow! A box of Perfect Cookies.", + "71": "Wow! A Singular Cookie of Pandora's Benefactory.", + "72": "Wow! A Singular Cookie of Vyshareth's Benefactory.", + "73": "Wow! A Singular Cookie of the Giant Steps.", + "74": "Wow! A Singular Cookie of the Lilliput Steps.", + "75": "Wow! A Singular Cookie of another reference.", + "76": "Wow! A Singular Cookie of the Blue Variety.", + "77": "Wow! A Singular Cookie of Tyche's Benefactory.", + "78": "Wow! A Singular Cookie of Derpsmith's Benefactory", + "79": "Wow! A Singular Cookie of the Corrupt Beyond", + "80": "Wow! A Singular Cookie of the Grandma at the end of the Universe." + }, + "upgradeDescriptions": { + "1": "[1x1] You got it! +16.666% 3D Cubes from Ascending per level.", + "2": "[1x2] Plutus grants you +1 Offering per second, no matter what, per level. Also a +0.5% Recycling chance!", + "3": "[1x3] Athena grants you +10% more Obtainium, and +80% Auto Obtainium per level.", + "4": "[1x4] You keep those 5 useful automation upgrades in the upgrades tab!", + "5": "[1x5] You keep the mythos upgrade automation upgrade in the upgrades tab!", + "6": "[1x6] You keep the automatic mythos gain upgrade in the upgrades tab!", + "7": "[1x7] Automatically buy each Particle Building whenever possible.", + "8": "[1x8] Automatically buy Particle Upgrades.", + "9": "[1x9] The research automator in shop now automatically buys cheapest when enabled. It's like a roomba kinda!", + "10": "[1x10] Unlock some tools to automate Ascensions or whatever. Kinda expensive but cool.", + "11": "[2x1] You got it again! +9.09% 3D Cubes from Ascending per level.", + "12": "[2x2] Raise building power to the power of (1 + level * 0.09).", + "13": "[2x3] For each 20 Cubes opened at once, you get 1 additional tribute at random.", + "14": "[2x4] Iris shines her light on you. The effect power is now increased by +0.01 (+0.005 if >1000 tributes) per level.", + "15": "[2x5] Ares teaches you the Art of War. The effect power is now increased by +0.01 (+0.0033 if >1000 tributes) per level.", + "16": "[2x6] You got it buster! +20 ALL max rune levels per level.", + "17": "[2x7] Yep. +5 Exponent per level to crystals.", + "18": "[2x8] Quantum tunnelling ftw. +20% global game speed.", + "19": "[2x9] Unlocks new coin upgrades ranging from start of Ascend to post c10 and beyond.", + "20": "[2x10] The rune automator in shop now spends all Offerings automatically, 'splitting' them into each of the 5 runes equally.", + "21": "[3x1] Perhaps score will benefit you more? Gain +5% more score on Ascensions per level.", + "22": "[3x2] The exponent of the bonus of Artemis is increased by 0.05 per level.", + "23": "[3x3] For each 20 Cubes opened at once, you get 1 additional tribute at random.", + "24": "[3x4] Plutus teaches you the Art of the Deal. The effect power is now increased by +0.01 (+0.0033 if >1000 tributes) per level.", + "25": "[3x5] Moloch lends you a hand in communicating with Ant God. The effect power is now increased by +0.01 (+0.0033 if >1000 tributes) per level.", + "26": "[3x6] Start Ascensions with 3 additional rune levels [Does not decrease EXP requirement] per level.", + "27": "[3x7] Upon an Ascension, you will start with 1 of each Reincarnation building to speed up Ascensions.", + "28": "[3x8] Well, I think you got it? Gain +1% of particles on Reincarnation per second.", + "29": "[3x9] Add +4 to Reincarnation Challenge cap per level. Completions after 25 scale faster in requirement!", + "30": "[3x10] You now get +40% Cubes and Tesseracts forever!", + "31": "[4x1] You again? +5% more score on Ascensions per level.", + "32": "[4x2] Gain +0.1% Rune EXP per second you have spent in an Ascension. This has no cap!", + "33": "[4x3] For each 20 Cubes opened at once, you get yet another additional tribute at random.", + "34": "[4x4] Chronos overclocks the universe for your personal benefit. (Rewards the same as others)", + "35": "[4x5] Aphrodite increases the fertility of your coins. (Rewards the same as others)", + "36": "[4x6] Raise building power to (1 + 0.05 * Level) once more.", + "37": "[4x7] Adds +20 to ALL rune caps again per level.", + "38": "[4x8] Gain +0.5% more Tesseracts on Ascension for each additional level in a corruption you enable.", + "39": "[4x9] Instead of the multiplier being 1.03^(C10 completions), it is now 1.035^(C10 completions)!", + "40": "[4x10] Athena is very smart (Rewards the same as others).", + "41": "[5x1] Yeah yeah yeah, +5% score on Ascension per level. Isn't it enough?", + "42": "[5x2] You now gain +4% Obtainium per level, which is not dependent on corruptions!", + "43": "[5x3] Gain another +3% corruption-independent Obtainium per level.", + "44": "[5x4] Blah blah blah Midas works harder (same rewards as before)", + "45": "[5x5] Blah blah blah Hermes works harder (same rewards as before)", + "46": "[5x6] Gain +5% more Offerings per level!", + "47": "[5x7] Gain +10% more Obtainium per level!", + "48": "[5x8] When you ascend, start with 1 worker Ant (this is a lot better than it sounds!)", + "49": "[5x9] When you ascend, gain 1 of each Challenge 6-8 completion.", + "50": "[5x10] What doesn't this boost? +0.01% Accelerators, Multipliers, Accelerator Boosts, +0.02% Obtainium, +0.02% Offerings, +0.04 Max Rune Levels, +1 Effective ELO, +0.0004 Talisman bonuses per level, 0.00066% Tax reduction per level.", + "51": "[Cx1] Wow! Bakery is open!!! Immediately unlock all automations in the cube tab, and researches as well.", + "52": "[Cx2] These sugar cookies sure boost your blood sugar. Gain +1% global speed per level.", + "53": "[Cx3] What a hearty snack. Gain +0.1% Quarks per level.", + "54": "[Cx4] Pretty dry, but they suffice. Increase Offering gain by 1% per level.", + "55": "[Cx5] An inventive take on the original chip cookie. Increase Obtainium gain by 1% per level.", + "56": "[Cx6] These are a little more exotic. Gain +1 more raw score from Challenge 1 completions per level.", + "57": "[Cx7] Yum yum! Now we're talking... or maybe not. Increase the cap of Cube Upgrades 1x1, 2x1, 3x1, 4x1, 5x1 by 1.", + "58": "[Cx8] A bit festive! If there is an event, All Cube gain is multiplied by 1.25.", + "59": "[Cx9] Quite sour for a cookie. But it increases your Ascension speed by 0.25% per level, so who is to complain?", + "60": "[Cx10] Wow! Bakery had extra ginger from their christmas sale. Reduce the cost of buying Golden Quarks by 0.003% per level.", + "61": "[Cx11] Edible but prone to mistakes. Adds 125 whole milliseconds to the tolerance of code 'time', and increases reward by +2% per level.", + "62": "[Cx12] Platonic loves toffee. Octuple Obtainium and Offering gain in Challenge 15.", + "63": "[Cx13] Brownie Cookies, the best of both worlds. Increase Regular Cube Gain by 1% based on owned Hepteracts (+3% per OOM).", + "64": "[Cx14] Some say the Ant God itself penned these fortunes. When you gain a statue from Platonic Cubes, you gain two instead.", + "65": "[Cx15] That's amore, but is quite a crumbful! Increase Ant efficiency by 0.4%. (Roughly every 200 Ants purchased doubles crumb production!)", + "66": "[Cx16] You just wish you could have one more cookie baked by her. Gain 2x all Cubes until you purchase OMEGA.", + "67": "[Cx17] What the hell are in these??? Anyway, Metaphysics Talisman level cap is increased by 1,337.", + "68": "[Cx18] What the heck! These aren't even cookies. +0.01% Quarks per level purchased of this upgrade. +5% more at level 1,000!", + "69": "[Cx19] Cookies that you'll never remember again. +12% Golden Quarks this Singularity.", + "70": "[Cx20] The pinnacle of baking. Nothing you'll eat will taste better than this. Gain +0.01% more Octeracts on Ascension if the average level of all corruptions is at a minimum of 14.", + "71": "[Cx21] For each talisman rarity upgrade, multiply Obtainium gain by 1.04", + "72": "[Cx22] For each talisman rarity upgrade, multiply Offering gain by 1.04", + "73": "[Cx23] Each level adds 1 bonus level to the Infinite Ascent rune!", + "74": "[Cx24] Add +0.30 to all Corruption Multiplier values.", + "75": "[Cx25] Each level adds +0.3% effectiveness to free Singularity-tier Upgrades per level! (additive with all other boosts)", + "76": "[Cx26] Each level adds <> for each time threshold you have reached!", + "77": "[Cx27] Each level adds <>!", + "78": "[Cx28] Each level adds +0.3% effectiveness to free Octeract-tier Upgrades per level!", + "79": "[Cx29] If your Red Bar fills up with this upgrade purchased, you gain <>, permanently! Stacks up to 5,000 times.", + "80": "[Cx30] You intercept a singular message: <>..." + }, + "cubeMetadata": { + "cost": "Cost: {{value1}} Wow! Cubes [+{{value2}} Levels]", + "level": "Level: {{value1}} / {{value2}}", + "maxLevel": "Cost: 0 Wow! Cubes. This upgrade is maxed! wow" + }, + "noCubesOpened": "OK. No cubes opened.", + "howManyCubesOpen": "How many cubes would you like to open? You have {{x}}! \nYou can input a percentage of cubes to open, for example: \"50%\" or \"100%\". \nYou can start the input with \"-\" (put in a negative value) to put in a value, that will be saved, which means you open all cubes except the specified number (also works with %).", + "validation": { + "notEnough": "You don't have enough cubes to open!", + "negative": "You can't open a negative amount of cubes.", + "invalidPercent": "You can't open {{x}}% of your cubes..." + } + }, + "calculate": { + "timePrompt": "How far in the future would you like to go into the future? Anything awaits when it is testing season.", + "timePromptError": "Hey! That's not a valid time!", + "offlineTimer": "You have {{value}} seconds of offline progress!", + "offlineEarnings": "While offline, the Idle Overlords earned:", + "quadraticImproperError": "This is not a quadratic equation!", + "quadraticDeterminantError": "Determinant was negative!", + "cubicSumNegativeError": "You cannot spend a negative amount!" + }, + "researches": { + "descriptions": { + "1": "[1x1] Increase the number of free Accelerators gained by 20% from all sources.", + "2": "[1x2] Increase the number of free Multipliers gained by 20% from all sources.", + "3": "[1x3] Increase the number of free Accelerator Boosts gained by 20% from all sources.", + "4": "[1x4] Increase most rune effects by 10%. (Excludes any recycle chance bonus)", + "5": "[1x5] Multiply the production of all Crystal producers by 1e4.", + "6": "[1x6] Gain +5% free Accelerators per level.", + "7": "[1x7] Gain +4% free Accelerators per level.", + "8": "[1x8] Gain +3% free Accelerators per level.", + "9": "[1x9] Gain +2% free Accelerators per level.", + "10": "[1x10] Gain +2% free Accelerators per level.", + "11": "[1x11] Gain +5% free Multipliers per level.", + "12": "[1x12] Gain +4% free Multipliers per level.", + "13": "[1x13] Gain +2.5% free Multipliers per level.", + "14": "[1x14] Gain +1.5% free Multipliers per level.", + "15": "[1x15] Gain +0.5% free Multipliers per level.", + "16": "[1x16] Gain +5% free Accelerator Boosts per level.", + "17": "[1x17] Gain +5% free Accelerator Boosts per level.", + "18": "[1x18] Gain +2 free Accelerator per Accelerator Boost.", + "19": "[1x19] Gain +2 free Accelerator per Accelerator Boost.", + "20": "[1x20] Gain +3 free Accelerator per Accelerator Boost!", + "21": "[1x21] Most rune effects are increased by 1% per level. (Excludes any recycle chance bonus)", + "22": "[1x22] Each Offering used increases Rune EXP by 0.6 per level.", + "23": "[1x23] Each Offering used increases Rune EXP by another 0.3 per level!", + "24": "[1x24] Prestige and Transcensions base Offering is increased by 0.2 per level.", + "25": "[1x25] Reincarnations base Offering is increased by 0.6 per level.", + "26": "[2x1] Multiply all Crystal producer production by 150% per level (Multiplicative).", + "27": "[2x2] Multiply all Crystal producer production by 150% per level (Multiplicative).", + "28": "[2x3] Coin Exponent is increased by 0.08 per level.", + "29": "[2x4] Coin Exponent is increased by another 0.08 per level.", + "30": "[2x5] Coin Exponent is increased by ANOTHER 0.04 per level.", + "31": "[2x6] Want to bake cookies instead? You can go offline for 4 additional hours per level (Base 72hr).", + "32": "[2x7] Want to bake a lot of cookies instead? Extend the offline maximum timer by another 4 hours per level!", + "33": "[2x8] Gain +11% more Multiplier Boosts from Mythos Shards per level.", + "34": "[2x9] Gain another +11% more Multiplier Boosts from Mythos Shards per level.", + "35": "[2x10] Gain ANOTHER +11% more Multiplier Boosts from Mythos Shards per level.", + "36": "[2x11] Building power scales 5% faster per level.", + "37": "[2x12] Building power scales 2.5% faster per level.", + "38": "[2x13] Building power scales 2.5% faster per level.", + "39": "[2x14] Building power affects Crystal production at a reduced rate.", + "40": "[2x15] Building power affects Mythos Shard production at a reduced rate.", + "41": "[2x16] Start Reincarnations with automatic A.Boosts unlocked. Note: this research doesn't affect earning achievements.", + "42": "[2x17] Start Reincarnations with automatic Generators unlocked.", + "43": "[2x18] Start Reincarnations with automatic C.Upgrades unlocked.", + "44": "[2x19] Start Reincarnations with automatic D.Upgrades unlocked.", + "45": "[2x20] Start Reincarnations with automatic Diamond production unlocked.", + "46": "[2x21] Unlock the ability to automatically Reincarnate!", + "47": "[2x22] Unlock Reincarnation upgrades 1-5. [Upgrades cost between 1 and 1,000 Particles]", + "48": "[2x23] Unlock Reincarnation upgrades 6-10. [Upgrades cost between 100,000 and 1e22 Particles]", + "49": "[2x24] Unlock Reincarnation upgrades 11-15. [Upgrades cost between 1e30 and 1e60 Particles]", + "50": "[2x25] Unlock Reincarnation upgrades 16-20. [You might want to wait until Challenge 8 is doable!]", + "51": "[3x1] Taxation scales 5.0% slower per level. [Up to -50%]", + "52": "[3x2] Taxation scales 2.5% slower per level. [Up to -75%]", + "53": "[3x3] Taxation scales 1.25% slower per level. [Up to -87.5%]", + "54": "[3x4] Taxation scales 0.625% slower per level. [Up to -93.75%]", + "55": "[3x5] Taxation scales 0.3125% slower per level. [Up to -96.875%]", + "56": "[3x6] Building Cost Scale is delayed by 0.5% per level.", + "57": "[3x7] Building Cost Scale is delayed by 0.5% per level.", + "58": "[3x8] Building Cost Scale is delayed by 0.5% per level.", + "59": "[3x9] Building Cost Scale is delayed by 0.5% per level.", + "60": "[3x10] Building Cost Scale is delayed by 0.5% per level.", + "61": "[3x11] Gain +50% of your best Obtainium per second AUTOMATICALLY!", + "62": "[3x12] Gain an additional +10% of your best Obtainium per second automatically.", + "63": "[3x13] If your Reincarnation lasts at least 2 seconds you gain +1 Obtainium per level.", + "64": "[3x14] If your Reincarnation lasts at least 5 seconds you gain +2 Obtainium per level.", + "65": "[3x15] Increase the rate of gaining Obtainium through Reincarnations by 20% per level.", + "66": "[3x16] Increase the maximum number of [No Multipliers] completions by 5 per level.", + "67": "[3x17] Increase the maximum number of [No Accelerators] completions by 5 per level.", + "68": "[3x18] Increase the maximum number of [No Shards] completions by 5 per level.", + "69": "[3x19] Increase the maximum number of [Cost+] completions by 5 per level.", + "70": "[3x20] Increase the maximum number of [Reduced Diamonds] completions by 5 per level.", + "71": "[3x21] Automatically gain completions for Challenge 1 while running a Reincarnation Challenge", + "72": "[3x22] Automatically gain completions for Challenge 2 while running a Reincarnation Challenge", + "73": "[3x23] Automatically gain completions for Challenge 3 while running a Reincarnation Challenge", + "74": "[3x24] Automatically gain completions for Challenge 4 while running a Reincarnation Challenge", + "75": "[3x25] Automatically gain completions for Challenge 5 while running a Reincarnation Challenge", + "76": "[4x1] Welcome to the land of expensive researches. Here's +10% Obtainium per level to help you out!", + "77": "[4x2] Increase the level cap of Thrift rune by 10 per level, and +2% EXP for that rune in particular.", + "78": "[4x3] Increase the level cap of Speed rune by 10 per level, and +2% EXP for that rune in particular.", + "79": "[4x4] Increase the level cap of Prism rune by 10 per level, and +2% EXP for that rune in particular.", + "80": "[4x5] Increase the level cap of Duplication rune by 10 per level, and +2% EXP for that rune in particular.", + "81": "[4x6] You thought the previous researches are expensive? You're going to need this! [+10% Obtainium/level]", + "82": "[4x7] Permanently UNLOCK the Rune of Superior Intellect! [+%Ob / +Ant Speed / +Base Offerings.]", + "83": "[4x8] Taking forever to level up that SI Rune? Here's +5% SI Rune EXP per level.", + "84": "[4x9] Does the new rune kinda suck? Power it up! +0.5% level effectiveness for SI rune per level!", + "85": "[4x10] Gain +0.01% more Offerings per level per Challenge completion!", + "86": "[4x11] Yeah, going back to basics. +5% Accelerators/Level.", + "87": "[4x12] 0/5 Multipliers SUCK: +5% Multipliers/Level.", + "88": "[4x13] -1/5 A.Boosts SUCK: +5% Accelerator Boosts/Level.", + "89": "[4x14] -5/5 MULTIPLIERS STILL SUCK: +20% Multiplier Boosts/Level", + "90": "[4x15] Runes don't suck at all, but why not make them even BETTER? +1% Rune Effectiveness/level!", + "91": "[4x16] A simple +5% Rune EXP for all runes!", + "92": "[4x17] Another simple +5% Rune EXP for all runes!", + "93": "[4x18] +1 Accelerator Boost per 20 Summative Rune Levels, per level.", + "94": "[4x19] +20 Multiplier per 8 Summative Rune Levels, per level.", + "95": "[4x20] Gain +4 base Offerings from Reincarnations by purchasing this. Math Nerds will love this!", + "96": "[4x21] Ants slow? Add +0.0002 to Ant efficiency increase per Ant purchased per level.", + "97": "[4x22] Add +4 level to the first six upgradable Ants per level!", + "98": "[4x23] Add +4 level to the next five upgradable Ants per level!", + "99": "[4x24] Is the Quark Shop too hot to resist? Get +1 Quark per hour from Exporting for each level!", + "100": "[4x25] Alright, Platonic is off his rocker. I don't expect you to get this but this will give +1 MORE Quark per hour from Exporting for each level!", + "101": "[5x1] Alright, you're past the big wall. How about adding +.001 to Inceptus Ant efficiency per level?", + "102": "[5x2] Gain +1 bonus level to ALL Ants per level! A rainbow attack!", + "103": "[5x3] Pray to Ant God for +5% sacrifice rewards per level!", + "104": "[5x4] You're beginning to feel like an Ant God (Ant God): +5% sacrifice reward per level!", + "105": "[5x5] Buy this and be able to run the first five Challenges 9,001 times! (Note that requirements scale a LOT faster after 75, and again after 1,000)", + "106": "[5x6] Engrave your talismans with Obtainium to get +0.03 Rune Levels per talisman level per level.", + "107": "[5x7] Refine your talismans with the powder of Obtainium to get +0.03 Rune Levels per talisman level per level again.", + "108": "[5x8] A simple trick makes your base Ant ELO increase by 25 per level!", + "109": "[5x9] A more convoluted trick makes your base Ant ELO increase by 25 per level again!", + "110": "[5x10] Gain +1% more ELO from Ant sources per level because why not?", + "111": "[5x11] Gotta go fast [+10 max Speed Rune Level per level, +1% EXP to that rune]", + "112": "[5x12] Double Trouble [+10 max Duplication Rune level per level, +1% EXP to that rune]", + "113": "[5x13] Newton's Delight [+10 max Prism Rune Level per level, +1% EXP to that rune]", + "114": "[5x14] Five-Finger discounts [+10 max Thrift Rune Level per level, +1% EXP to that rune]", + "115": "[5x15] Scientific Breakthrough [+10 max SI Rune Level per level +1% EXP to that rune]", + "116": "[5x16] Talismans have +0.015 Rune levels per talisman level per level. Levelception!", + "117": "[5x17] Talismans have another +0.015 Rune levels per talisman level per level!", + "118": "[5x18] For 'neutral' talisman effects, increase by +0.06 per level!", + "119": "[5x19] Gain +0.25% Wow! Cubes per level upon Ascension.", + "120": "[5x20] Gain another +0.25% Wow! Cubes per level upon Ascension.", + "121": "[5x21] Bend time to your will, making all ticks 2% faster each level.", + "122": "[5x22] Adds +2% Ant sacrifice reward per level.", + "123": "[5x23] Adds +40 base Ant ELO per level.", + "124": "[5x24] Unlock the automator for Ant Sacrifice! [Good luck buying this.]", + "125": "[5x25] Good luck, buddy. [+1 Export Quark/hour per level]", + "126": "[6x1] 6 rows? That can't be... You've angered Ant God (+1% Accelerators / level)", + "127": "[6x2] Ant God gets angrier (+1% Accelerator Boosts / level)", + "128": "[6x3] Ant God cannot believe your bravery (+1% Multipliers / level)", + "129": "[6x4] Add +1 extra level to Crystal upgrade caps multiplied by Level * Log4(Common Fragments + 1)", + "130": "[6x5] Unlock automation for Fortifying talismans! Activates every 2 real life seconds.", + "131": "[6x6] Turn some Ant Disciples against Ant God, giving +0.5% Rune Effectiveness per level.", + "132": "[6x7] Recruit a couple other Ants towards your side as well, giving +2 free Ant levels per level.", + "133": "[6x8] Using some coalesced Obtainium, you can make Ant Sacrifice 3% better per level.", + "134": "[6x9 lol] The funny number. Gain a +6.9% bonus to Blessing level.", + "135": "[6x10] Unlock automation for Enhancing talismans! Activates every 2 real life seconds.", + "136": "[6x11] It may be time to look back. Makes all ticks 1.5% faster each level.", + "137": "[6x12] Paying off Wow! Industries, they'll sponsor +1% Cubes per level towards your Ascension bank.", + "138": "[6x13] When you open Wow! Cubes you will get +0.1% tributes per level!", + "139": "[6x14] Make all Tesseract buildings produce 2% faster per level.", + "140": "[6x15] The first of a Tetralogy, this tome reduces the base requirements of Challenge 10 by dividing it by 1e100M! A must-read!", + "141": "[6x16] The Ant God has infiltrated your mind. Run away from your conscience! (+0.8% Accelerators / level)", + "142": "[6x17] Run... RUN FASTER from your nightmares! (+0.8% Accelerator Boosts / level)", + "143": "[6x18] Your resilience somehow gives you +0.8% Multipliers / level!", + "144": "[6x19] Your Obtainium gain is increased by 3 * Log4(Uncommon Fragments + 1) * level%! Why is this? I don't know.", + "145": "[6x20] Your knowledge from the ant war will help you automatically gain Mortuus Est Ant levels.", + "146": "[6x21] Feed your Disciples pure Obtainium to make your runes +0.4% more effective per level.", + "147": "[6x22] Feed your Ants their own crumbs to make them Log(Crumbs + 10)x faster!", + "148": "[6x23] Increase your base Ant ELO by 2.5% per level!", + "149": "[6x24] You will gain +0.03% more Offerings per level per level in the Midas Talisman!", + "150": "[6x25] Auto Challenge. Enough said. (Lets you automatically run and complete Challenges!)", + "151": "[7x1] A new row, old upgrade. Makes all ticks 1.2% faster each level.", + "152": "[7x2] Wow! Industries sponsors another +0.9% Cubes per level towards your Ascension bank!", + "153": "[7x3] Hey, I totally didn't steal this idea. You gain 12 tributes of Wow! Cube tier for every Tesseract opened.", + "154": "[7x4] Make all Tesseract buildings produce 3% faster per level. Hey, isn't that more than the last research tier?", + "155": "[7x5] Tome 2 of 4: How to win over the Ant universe. Another e100M Divider to Challenge 10 Base Requirement on purchase.", + "156": "[7x6] What, again? Alright. +0.6% Accelerators / level.", + "157": "[7x7] Gas, gas, gas. +0.6% Accelerator Boosts / level.", + "158": "[7x8] Dupe DUPE DUPE. +0.6% Multipliers / level.", + "159": "[7x9] Somehow, I can't explain why, you reduce your taxes by 2% multiplicative, based on 3/5 * log10(Rare Fragments)!", + "160": "[7x10] Want a permanent Blessing boost? I know you do. A permanent +25% effect to all Blessings.", + "161": "[7x11] SIGMA KAPPA: +0.3% Rune Effectiveness each level!", + "162": "[7x12] More exponentiation! +0.0001% more Inceptus power per level!", + "163": "[7x13] Ant God's wanting blood: +2% Ant Sacrifice rewards / level", + "164": "[7x14] Spirit power still sucks, so add +8% power per level!", + "165": "[7x15] Gain 2x the Spirit buffs in Ascension Challenges!", + "166": "[7x16] < T I M E >: +0.9% faster ticks / level ", + "167": "[7x17] Because of sponsorships, Wow! Industries is raising Cubes gained in Ascension by 0.8% per level.", + "168": "[7x18] Gain +0.08% tributes from Cubes per level. You know, you should expect it at this point.", + "169": "[7x19] +4% faster Tesseract Buildings / level. It's GROWING.", + "170": "[7x20] Tome 3 of 4: How to totally ROCK Challenge 10. e100m divisor!", + "171": "[7x21] You should know how this goes. +0.4% Accelerators / level", + "172": "[7x22] Accelerator Boosts += 0.004 * Accelerator Boosts", + "173": "[7x23] A lot of a small +0.4% Multipliers per level", + "174": "[7x24] Epic Fragments boost Blessing power by 10% * Log10(Epic Shards + 1)", + "175": "[7x25] Automatically buy Constant Upgrades, if they are affordable! They also no longer subtract from your constant.", + "176": "[8x1] Row 8 baby! +0.2% Rune Effectiveness / level.", + "177": "[8x2] +Log10(Crumbs)% to Ant production per level. Pretty cool buff ain't it?", + "178": "[8x3] +666 Base ELO per level! Spooky number of the devil.", + "179": "[8x4] +0.04% more Offerings per level per midas level!", + "180": "[8x5] +1 Export Quark per hour per level, yet again.", + "181": "[8x6] +0.6% faster ticks / level because why not? You're already the speed of light.", + "182": "[8x7] +0.7% Cubes in Ascension bank / level, from dividends in Wow! Stock.", + "183": "[8x8] When you open a Hypercube, you also open 100 Tesseracts! (This works with 7x3, if you were curious.)", + "184": "[8x9] +5% faster Tesseract Buildings / level. ASCENDED.", + "185": "[8x10] Tome 4 of 4: You need to prepare for your Ascent. e100m divisor!", + "186": "[8x11] Something something +0.2% Accelerators pretty cool!", + "187": "[8x12] Something somewhere, +0.2% Accelerator Boosts!", + "188": "[8x13] You are DUPLICATED. +0.2% Multipliers/level", + "189": "[8x14] Legendary Fragments increase Spirit powers by +15% multiplied by Log10(Legendary Fragments + 1)", + "190": "[8x15] Unlock Automations for all 5 of the Tesseract buildings.", + "191": "[8x16] +0.1% Rune Effectiveness / level. Does this even do anything at this point?", + "192": "[8x17] Each purchased level of Mortuus Est also increases Ascension Cube reward by +0.03%", + "193": "[8x18] +1% Ant Sacrifice Reward per level. Singularity HYPE.", + "194": "[8x19] Increases both Spirit AND Blessing power by 2% per level.", + "195": "[8x20] Gain +1 export Quark per level, and increases the max timer to redeem Quarks by 5 hours each!", + "196": "[8x21] +0.3% faster ticks / level, because you just can't wait to become the Singularity.", + "197": "[8x22] +0.6% Cubes in Ascension Bank / level. No one knows how. Bank error perhaps.", + "198": "[8x23] +0.06% tributes from Cubes / level!. Wow! Cubes really has a lot of manufacturing errors in your favor.", + "199": "[8x24] +10% faster Tesseract Buildings / level. THE ARISEN. WITH THE PRAISE OF THE SINGULARITY.", + "200": "[8x25] Gain the power of a thousand suns! +0.01% Accelerators, A. Boosts, Multipliers, Offerings, and +0.004% Cubes, +0.04 Max Rune level, +(level/400) max Talisman Level, +(level/200) free Ants, 0.000666% Tax reduction per level." + }, + "thanksToResearches": "Thanks to researches you automatically gain {{x}} Obtainium per real life second.", + "level": "Level {{x}}/{{y}}", + "maxed": " || MAXED!", + "cost": "Cost: {{x}} Obtainium [+{{y}} Levels]", + "upgradeMax": "Upgrade: MAX [if possible]", + "upgradeOne": "Upgrade: 1 Level", + "automaticOn": "Automatic: ON", + "automaticOff": "Automatic: OFF", + "autoModeCheapest": "Automatic mode: Cheapest", + "autoModeManual": "Automatic mode: Manual", + "hoverToBuyOn": "Hover-to-Buy [ON]", + "hoverToBuyOff": "Hover-to-Buy [OFF]", + "hover": "Hover over the grid to get details about researches!" + }, + "shop": { + "upgradeDescriptions": { + "offeringPotion": "Instantly gain 2 real life hours of Offerings, based on your all time best Offerings/sec and speed acceleration!", + "obtainiumPotion": "Instantly gain 2 real life hours of Obtainium, based on your all time best Obtainium/sec and speed acceleration!", + "offeringEX": "Gain +4% more Offerings from all sources!", + "offeringAuto": "Automatically pour Offerings into a rune. 1st level unlocks feature, and each level increases Offering gain by 2%. Every second, 2^(Level) Offerings are spent.", + "obtainiumEX": "Gain +4% more Obtainium from all sources!", + "obtainiumAuto": "Automatically pour Obtainium into a research. 1st level unlocks feature, and each level increases Obtainium gain by 2%. Every Reincarnation, dump all Obtainium into research until maxed.", + "instantChallenge": "T and R Challenges don't cause resets if retry is enabled and gain up to 10 completions per tick. Additionally, instantly gain T Challenge completions up to highest completed when exiting R Challenges.", + "antSpeed": "Each level gives a 1.2x speed multiplier to all Ant tiers' production! (Uncorruptable!) Short and simple.", + "cashGrab": "This is a cash grab but it gives a couple cool stats. +1% production per level to Offerings and Obtainium.", + "shopTalisman": "Permanently unlock a Shop talisman!", + "seasonPass": "Wow! Cubes is giving you a deal: Buy this totally fair Season Pass and gain +2.25% Cubes and Tesseracts per level when you Ascend!", + "challengeExtension": "Using some amazing trick, you manage to increase your Reincarnation Challenge cap by 2 for each level!", + "challengeTome": "The extended cut: This fifth forgotten tome gives you an additional 20 Million exponent reduction on the Challenge 10 requirement per level. Past 60 completions of Challenge 9 or 10, this will also reduce the scaling factor by 1% per level.", + "cubeToQuark": "Are your Quark gains from Cubes wimpy? Well, buy this for +50% Quarks from opening Wow! Cubes, forever!", + "tesseractToQuark": "Are your Quark gains from Tesseracts wimpy? Well, buy this for +50% Quarks from opening Wow! Tesseracts, forever!", + "hypercubeToQuark": "Are your Quark gains from Hypercubes wimpy? Well, buy this for +50% Quarks from opening Wow! Hypercubes, forever!", + "seasonPass2": "Five times the price gouge, twice the fun! +1.5% Wow! Hypercubes and Platonic Cubes per level.", + "seasonPass3": "Okay, now this is just ridiculous. +1.5% Wow! Hepteracts and Octeracts per level!", + "chronometer": "You know, those Ascensions are kinda slow. Why don't I give you a +1.2% speedup to the timer per level?", + "infiniteAscent": "Okay, for an exorbitant amount, you can obtain the 6th rune, which gives +35% Quarks and +125% all Cube types when maxed!", + "calculator": "The PL-AT can do addition in the blink of an eye. Not much else though. +14% Quarks from using code 'add' per level, the first level provides the answer and the final level does it automatically!", + "calculator2": "The PL-AT X has improved memory capacity, allowing you to store 2 additional uses to code 'add' per level. Final level makes 'add' give 25% more Quarks!", + "calculator3": "The PL-AT Ω is infused with some Unobtainium, which is epic! But furthermore, it reduces the variance of Quarks by code 'add' by 10% per level, which makes you more likely to get the maximum multiplier. It also has the ability to give +60 seconds to Ascension Timer per level using that code.", + "calculator4": "The PL-AT δ runs at 4,096Hz, which is a huge improvement over previous models. Add attempts refill 4% faster per level! Final level adds 32 additional capacity!", + "calculator5": "The PL-AT Γ model somehow performs more 'powerful' computations, whatever that means. +6 seconds of GQ Export timer per level. +1 capacity every 10 levels, with 6 more at final level!", + "calculator6": "The PL-AT _ model was made by Derpsmith, before he was banished from the industry forever. Gain 1 second of Octeract per usage per level. Final level grants 24 additional capacity!", + "calculator7": "The PL-AT ΩΩ model was made by Derpsmith Ω, before he was banished from the industry forever. Gain 1 second of Blueberry Time per usage per level. Final level grants 48 additional capacity!", + "constantEX": "The merchant has one last trick up its sleeve: It can augment your second constant upgrade to be marginally better, but it'll cost an arm and a leg! Instead of the cap being 10% (or 11% with achievements) it will be raised by 1% per level.", + "powderEX": "Platonic himself gives you 2% better conversion rate on Overflux Orbs to Powder per level. This activates when Orbs expire.", + "chronometer2": "Okay, fine. Here's another +0.6% Ascension Speed per level, stacks multiplicatively with the first upgrade!", + "chronometer3": "OKAY. FINE. Here's yet ANOTHER +1.5% Ascension Speed per level, stacking multiplicatively like always.", + "seasonPassY": "This is even more insane than the last one, but you'll buy it anyway. +0.75% ALL Cubes per level.", + "seasonPassZ": "This one is arguably very good. Gain +1% ALL Cubes per level, per Singularity!", + "challengeTome2": "You find the final pages of the lost tome. It functionally acts the same as the rest of the pages, but you can have up to five more!", + "instantChallenge2": "Completing an Ascension Challenge doesn't cause a reset (if retry is enabled) and you gain 1 more completion per tick per Singularity.", + "cubeToQuarkAll": "First up on the menu, why not gain +0.2% Quarks from Cube opening per level?", + "cashGrab2": "This isn't even as good as the original. +0.5% Offerings and Obtainium per level.", + "chronometerZ": "Gain +0.1% Ascension Speed per level per Singularity. It needs a lot of fuel to power up.", + "offeringEX2": "Gain +1% Offerings per level per Singularity. Putting the Singularity Debuff industry out of business.", + "powderAuto": "Your grandparents had to wait a full day for powder, but not you! Per level gain +1% of orbs to powder based on the conversion rate.", + "seasonPassLost": "One would be advised not to touch this. +0.1% Octeracts per level, whatever those are...", + "challenge15Auto": "Your grandparents had to bend dimensions to gain Challenge 15 score, but not you! Updates Challenge 15 Exponent every tick while in challenge 15!", + "extraWarp": "\"Hey dude, get in this portal I built up last night in my shed!\" said the Quack Merchant", + "autoWarp": "With the power of Quacks Warp machine will now be able to go into overdrive", + "improveQuarkHept": "Did you know that after 1,000 Quark Hepteracts, their effect is raised to ^0.5? The Seal disapproves. Gain +2% to the diminishing return exponent.", + "improveQuarkHept2": "After 1,024,000 Quark Hepts, their effect is raised to ^0.25!!! Nonsense. Gain +2% to all Quark Hept DRs.", + "improveQuarkHept3": "After ~100 million Quark Hepts, their effect is raised to ^0.16! Absolute rubbish. Gain +2% to all Quark Hept DRs, yet again.", + "improveQuarkHept4": "And when they've given you their all, some stagger and fall after all it's not easy...", + "shopImprovedDaily": "Hey you. Yeah, you! Quarks make seal merchant happy. Get +5% more of them from code 'daily' per level.", + "shopImprovedDaily2": "Gain 1 additional free Singularity Upgrade and 20% more Golden Quarks per use of 'daily' per level!", + "shopImprovedDaily3": "Gain 1 additional free Singularity Upgrade and 15% more Golden Quarks per use of 'daily' per level!", + "shopImprovedDaily4": "Gain 1 additional free Singularity Upgrade and 100% more Golden Quarks per use of 'daily' per level!", + "offeringEX3": "Gain 2% more Offerings per level, multiplicative! (Multiplier is 1.02^level)", + "obtainiumEX3": "Gain 2% more Obtainium per level, multiplicative! (Multiplier is 1.02^level)", + "chronometerInfinity": "Gain +1% Ascension Speed per level, multiplicative! (Multiplier is 1.01^level)", + "seasonPassInfinity": "Gain +2% more cubes per level, multiplicative! (Multiplier is 1.02^level)", + "shopSingularityPenaltyDebuff": "Derpsmith was so proud of your performance in the first EXALT that he wants to make your singularity debuffs weaker. At a cost. A big cost.", + "obtainiumEX2": "Gain +1% Obtainium per level per Singularity!!!", + "improveQuarkHept5": "This is 1/50 as effective as a normal improver. Why? Because of balancing...", + "shopAmbrosiaGeneration1": "Buying this charm grants +1% faster Blueberry Time generation per level, for more Ambrosia! Don't know what that means? You soon will.", + "shopAmbrosiaGeneration2": "Newly fortified Obtainium Dust makes your charm more powerful, giving +1% faster Blueberry Time generation per level, stacking multiplicatively.", + "shopAmbrosiaGeneration3": "It turns out adding more Obtainium Dust makes your charm more powerful, go figure. +1% faster Blueberry Time generation per level, stacking multiplicatively.", + "shopAmbrosiaGeneration4": "What if you also added Quark Dust??? You will find out. +0.1% faster Blueberry Time generation per level, stacking multiplicatively.", + "shopAmbrosiaLuck1": "Buying this charm grants +2 ☘ Ambrosia luck per level, for more Ambrosia! Don't know what that means? You soon will.", + "shopAmbrosiaLuck2": "You get a slightly larger four leaf clover, giving +2 ☘ Ambrosia luck per level, stacking additively.", + "shopAmbrosiaLuck3": "You get a slightly greener four leaf clover, giving +2 ☘ Ambrosia luck per level, stacking additively.", + "shopAmbrosiaLuck4": "You get a slightly 'better' four leaf clover, what ever that means, giving +0.6 ☘ Ambrosia luck per level, stacking additively.", + "shopAmbrosiaLuckMultiplier4": "Gain ☘ +1% Ambrosia Luck per level! Simple as that.", + "shopOcteractAmbrosiaLuck": "Gain ☘ +1 Ambrosia Luck per digit in your Wow! Octeract inventory per level. Simple as that.", + "shopCashGrabUltra": "For a nominal price, gain up to +20% Blueberry Speed, +80% Cubes and +12% Quarks per level based on Ambrosia, scaling nonlinearly until 10,000,000 lifetime earned.", + "shopAmbrosiaAccelerator": "Each level of this 'accelerator' provides <> real-life seconds of Blueberry Generation for every <> Ambrosia gained, from any source!", + "shopEXUltra": "With this EX Upgrade, every 1,000 owned Ambrosia adds +0.1% <>, <> and <>! This effect caps at 125,000 * (level of shop upgrade)!", + "shopChronometerS": "With this upgrade, you gain +1% Ascension Speed and Global Speed per Singularity number above 200 your Singularity takes place!", + "shopAmbrosiaUltra": "For this absurdly expensive EX Upgrade, every EXALT completion grants +1 permanent ☘ Ambrosia Luck, per level.", + "shopSingularitySpeedup": "You know all those time-gated Singularity and Octeract Upgrades? Now they accumulate 50 times faster! Thanks to this weird clock that somehow alters even <>...", + "shopSingularityPotency": "You know all those free Singularity Upgrades? They are now 266% more effective (so, each is worth the equivalent to 3.66 levels, before softcaps). Why? This kinda weird <>! Don't question it.", + "shopSadisticRune": "What a weird rune; The shopkeeper (who you know no longer can see) says telepathically that it is an Infinite Ascent rune drenched in some <>. There were multiple infinite ascents?" + }, + "maxed": "Maxed!", + "upgradeFor": "Upgrade for {{x}} Quarks", + "plusForQuarks": "+ {{x}} for {{y}} Quarks", + "consume": "CONSUME", + "buyYerPotions": "Buy Yer' Potions!", + "header": "Welcome to the Quark Shop. You can't believe what's in stock!", + "youHaveQuarks": "You have {{x}} Quarks!", + "cannotRefund": "This item CANNOT be refunded! Take caution.", + "resetPermShop": "Reset Perm Shop [Cost: 15 Quarks]", + "shopConfirmationOn": "Shop Confirmations: ON", + "shopConfirmationOff": "Shop Confirmations: OFF", + "hideMaxedOn": "Hide Maxed: ON", + "hideMaxedOff": "Hide Maxed: OFF", + "autoCatalyzeOn": "Auto Catalyze: ON", + "autoCatalyzeOff": "Auto Catalyze: OFF", + "shiftClickForBuyAny": "Shift-Click for Buy: Any", + "buy10": "Buy: 10", + "buy1": "Buy: 1", + "buyMax": "Buy: MAX", + "buyAny": "Buy: ANY", + "upgradeEffects": { + "currentEffect": "Current Effect:", + "offeringPotion": "Gain <> Offerings", + "obtainiumPotion": "Gain <> Obtainium", + "offeringEX": "You will gain <> more Offerings!", + "offeringAuto": "Per 10 seconds, pour <> Offerings. +<> Offerings.", + "obtainiumEX": "You will gain <> more Obtainium!", + "obtainiumAuto": "Try to upgrade research each reincarnation, and gain <> more Obtainium.", + "instantChallenge": "Even in a premium shop it's kinda obvious, right?", + "antSpeed": "All Ants' Speed <>", + "cashGrab": "You will gain <> more Obtainium and Offerings!", + "shopTalisman": "Even in a premium shop it's kinda obvious, right?", + "seasonPass": "Ascensions give <> more Wow! Cubes and Tesseracts.", + "challengeExtension": "Reincarnation Challenges may be completed an additional <> times.", + "challengeTome": "Challenge 10 Exponent Requirement reduced by <> Million. Past 60 completions of C9 or C10 the scaling multiplier is [completions * <>]", + "cubeToQuark": "Even in a premium shop it's kinda obvious, right?", + "tesseractToQuark": "Even in a premium shop it's kinda obvious, right?", + "hypercubeToQuark": "Even in a premium shop it's kinda obvious, right?", + "seasonPass2": "Ascensions give <> more Hypercubes and Platonic Cubes.", + "seasonPass3": "Ascensions give <> more Hepteracts and Octeracts.", + "chronometer": "Ascension timer increases <> faster.", + "infiniteAscent": "The first level gives <> Quarks, for free!", + "calculator": "Code 'add' provides <> more Quarks. AutoAnswer: <>, AutoFill: <>", + "calculator2": "Code 'add' has <> more capacity. 'add' generates <> more Quarks.", + "calculator3": "Code 'add' rewards are <> less random. 'add' generates <> seconds to Ascension Timer.", + "calculator4": "Code 'add' refills <> faster. Capacity is increased by <>.", + "calculator5": "Code 'add' generates <> seconds of GQ export timer. Capacity is increased by <>.", + "calculator6": "Code 'add' generates <> seconds of Octeracts. Capacity is increased by <>.", + "calculator7": "Code 'add' generates <> seconds of Blueberry Generation. Capacity is increased by <>.", + "constantEX": "<> max percent on Constant Upgrade 2'", + "powderEX": "Gain <> Overflux Powder when Overflux Orbs expire (midnight, daily).", + "chronometer2": "Ascension timer increases <> faster!", + "chronometer3": "Ascension timer increases <> faster! This one <> resets!", + "seasonPassY": "Ascensions give <> more cubes (of <> types) on Ascension.", + "seasonPassZ": "Ascensions give <> more cubes (of <> types) on Ascension. This one <> resets!", + "challengeTome2": "Challenge 10 Exponent Requirement reduced by <> Million. Past 60 completions of C9 or C10 the scaling multiplier is [completions * <>]", + "instantChallenge2": "Instant Challenge does <> more challenges per tick.", + "cubeToQuarkAll": "Cube to Quark Corner gives <> more Quarks!", + "cashGrab2": "You will gain <> more Obtainium and Offerings! <> as powerful as the original.", + "chronometerZ": "Ascension timer increases <> faster! Seems like this model can build <>...", + "offeringEX2": "You will gain <> more Offerings! Puts the first to <>...", + "obtainiumEX2": "You will gain <> more Obtainium! Puts the first to <>...", + "powderAuto": "Every <> purchased orbs grants 1 powder.", + "seasonPassLost": "You generate <> more Wow! Octeracts per second.", + "challenge15Auto": "Even in a premium shop it's kinda obvious, right?", + "extraWarp": "You can warp <> extra times.", + "autoWarp": "If you buy this upgrade, you can toggle <> in the Hepteract Forge tab. Only if you buy this, though.", + "improveQuarkHept": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", + "improveQuarkHept2": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", + "improveQuarkHept3": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", + "improveQuarkHept4": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", + "improveQuarkHept5": "The Diminishing Returns Exponent on Quark Hepteract is increased by <>.", + "shopImprovedDaily": "Code 'daily' gives <> more quarks.", + "shopImprovedDaily2": "Code 'daily' grants <> free Singularity Upgrades and <> more Golden Quarks.", + "shopImprovedDaily3": "Code 'daily' grants <> free Singularity Upgrades and <> more Golden Quarks.", + "shopImprovedDaily4": "Code 'daily' grants <> free Singularity Upgrades and <> more Golden Quarks.", + "offeringEX3": "You will gain <> more Offerings!", + "obtainiumEX3": "You will gain <> more Obtainium!", + "chronometerInfinity": "Ascension timer increases <> faster.", + "seasonPassInfinity": "Ascensions give <> more cubes (of <> types) on Ascension.", + "shopSingularityPenaltyDebuff": "At Singularity <>, your debuffs are as if you were in <>.", + "shopAmbrosiaLuckMultiplier4": "Gain <> Ambrosia Luck!", + "shopOcteractAmbrosiaLuck": "Octeracts grant <> Ambrosia Luck!", + "shopAmbrosiaGeneration1": "Blueberry Time is generated <> faster.", + "shopAmbrosiaGeneration2": "Blueberry Time is generated <> faster.", + "shopAmbrosiaGeneration3": "Blueberry Time is generated <> faster.", + "shopAmbrosiaGeneration4": "Blueberry Time is generated <> faster.", + "shopAmbrosiaLuck1": "Ambrosia Luck <>", + "shopAmbrosiaLuck2": "Ambrosia Luck <>", + "shopAmbrosiaLuck3": "Ambrosia Luck <>", + "shopAmbrosiaLuck4": "Ambrosia Luck <>", + "shopCashGrabUltra": "Blueberry Generation is <> faster. Also, Cubes <>! Finally, Quarks <>!", + "shopAmbrosiaAccelerator": "For every <> gained, add <> seconds of Blueberry Generation (<> Blueberry Seconds)!", + "shopEXUltra": "Ambrosia increases <>, <> and <> by <>!", + "shopChronometerS": "Ascension Speed and Global Speed are both increased by <>!", + "shopAmbrosiaUltra": "Gain <> Ambrosia Luck from your EXALT completions!", + "shopSingularitySpeedup": "Singularity Perks and Upgrades accumulate <> times faster!", + "shopSingularityPotency": "Free Singularity Upgrades are as if you had <> of them.", + "shopSadisticRune": "I'm not even sure what this rune can do. Have you purchased it? I can't see you, you know." + } + }, + "singularity": { + "goldenQuarks": { + "transaction": "Transaction of {{spent}} Golden Quarks successful! [-{{cost}} Quarks]", + "poor": "Sorry, I can't give credit. Come back when you're a little... mmm... richer!", + "buyPrompt": "You can buy Golden Quarks here for {{cost}} Quarks (Discounted by {{discount}})! You can buy up to {{max}}. How many do you want? Type -1 to buy max!", + "spendPrompt": "How many Golden Quarks would you like to spend? You have {{gq}} GQ. Type -1 to use max!", + "hasUpgrade": "Hey! You have already maxed this upgrade. :D", + "notHighEnoughLevel": "You're not powerful enough to purchase this yet.", + "ascensionReset": "You have succumbed to the cult. Your ascension progress was reset as a one-time precaution...", + "multiBuyPurchased": "Purchased {{levels}} levels, thanks to Multi Buy!" + }, + "perks": { + "levelInfo": "Level {{level}} - (Singularity {{singularity}})", + "improvedIn": "An existing Perk will be improved in Singularity {{sing}}", + "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", + "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", + "description": "(Hover for more details. Perks in gold text were added or improved in this Singularity)", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, + "xyz": { + "name": "XYZ: Xtra dailY rewardZ", + "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", + "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", + "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" + }, + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" + }, + "researchDummies": { + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" + }, + "antGodsCornucopia": { + "name": "Ant God's Cornucopia", + "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", + "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", + "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", + "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." + }, + "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", + "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + }, + "superStart": { + "name": "Super Start", + "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", + "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", + "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", + "hasLevel1": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos and 10 Particles", + "default": "You start each Ascension with 1 Transcension and 1001 Mythos" + }, + "notSoChallenging": { + "name": "Not So Challenging", + "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", + "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", + "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", + "hasLevel1": "You start each Ascension with 1 completion of Challenges 6 and 7", + "default": "You start each Ascension with 1 completion of Challenge 6" + }, + "automationUpgrades": { + "name": "Automation Upgrades", + "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", + "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", + "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", + "hasLevel2": "You always have w1x4 through w1x8 and w2x10.", + "hasLevel1": "You always have w1x4 through w1x8.", + "default": "You always have w1x7. (Autobuyers for Particle buildings)" + }, + "evenMoreQuarks": { + "name": "Even More Quarks", + "bug": "This is a bug! Contact Platonic if you see this message, somehow.", + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" + }, + "shopSpecialOffer": { + "name": "Shop Special Offer", + "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", + "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", + "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" + }, + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talismans now buff all runes at all times!" + }, + "forTheLoveOfTheAntGod": { + "name": "For the love of (the Ant) God!", + "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", + "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", + "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" + }, + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown are divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, + "automagicalRunes": { + "name": "Automagical Runes", + "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", + "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", + "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", + "default": "Runes autobuyer will buy Blessings and Spirits" + }, + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + }, + "coolQOLCubes": { + "name": "Cool QoL Cubes", + "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", + "default": "Researches related to opening cubes will no longer reset on Ascension" + }, + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" + }, + "wowCubeAutomatedShipping": { + "name": "Wow! Cube Automated Shipping", + "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", + "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + }, + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" + }, + "platonicClones": { + "name": "Clones of Platonic Clicking at Your Desktop", + "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", + "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." + }, + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" + }, + "octeractMetagenesis": { + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively.", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" + }, + "immaculateAlchemy": { + "name": "Immaculate Alchemy", + "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", + "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", + "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." + }, + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } + }, + "toString": { + "noMinimum": "No minimal Singularity to purchase required", + "costNextLevel": "Cost for next level" + }, + "data": { + "goldenQuarks1": { + "name": "Golden Quarks I", + "description": "In the future, you will gain 10% more Golden Quarks on Singularities per level!", + "effect": "Permanently gain {{n}}% more Golden Quarks on Singularities." + }, + "goldenQuarks2": { + "name": "Golden Quarks II", + "description": "Buying GQ is 0.2% cheaper per level! [After 50%, effect grows much slower]", + "effect": "Purchasing Golden Quarks in the shop is {{n}}% cheaper." + }, + "goldenQuarks3": { + "name": "Golden Quarks III", + "description": "If you buy this, you will gain Golden Quarks per hour from Exports. Leveling up gives (level) additional per hour!", + "effect": "Every hour, you gain {{n}} Golden Quarks from exporting." + }, + "starterPack": { + "name": "Starter Pack", + "description": "Buy this! Buy This! Cube gain is permanently multiplied by 5, and gain 6x the Obtainium and Offerings from all sources, post-corruption.", + "effectHave": "You have unlocked a 5x multiplier to Cubes and 6x multiplier to Obtainium and Offerings.", + "effectHaveNot": "You have not unlocked a 5x multiplier to Cubes and 6x multiplier to Obtainium and Offerings." + }, + "wowPass": { + "name": "Shop Bonanza", + "description": "This upgrade will convince the seal merchant to sell you more cool stuff, which even persist on Singularity!", + "effectHave": "You have unlocked the Shop Bonanza.", + "effectHaveNot": "You have not unlocked the Shop Bonanza." + }, + "cookies": { + "name": "Cookie Recipes I", + "description": "For just a few Golden Quarks, re-open Wow! Bakery, adding five cookie-related Cube upgrades.", + "effectHave": "You have unlocked volume 1 of the recipe book.", + "effectHaveNot": "You have not unlocked volume 1 of the recipe book." + }, + "cookies2": { + "name": "Cookie Recipes II", + "description": "Diversify Wow! Bakery into cooking slightly more exotic cookies, adding five more cookie-related Cube upgrades.", + "effectHave": "You have unlocked volume 2 of the recipe book.", + "effectHaveNot": "You have not unlocked volume 2 of the recipe book." + }, + "cookies3": { + "name": "Cookie Recipes III", + "description": "Your Bakers threaten to quit without a higher pay. If you do pay them, they will bake even more fancy cookies.", + "effectHave": "You have appeased the union of Bakers.", + "effectHaveNot": "You have not appeased the union of Bakers." + }, + "cookies4": { + "name": "Cookie Recipes IV", + "description": "This is a small price to pay for Salvation.", + "effectHave": "You have paid your price for salvation.", + "effectHaveNot": "You have not paid your price for salvation." + }, + "cookies5": { + "name": "Cookie Recipes V", + "description": "The worst atrocity a man can commit is witnessing, without anguish, the suffering of others.", + "effectHave": "You have paid witness to the suffering of the masses.", + "effectHaveNot": "You have not paid witness to the suffering of the masses." + }, + "ascensions": { + "name": "Improved Ascension Gain", + "description": "Buying this, you will gain +2% Ascension Count forever, per level! Every 10 levels grants an additional, multiplicative +1% Ascension Count.", + "effect": "Ascension Count increases {{n}}% faster." + }, + "corruptionFourteen": { + "name": "Level Fourteen Corruptions", + "description": "Buy this to unlock level fourteen corruptions. :)", + "effectHave": "You have gained the ability to use level 14 corruptions. {{m}}", + "effectHaveNot": "You have not gained the ability to use level 14 corruptions. {{m}}" + }, + "corruptionFifteen": { + "name": "Level Fifteen Corruptions", + "description": "This doesn't *really* raise the corruption limit. Rather, it adds one FREE level to corruption multipliers, no matter what (can exceed cap). :)", + "effectHave": "You have gained a free corruption level. {{m}}", + "effectHaveNot": "You have not gained a free corruption level. {{m}}" + }, + "singOfferings1": { + "name": "Offering Charge", + "description": "Upgrade this to get +2% Offerings per level, forever!", + "effect": "Permanently gain {{n}}% more Offerings." + }, + "singOfferings2": { + "name": "Offering Storm", + "description": "Apparently, you can use this bar to attract more Offerings. +8% per level, to be precise.", + "effect": "Permanently gain {{n}}% more Offerings." + }, + "singOfferings3": { + "name": "Offering Tempest", + "description": "This bar is so prestine, it'll make anyone submit their Offerings. +4% per level, to be precise.", + "effect": "Permanently gain {{n}}% more Offerings." + }, + "singObtainium1": { + "name": "Obtainium Wave", + "description": "Upgrade this to get +2% Obtainium per level, forever!", + "effect": "Permanently gain {{n}}% more Obtainium." + }, + "singObtainium2": { + "name": "Obtainium Flood", + "description": "Holy crap, water bending! +8% gained Obtainium per level.", + "effect": "Permanently gain {{n}}% more Obtainium." + }, + "singObtainium3": { + "name": "Obtainium Tsunami", + "description": "A rising tide lifts all boats. +4% gained Obtainium per level.", + "effect": "Permanently gain {{n}}% more Obtainium." + }, + "singCubes1": { + "name": "Cube Flame", + "description": "Upgrade this to get +1% Cubes per level, forever!", + "effect": "Permanently gain {{n}}% more Cubes." + }, + "singCubes2": { + "name": "Cube Blaze", + "description": "Burn some more Golden Quarks! +8% gained Cubes per level.", + "effect": "Permanently gain {{n}}% more Cubes." + }, + "singCubes3": { + "name": "Cube Inferno", + "description": "Even Dante is impressed. +4% gained Cubes per level.", + "effect": "Permanently gain {{n}}% more Cubes." + }, + "singCitadel": { + "name": "Citadel of Singularity", + "description": "What a unique structual phenomenon... but it gives +2% Obtainium, Offerings, and 3-7D cubes per level! +1% Additional for every 10 levels!", + "effect": "Obtainium, Offerings, and 3-7D Cubes +{{n}}%, forever!" + }, + "singCitadel2": { + "name": "Citadel of 'Singularity': The Real Edition", + "description": "This actual Citadel gives +2% Obtainium, Offerings, and 3-7D cubes per level! +1% Additional for every 10 levels! Also sets the free level of the fake citadel to whatever level this is.", + "effect": "Obtainium, Offerings, and 3-7D Cubes +{{n}}%, forever!" + }, + "octeractUnlock": { + "name": "Octeracts", + "description": "Hey!!! What are you trying to do?!?", + "effectHave": "You have bought into the Octeract hype.", + "effectHaveNot": "You have not bought into the Octeract hype." + }, + "singOcteractPatreonBonus": { + "name": "Platonic $ells out!!!", + "description": "You know that Patreon bonus? Yeah, that's cool and all, but what if it also boosted Octeract production by the same amount?", + "effect": "Octeract production is {{n}}% faster for every $10 per month on the Patreon! Same as the Quark bonus which already exists." + }, + "offeringAutomatic": { + "name": "Blueberry Shards! (WIP)", + "description": "The legends are true. \n The Prophecies are fulfilled. \n Ant God has heard your prayers. \n Let there be blueberries! \n And they were good.", + "effect": "You have purchased {{n}} tasty blueberries." + }, + "intermediatePack": { + "name": "Intermediate Pack", + "description": "Double Global Speed, Multiply Ascension speed by 1.5, and gain +2% Quarks forever. Yum... 2% Quark Milk.", + "effectHave": "You have upgraded your package to intermediate.", + "effectHaveNot": "You have not upgraded your package to intermediate." + }, + "advancedPack": { + "name": "Advanced Pack", + "description": "Now we're cooking with kerosene! Gain +4% Quarks stack with intermediate, +0.33 to all corruption score multipliers, regardless of level!", + "effectHave": "You have bought our advanced package.", + "effectHaveNot": "You have not bought our advanced package." + }, + "expertPack": { + "name": "Expert Pack", + "description": "That's a handful! Gain +6% Quarks stack with advanced, 1.5x Ascension Score, Code 'add' gives 1.2x Ascension Timer.", + "effectHave": "You have switched to the expert provider.", + "effectHaveNot": "You have not switched to the expert provider." + }, + "masterPack": { + "name": "Master Pack", + "description": "A tad insane. Gain +8% Quarks stack with expert, for every level 14 corruption, Ascension score is multiplied by 1.1.", + "effectHave": "You have mastered your inner chakras.", + "effectHaveNot": "You have not mastered your inner chakras." + }, + "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.", + "effectHave": "You have found the reason for existence.", + "effectHaveNot": "You have not found the reason for existence." + }, + "wowPass2": { + "name": "Shop Liquidation Sale", + "description": "The Seal Merchant needs to get rid of some exotic goods. Only for a steep price. I do not think that is how sales work.", + "effectHave": "You have triggered the Liquidation event!", + "effectHaveNot": "You have not triggered the Liquidation event!" + }, + "wowPass3": { + "name": "QUAAAACK", + "description": "QUAAAAAAAACK. The Merchant has gone crazy for your QUARKS!", + "effectHave": "You have triggered the QUACKSTRAVAGANZA!!", + "effectHaveNot": "You have not triggered the QUACKSTRAVAGANZA!!" + }, + "potionBuff": { + "name": "Potion Decanter of Enlightenment", + "description": "Purported to actually be the fountain of youth, this item powers up potions considerably!", + "effect": "Potions currently give {{n}}x items!" + }, + "potionBuff2": { + "name": "Potion Decanter of Inquisition", + "description": "Staring at the glass, you aren't actually sure what this potion is.", + "effect": "Potions currently give {{n}}x items!" + }, + "potionBuff3": { + "name": "Potion Decanter of Maddening Instability", + "description": "SHE'S GONNA BLOW!!!! Said Midas, the Golden Quark Salesman. Oh yeah, did we mention he's in the game?", + "effect": "Potions currently give {{n}}x items!" + }, + "singChallengeExtension": { + "name": "Bigger Challenge Caps", + "description": "Need more Challenges? Well, add 2 more Reincarnation Challenges and 1 Ascension Challenge to the cap, per level.", + "effect": "You feel motivated enough to complete {{n}} more Reincarnation Challenges, and {{m}} more Ascension Challenges." + }, + "singChallengeExtension2": { + "name": "Biggerer Challenge Caps", + "description": "Need even more Challenges? Well, add 2 more Reincarnation Challenges and 1 Ascension Challenge to the cap, per level.", + "effect": "You feel motivated enough to complete {{n}} more Reincarnation Challenges, and {{m}} more Ascension Challenges." + }, + "singChallengeExtension3": { + "name": "BiggererEST Challenge Caps", + "description": "Need even MORE Challenges? Well, add 2 more Reincarnation Challenges and 1 Ascension Challenge to the cap, per level. Does it not seem excessive?", + "effect": "You feel motivated enough to complete {{n}} more Reincarnation Challenges, and {{m}} more Ascension Challenges." + }, + "singQuarkImprover1": { + "name": "Marginal Quark Gain Improver Thingy", + "description": "A doohickey that I forgot what it looked like. +0.5% Quarks per level, multiplicative with all other bonuses! Seems like it grows in cost a lot faster than anything else though. Also, did you know these descriptions can be arbitarily long?", + "effect": "You gain {{n}}% more Quarks!" + }, + "singQuarkHepteract": { + "name": "I wish my Quark Hepteract was marginally better.", + "description": "Wrong game, oops. Anyway, would you like a very slightly better DR exponent on Quark Hepteract?", + "effect": "The DR exponent is now {{n}}% larger!" + }, + "singQuarkHepteract2": { + "name": "I wish my Quark Hepteract was marginally better II.", + "description": "Still not the right game. Same as the previous upgrade.", + "effect": "The DR exponent is now {{n}}% larger!" + }, + "singQuarkHepteract3": { + "name": "I wish my Quark Hepteract was marginally better III.", + "description": "I AM NOT THE GODMOTHER YOU ARE LOOKING FOR, DYLAN!", + "effect": "The DR exponent is now {{n}}% larger!" + }, + "singOcteractGain": { + "name": "Octeract Absinthe", + "description": "You would have never known this tonic can boost your Octeracts! [+1.25% per level, in fact!]", + "effect": "Octeract Gain +{{n}}%" + }, + "singOcteractGain2": { + "name": "Pieces of Eight", + "description": "There is indeed eight of them, but each only gives +0.625% bonus, so each level gives +5% Octeract per level.", + "effect": "Octeract Gain +{{n}}%" + }, + "singOcteractGain3": { + "name": "The Obelisk Shaped like an Octagon.", + "description": "Platonic had to reach pretty far here. +2.5% Octeracts yeah!", + "effect": "Octeract Gain +{{n}}%" + }, + "singOcteractGain4": { + "name": "Octahedral Synthesis", + "description": "How does this even work!?? +2% Octeracts, you bet!", + "effect": "Octeract Gain +{{n}}%" + }, + "singOcteractGain5": { + "name": "The Eighth Wonder of the World", + "description": "is the wonder of the world we live in. [+1% Octeracts. Platonic, this is so stingy! but, he does not care one bit.]", + "effect": "Octeract Gain +{{n}}%" + }, + "platonicTau": { + "name": "Platonic TAU", + "description": "Placed in the wrong upgrade section, this will remove any restrictions on corruptions or corruption level caps! Also raises 3d cube gain to the power of 1.01!", + "effectHave": "This upgrade has been purchased", + "effectHaveNot": "This upgrade has not been purchased" + }, + "platonicAlpha": { + "name": "Platonic ALPHA...?", + "description": "Confusion ensues as to why there are two of these. This one is capitalized, so buying this ensures Platonic Alpha is always maxed!", + "effectHave": "This upgrade has been purchased", + "effectHaveNot": "This upgrade has not been purchased" + }, + "platonicDelta": { + "name": "Platonic DELTA", + "description": "Time follows you towards the future, after getting this bad boy. Gain +100% more cubes per day in your current singularity, up to +900% at day 9.", + "effectHave": "This upgrade has been purchased", + "effectHaveNot": "This upgrade has not been purchased" + }, + "platonicPhi": { + "name": "Platonic PHI", + "description": "Time follows you toward the past as well. Gain 5 additional free Singularity Upgrades per day in your singularity from code daily, up to +50 after 10 days.", + "effectHave": "This upgrade has been purchased", + "effectHaveNot": "This upgrade has not been purchased" + }, + "singFastForward": { + "name": "Etherflux Singularities", + "description": "Golden Quark gained by Singularity is increased by 100% (additive), and going singular at your all time highest count gives +1 singularity count!", + "effectHave": "You've transformed the Etherflux!", + "effectHaveNot": "You haven't transformed the Etherflux!" + }, + "singFastForward2": { + "name": "Aetherflux Singularities", + "description": "Golden Quark gained by Singularity is increased by 100% (additive) and going singular at your all time highest count gives +1 singularity count! It's like Etherflux but with an A.", + "effectHave": "You've transformed the Aetherflux!", + "effectHaveNot": "You haven't transformed the Aetherflux!" + }, + "singAscensionSpeed": { + "name": "A hecking good ascension speedup!", + "description": "Ascension Speed is raised to the power of 1.03, raised to 0.97 if less than 1x.", + "effect": "Ascension Speed ^{{n}}, ^{{m}} if < 1x" + }, + "singAscensionSpeed2": { + "name": "A mediocre ascension speedup!", + "description": "Ascension speed is multiplied by 6 if you have not purchased Antiquities in your current Singularity.", + "effect": "The effect is clear" + }, + "WIP": { + "name": "WIP TEMPLATE", + "description": "This is a template! Bottom Text.", + "effect": "Update this description at a later time!!!!!!!!!!" + }, + "ultimatePen": { + "name": "The Ultimate Pen", + "description": "You. It is you who is the author of your own story!", + "effect": "You do {{n}} own the Ultimate Pen. {{m}}" + }, + "oneMind": { + "name": "ONE MIND", + "description": "A note, you found on the 'ground': seems like an advertisement for a cult. \"Lock your ascension speed to 10x, and multiply all cubes based on the difference.\" Hmm...", + "effectHave": "You have joined the cult!", + "effectHaveNot": "You haven't joined the cult!" + }, + "wowPass4": { + "name": "QUQUQUQUAAKCKCKKCKKCKK", + "description": "Deals that'll cost you a beak and a wing!", + "effectHave": "You have quacked your last QUARK", + "effectHaveNot": "You haven't quacked your last QUARK" + }, + "blueberries": { + "name": "Blueberry Shards! (WIP)", + "description": "Blueberries! Yeah, Platonic is out of ideas. Well, each Blueberry gives a 0.01% chance per second to generate some Ambrosia!", + "effect": "You have purchased {{n}} tasty blueberries." + }, + "singAmbrosiaLuck2": { + "name": "Gilded Berries of Good Fortune", + "description": "Literally put some gold onto 'berries' and become lucky. ☘ +2 Ambrosia Luck per level!", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "singAmbrosiaLuck3": { + "name": "Dedicated Gold Smelting", + "description": "More gold is dipped onto each berry. ☘ +3 Ambrosia Luck per level!", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "singAmbrosiaLuck": { + "name": "Absolute Hot", + "description": "Your gold smelters get arbitrarily close to 'Absolute Hot'. ☘ +4 Ambrosia Luck per level, infinitely levelable!", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "singAmbrosiaLuck4": { + "name": "The Alchemists from the Beginning of the Game Work for your Golden Berry Needs", + "description": "Yeah, these upgrade titles can be arbitrarily long, too. ☘ +5 Ambrosia Luck per level!", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "singAmbrosiaGeneration2": { + "name": "Hourglass of Importance", + "description": "A somewhat important hourglass which somehow makes your blueberries generate seconds 1% faster per level..", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + }, + "singAmbrosiaGeneration3": { + "name": "Hourglass of Significance", + "description": "An hourglass which is still important, perhaps even more so. +1% Blueberry Second Generation per level.", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + }, + "singAmbrosiaGeneration": { + "name": "Hourglass of Limitlessness", + "description": "Remember- this hourglass is really important. But it gives +1% Blueberry Second Generation per level and is infinitely levelable!", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + }, + "singAmbrosiaGeneration4": { + "name": "Hourglass of Fantasy", + "description": "An hourglass which is unimportant and 'less timely'- whatever that means. +2% Blueberry Second Generation per level.", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + } + }, + "goldenQuarkAmount": "You have {{goldenQuarks}} Golden Quarks!", + "penalties": { + "globalSpeed": "<> is divided by <>.", + "ascensionSpeed": "<> is divided by <>.", + "offeringGain": "<> is divided by <>.", + "obtainiumGain": "<> is divided by <>.", + "cubeGain": "<> is divided by <>.", + "researchCosts": "<> are multiplied by <>.", + "cubeUpgradeCosts": "<> (Excluding Cookies) are multiplied by <>.", + "platonicCosts": "<> are multiplied by <>.", + "hepteractCosts": "<> are multiplied by <>.", + "penaltySmooth": "You will no longer experience sudden spikes in penalties.", + "penaltyRough": "Your penalties will sharply worsen in <>.", + "antiquitiesBought": "<>", + "antiquitiesNotBought": "<>" + } + }, + "general": { + "youAreInThe": "You are in the <>", + "validation": { + "finite": "Value must be a finite number!", + "zeroOrLess": "Only numbers greater than zero, please!", + "moreThanPlayerHas": "You can't afford this yet!", + "fraction": "Yeah, that isn't an integer. We don't accept fractions here!", + "goldenQuarksTooMany": "Sorry, I cannnot sell you this many Golden Quarks! Try buying fewer of them or typing -1 to buy max!", + "finiteInt": "Value must be a finite, non-decimal number!", + "invalidNumber": "Hey! That's not a valid number!" + }, + "cancelled": "Okay, maybe next time!", + "level": "Level", + "minimum": "Minimum", + "spent": "Spent", + "OK": "OK", + "Cancel": "Cancel", + "autoOnBracket": "Auto [ON]", + "autoOffBracket": "Auto [OFF]", + "softCapped": "(Softcapped)", + "maxed": "(Maxed)", + "affordable": "(Affordable)", + "enabled": "(Enabled)", + "infinity": "Infinity", + "sacrificeCapital": "SACRIFICE", + "multiBuyInstructions": "Buy multiple levels at once by holding <> while clicking!", + "autoOnColon": "Auto: ON", + "autoOffColon": "Auto: OFF", + "buyMaxOn": "Buy Max: ON", + "buyMaxOff": "Buy Max: OFF", + "on": "ON", + "off": "OFF", + "updateAlerts": { + "june282021": "June 28, 2021: V2.5.3. You have been refunded quarks from calculators if you purchased them. They are no longer refundable so be wary!", + "july22021": "July 2, 2021: V2.5.5. You have been refunded quarks from Powder EX upgrade, if you purchased levels. Your T1 ants were also reset and base cost set to 1e700 particles. Powder EX is no longer refundable, though, so be careful!", + "sing230Balancing": "Due to balancing changes, you were sent back to Singularity 230 to prevent softlocking your savefile!", + "december22xxxx": "You have loaded into the December 22 patch v1.", + "january42023": "You have loaded into the January 4, 2023 Patch v1.", + "v297hotfix1NoSing": "You have loaded into the version 2.9.7 hotfix 1!", + "v297hotfix1Sing": "You have loaded into the version 2.9.7 hotfix 1! Your uncapped resource singularity upgrades have been refunded! Sorry for the inconvenience." + }, + "languageChange": "Changing the language requires a reload! Would you like to reload now?" + }, + "upgrades": { + "descriptions": { + "1": "Increase production of Workers per producer bought.", + "2": "Increase production of Investments per producer bought.", + "3": "Increase production of Printers per producer bought.", + "4": "Increase production of Mints per producer bought.", + "5": "Increase production of Alchemies per producer bought.", + "6": "Increase all production based on producer bought.", + "7": "Gain free multipliers based on your purchased Alchemies.", + "8": "Gain 1 free Accelerator per 7 purchased Multipliers.", + "9": "Gain 1 free Multiplier per 10 purchased Accelerators.", + "10": "Improve Workers based on the first 750 purchased Investments.", + "11": "Accelerators improve generation production by 2% each.", + "12": "Each Prestige multiplies production by 1.01, multiplicatively (Max: 1e4x).", + "13": "Augments buff the production of Investments.", + "14": "Free Accelerators buff generation of Printers.", + "15": "Free Accelerators buff generation of Mints.", + "16": "Acceleration Multiplier buffs Diamond gain.", + "17": "Multiply Mint production by 1e+100.", + "18": "Multiply Printer production based on Mythos Shards.", + "19": "Multiply Investment production based on Mythos.", + "20": "Coin upgrade 1 is raised to the eleventh power.", + "21": "Gain 1 Multiplier and 5 Accelerators plus 1% more free Multipliers/Accelerators.", + "22": "Gain 1 Multiplier and 4 Accelerators plus 1% more free Multipliers/Accelerators.", + "23": "Gain 1 Multiplier and 3 Accelerators plus 1% more free Multipliers/Accelerators.", + "24": "Gain 1 Multiplier and 2 Accelerators plus 1% more free Multipliers/Accelerators.", + "25": "Gain 1 Multiplier and 1 Accelerators plus 1% more free Multipliers/Accelerators.", + "26": "Gain a free Accelerator Boost.", + "27": "Gain free Accelerators based on unspent Coins.", + "28": "Gain a free Multiplier per 160 Coin producers bought.", + "29": "Gain a free Accelerator per 80 Coin producers bought.", + "30": "Gain free Multipliers based on unspent Coins.", + "31": "Gain 1 free Accelerator Boost per 2,000 Coin producers bought.", + "32": "Gain free Accelerators based on Unspent Diamonds.", + "33": "Gain 1 free Multiplier for each Accelerator Boost owned.", + "34": "Gain 3% more free Multipliers.", + "35": "Gain 2% more free Multipliers.", + "36": "Multiply Crystal production by Diamonds, maximum 1e5000x.", + "37": "Multiply Mythos Shard production by the squared logarithm of Diamonds.", + "38": "Gain +20% more Offerings thanks to generous Discord Server Boosters!", + "39": "Gain +60% more Ant Speed thanks to generous Discord Server Boosters!", + "40": "Gain +25% more Ant Sacrifice rewards thanks to generous Discord Server Boosters!", + "41": "Multiply production based on unspent Mythos.", + "42": "Multiply Mythos Shard production based on unspent Diamonds.", + "43": "Multiply coin production by 1.01 per Transcension (Max: 1e30x).", + "44": "Multiply Mythos gain on Transcend by 1.01 per Transcension (Max: 1e6x).", + "45": "Gain free Accelerators based on Mythos Shards.", + "46": "Accelerator Boosts are 5% stronger and do not reset Prestige features.", + "47": "Multiply Mythos Shard production based on your AP.", + "48": "Multiply production based on owned Accelerators and Multipliers.", + "49": "Gain free Multipliers based on unspent Mythos.", + "50": "Gain +25% free Accelerators and Multipliers, but ONLY while doing Challenges.", + "51": "Increase production of all Mythos buildings based on owned Accelerator Boosts.", + "52": "Mythos building exponent +0.025.", + "53": "Augments produce more Shards based on Acceleration Multiplier.", + "54": "Wizards produce more Enchantments based on Multiplier.", + "55": "Grandmasters produce more Oracles based on Building power.", + "56": "Worker production is multiplied by 1e+5000.", + "57": "Investment production is multiplied by 1e+7500.", + "58": "Printer production is multiplied by 1e+15000.", + "59": "Coin Mint production is multiplied by 1e+25000.", + "60": "Alchemies production is multiplied by 1e+35000.", + "61": "Welcome to Reincarnation! +5% Offering Recycle, +2 EXP/Offering!", + "62": "Completing Challenges, automatically or manually, increase Offerings gained in Reincarnation. Bonus subject to time multiplier!", + "63": "Crystal Production is multiplied based on Particles to the sixth power [Caps at 1e6000x].", + "64": "Mythos Shard Production is multiplied by your Particles squared.", + "65": "Multiply the gain of Particles from Reincarnation by 5x!", + "66": "When you use an Offering, every unlocked rune will get 1 free experience.", + "67": "Atom gain is increased by 3% per Particle producer purchased!", + "68": "Gain a free Multiplier for every 1e1000x increase in tax.", + "69": "Gain more Obtainium based on your particle gain. [Works with automation at a reduced rate!]", + "70": "Time seems to go +0.333*log10(MAX Obtainium +1)% faster when you buy this.", + "71": "Runes will gain (Rune Level/25) additional EXP per Offering used.", + "72": "Obtainium gain from Reincarnations is multiplied (1 + 2C) where C is #Reincarnation Challenges completed, up to 50x!", + "73": "Gain +100% free Accelerator Boosts and +10 free Crystal Upgrade levels, but only in Reincarnation Challenges.", + "74": "Obtainium gain is increased based on highest ever unspent Offerings. [Max: 100,000 Unspent]", + "75": "Offering gain is increased based on highest ever unspent Obtainium [Max: 30,000,000 Obtainium]", + "76": "Ant generation kinda slow? I agree! Make all Ant tiers 5x faster!", + "77": "This is Synergism, right? Let's make each purchased Ant make all Ants 0.4% faster.", + "78": "Gain an Ant speed multiplier equivalent to (1 + 0.005 * (log10(MAX Offerings + 1))^2).", + "79": "The Ant God will accept an arbitrary number of Particles in order to give you 10% more from sacrifices.", + "80": "The Ant God will accept a larger arbitrary number of Particles to give you more Ant ELO.", + "81": "Automatically buy Workers if affordable.", + "82": "Automatically buy Investments if affordable.", + "83": "Automatically buy Printers if affordable.", + "84": "Automatically buy Coin Mints if affordable.", + "85": "Automatically buy Alchemies if affordable.", + "86": "Automatically buy Accelerators if affordable.", + "87": "Automatically buy Multipliers if affordable.", + "88": "Automatically buy Accelerator Boosts if affordable.", + "89": "Unlock Automatic Transcensions.", + "90": "Automatically buy from the Generator Shop.", + "91": "Automatically buy Coin Upgrades.", + "92": "Automatically buy Diamond Upgrades.", + "93": "Generate 1% of Diamond Gain from prestiging per second.", + "94": "Automatically buy Augments if affordable.", + "95": "Automatically buy Enchantments if affordable.", + "96": "Automatically buy Wizards if affordable.", + "97": "Automatically buy Oracles if affordable.", + "98": "Automatically buy Grandmasters if affordable.", + "99": "Automatically buy Mythos Upgrades if affordable.", + "100": "Generate 1% of Mythos Gain from transcending per second.", + "101": "Alchemies will produce Coin Mints.", + "102": "Coin Mints will produce Printers.", + "103": "Printers will produce Investments.", + "104": "Investments will produce Workers.", + "105": "Purchased Workers will produce Alchemies.", + "106": "Refineries can produce Alchemies equal to Refineries owned raised to 0.10", + "107": "Refinery -> Alchemy exponent increased from 0.10 to 0.25.", + "108": "Refinery -> Alchemy exponent increased from 0.25 to 0.50", + "109": "Refinery -> Alchemy exponent increased from 0.50 to 0.75", + "110": "Refinery -> Alchemy exponent increased from 0.75 to 1", + "111": "Augments can produce Pandora Boxes equal to Augments owned raised to 0.08", + "112": "Augment -> Box exponent increased from 0.08 to 0.16", + "113": "Augment -> Box exponent increased from 0.16 to 0.24", + "114": "Augment -> Box exponent increased from 0.24 to 0.32", + "115": "Augment -> Box exponent increased from 0.32 to 0.40", + "116": "Protons can produce Grandmasters equal to Protons owned raised to 0.05", + "117": "Protons -> Grandmaster exponent increased from 0.05 to 0.10", + "118": "Protons -> Grandmaster exponent increased from 0.10 to 0.15", + "119": "Protons -> Grandmaster exponent increased from 0.15 to 0.20", + "120": "Protons -> Grandmaster exponent increased from 0.20 to 0.25", + "121": "You probably autobought this. -50% taxes!", + "122": "Increase Crystal Upgrade 3 cap from +12% to +100%!", + "123": "Raise coin production to the power of 1.025. More EXPONENTS.", + "124": "Gain +3% more effective ELO.", + "125": "Constant Tax divisor is 0.333% stronger per challenge 10 completion. [Divisor^(1 + upgrade)]" + }, + "crystalEffects": { + "1": "Crystal production x{{x}}", + "2": "Crystal production x{{x}}", + "3": "Crystal production x{{x}}", + "4": "Coin production multiplier exponent +{{x}}", + "5": "Crystal production x{{x}}" + }, + "crystalUpgrades": { + "1": "Gain a 5% multiplicative boost to Crystals per AP per level.", + "2": "Gain a boost to Crystals based on held coins per level.", + "3": "Each purchased Crystal producer increases generation of Crystal producers by .1% per level. [MAX: {{max}}%]", + "4": "Improve the multiplier to coin production by .05 exponent per level. [MAX: +{{max}}]", + "5": "Every Transcension Challenge completion increases Crystal gain by 1% per level.", + "6": "Coming (not so) SOON!", + "7": "Coming (not so) SOON!", + "8": "Coming (not so) SOON!" + }, + "constantEffects": { + "1": "Tesseract building production x{{x}}", + "2": "Tesseract building production x{{x}}", + "3": "Offering gain x{{x}}", + "4": "Obtainium gain x{{x}}", + "5": "Ant Speed x{{x}}", + "6": "+{{x}} free Ant Levels", + "7": "+{{x}} free Rune Levels, +{{y}} to Rune Cap", + "8": "Rune EXP x{{x}}", + "9": "Runes effectiveness x{{x}}", + "10": "Cubes/Tesseracts on Ascension x{{x}}" + }, + "constantUpgrades": { + "1": "Make all Tesseract buildings {{level}}% more productive per level.", + "2": "Each Tesseract building bought increases the production of all of them by 0.1% per level [Max {{max}}%].", + "3": "Increase Offering gain +2% per level.", + "4": "Increase Obtainium gain +4% per level.", + "5": "Multiply Ant speed by (1 + log10(Constant + 1)/10)^level", + "6": "Add +2 free Ant Levels per level.", + "7": "Provides 7 free rune levels and increases the rune cap by 3 per level.", + "8": "Increase the rune EXP given by Offerings by 10% per level [Additive]", + "9": "When bought, rune effectiveness is increased by Log4(Talisman Shards +1) %", + "10": "When bought, gain Log4(Constant + 1)% more Wow! Cubes and Tesseracts on Ascension." + }, + "effects": { + "1": "Effect: Worker Production x{{x}}", + "2": "Effect: Investment Production x{{x}}", + "3": "Effect: Printer Production x{{x}}", + "4": "Effect: Mint Production x{{x}}", + "5": "Effect: Alchemy Production x{{x}}", + "6": "Effect: All Coin production x{{x}}", + "7": "Effect: Gain {{x}} free Multipliers from bought Alchemies.", + "8": "Effect: +{{x}} free Accelerators.", + "9": "Effect: +{{x}} free Multipliers.", + "10": "Effect: Worker Production x{{x}}", + "11": "Effect: Generator efficiency x{{x}}", + "12": "Effect: All Coin production x{{x}}", + "13": "Effect: Investment Production x{{x}}", + "14": "Effect: Printer Generation x{{x}}", + "15": "Effect: Mint Generation x{{x}}", + "16": "Effect: Gain {{x}}x more Diamonds on Prestige", + "17": "Effect: Mint Production x1e100 (Duh)", + "18": "Effect: Printer Production x", + "19": "Effect: Investment Production x{{x}}", + "20": "Effect: All coin production is further multiplied by {{x}} [Stacks with upgrade 1]!", + "21": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", + "22": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", + "23": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", + "24": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", + "25": "Effect: {{x}} Multipliers, +{{y}} Accelerators.", + "26": "Effect: +1 Accelerator Boost.", + "27": "Effect: +{{x}} Accelerators.", + "28": "Effect: +{{x}} Multipliers.", + "29": "Effect: +{{x}} Accelerators.", + "30": "Effect: +{{x}} Multipliers.", + "31": "Effect: +{{x}} Accelerator Boosts", + "32": "Effect: +{{x}} Accelerators", + "33": "Effect: +{{x}} Multipliers", + "34": "Effect: +{{x}} Multipliers", + "35": "Effect: +{{x}} Multipliers", + "36": "Effect: All Crystal producers x{{x}}", + "37": "Effect: All Mythos producers production x{{x}}", + "38": "Effect: Thank you for getting the server above 30 boosts!", + "39": "Effect: Thank you for getting the server above 30 boosts!", + "40": "Effect: Thank you for getting the server above 30 boosts!", + "41": "Effect: Welcome to Transcension! Coin production is multiplied by {{x}}.", + "42": "Effect: All Mythos Shard producers are going into overdrive: x{{x}} the production!", + "43": "Effect: Multiply all coin production by {{x}}!", + "44": "Effect: Multiply Mythos gained in Transcension by {{x}}!", + "45": "Effect: +{{x}} Accelerators!", + "46": "Effect: It's kinda self-evident, ain't it?", + "47": "Effect: Mythos-tier producers production x{{x}}", + "48": "Effect: Multiply coin production by a factor of {{x}}!", + "49": "Effect: +{{x}} Multipliers through magic!", + "50": "Effect: It's quite obvious what the benefit is, but you must be in a Challenge for it to be in use!", + "51": "Effect: Mythos-tier producers production x{{x}}!", + "52": "Effect: Mythos-tier producers production x{{x}}! It's like inception, or something.", + "53": "Effect: Augments will produce {{x}}x as many Mythos Shards.", + "54": "Effect: Wizards will produce {{x}}x as many Enchantments; What productive spirits!", + "55": "Effect: Grandmasters will produce {{x}}x as many Oracles!", + "56": "Effect: It's quite obvious, ain't it?", + "57": "Effect: Look above!", + "58": "Effect: Look above!", + "59": "Effect: Look above!", + "60": "Effect: Look above!", + "61": "Effect: +5% Offering Recycle/+2EXP per Offerings. Duh!", + "62": "Effect: Base Offering amount for Reincarnations +{{x}}. Challenge yourself!", + "63": "Effect: All Crystal production x{{x}}", + "64": "Effect: All Mythos Shard production x{{x}}", + "65": "Effect: 5x Particle gain from Reincarnations. Duh!", + "66": "Effect: It's quite clear in the description!", + "67": "Effect: The first particle-tier producer is {{x}}x as productive.", + "68": "Effect: Your compliance with tax laws provides you with {{x}} free Multipliers, for some reason.", + "69": "Effect: Cosmic Magnetics will allow you to gain {{x}}x as much Obtainium reincarnating x{{y}} automatic gain.", + "70": "Effect: Contracted time makes your game timers run {{x}}% more quickly.", + "71": "Effect: Writing's on the wall. Look above!", + "72": "Effect: Obtainium multiplier: x{{x}}", + "73": "Effect: Same as Transcend upgrade 10, except you MUST be in a Reincarnation Challenge in particular.", + "74": "Effect: Obtainium multiplier: x{{x}}", + "75": "Effect: Offering Multiplier: x{{x}}", + "76": "Effect: Epic 5x Ants!", + "77": "Effect: Ant Speed Multiplier: x{{x}}", + "78": "Effect: Ant Speed Multiplier: x{{x}}", + "79": "Effect: You will gain +10% rewards =)", + "80": "Effect: Ant ELO +75 if this upgrade is purchased.", + "81": "Effect: All you need is right above this message.", + "120": "Effect: All you need to know is right above this message!", + "121": "Effect: -50% Taxes duh!", + "122": "Effect: +88% cap to Crystal Upgrade 3, duh!", + "123": "Effect: Coin Production ^1.025, duh!", + "124": "Effect: +3% Effective Ant ELO, duh!", + "125": "+{{x}}% Constant Divisor power." + }, + "shopTitles": { + "coin": "Coin Upgrades", + "diamond": "Diamond Upgrades", + "mythos": "Mythos Upgrades", + "generator": "Generator Shop", + "automation": "Automation Shop", + "particles": "Particles Upgrades" + }, + "hover": "Hover over an upgrade icon to see details!", + "hoverOverUpgrade": "Hover over an upgrade to view details!" + }, + "tabs": { + "main": { + "buildings": "Buildings", + "upgrades": "Upgrades", + "achievements": "Achievements", + "runes": "Runes", + "challenges": "Challenges", + "research": "Research", + "antHill": "Anthill", + "wowCubes": "WOW! Cubes", + "corruption": "Corruption", + "singularity": "Singularity", + "settings": "Settings", + "shop": "Shop", + "unsmith": "UNSMITH", + "purchase": "PseudoCoins" + }, + "buildings": { + "coin": "Coin Buildings", + "diamond": "Diamond Buildings", + "mythos": "Mythos Buildings", + "particle": "Particle Buildings", + "tesseract": "Tesseract Buildings" + }, + "runes": { + "runes": "Runes", + "talismans": "Talismans", + "blessings": "Blessings", + "spirits": "[=-Spirits-=]" + }, + "challenges": { + "normal": "Normal", + "exalt": "EXALT" + }, + "cubes": { + "cubeTributes": "Cube Tributes", + "tesseract": "Tesseract Gifts", + "hypercube": "Hypercube Benedictions", + "platonic": "Platonic Statues", + "cubeUpgrades": "Cube Upgrades", + "challenge15": "Challenge 15/Platonic Upgrades", + "hepteract": "Hepteract Forge" + }, + "singularity": { + "perks-penalties": "Perks / Penalties", + "octeracts": "Octeracts", + "ambrosia": "Ambrosia" + }, + "settings": { + "languages": "🌐 Languages 🌐", + "credit": "Credits", + "stats": "Stats for Nerds", + "resetHistory": "Reset History", + "ascendHistory": "Ascend History", + "singularityHistory": "Singularity History", + "hotkeys": "Hotkeys", + "account": "Account" + }, + "pseudocoins": { + "buy": "Purchase Coins", + "upgrades": "Buy Upgrades", + "merch": "Purchase Merch" + } + }, + "offlineProgress": { + "loading": "Loading Offline Progress...", + "prestigeCount": "Prestige Count: +", + "currentPrestigeTimer": "Current Prestige Timer: +<> seconds", + "offeringsGenerated": "Offerings Generated: <>", + "transcensionCount": "Transcension Count: +<>", + "currentTranscensionCounter": "Current Transcension Timer: +<> seconds", + "reincarnationCount": "Reincarnation Count: +<>", + "currentReincarnationTimer": "Current Reincarnation Timer: +<> seconds", + "obtainiumGenerated": "Obtainium Generated: <>", + "ingameAntSacTimer": "In-Game Ant Sacrifice Timer: +<> seconds", + "realAntSacTimer": "Real-Life Ant Sacrifice Timer: +<> seconds", + "currentAscensionTimer": "Current Ascension Timer: +<> seconds", + "exportQuarks": "Export Quarks: +<>" + }, + "corruptions": { + "names": { + "1": "Corruption I: Viscosity", + "2": "Corruption II: Spacial Dilation", + "3": "Corruption III: Hyperchallenged", + "4": "Corruption IV: Scientific Illiteracy", + "5": "Corruption V: Market Deflation", + "6": "Corruption VI: Extinction", + "7": "Corruption VII: Drought", + "8": "Corruption VIII: Financial Recession" + }, + "descriptions": { + "1": "You feel lethargic across the universe...", + "2": "Way to go, Albert.", + "3": "What's in a challenge?", + "4": "Maybe Albert wouldn't have theorized Dilation after all.", + "5": "Diamond Mine destroyed... no more monopolies!", + "6": "It killed the dinosaurs too, ya Dingus.", + "7": "More like California, am I right?", + "8": "Yet another 2020 catastrophe." + }, + "currentLevel": { + "1": "On this Ascension, this corruption is level {{ level }}. Effect: Free Accel. and Multipliers Exponent ^{{ effect }}", + "2": "On this Ascension, this corruption is level {{ level }}. Effect: Time Speed is divided by {{ effect }}", + "3": "On this Ascension, this corruption is level {{ level }}. Effect: Challenge Exponent Reqs. x{{ effect }}", + "4": "On this Ascension, this corruption is level {{ level }}. Effect: Obtainium gain ^{{ effect }}", + "5": "On this Ascension, this corruption is level {{ level }}. Effect: Diamond gain ^{{ effect }}", + "6": "On this Ascension, this corruption is level {{ level }}. Effect: Ant Production ^{{ effect }}", + "7": "On this Ascension, this corruption is level {{ level }}. Effect: Offering EXP divided by {{ effect }}", + "8": "On this Ascension, this corruption is level {{ level }}. Effect: Coin Gain ^{{ effect }}" + }, + "prototypeLevel": { + "1": "On next Ascension, this corruption will be level {{ level }}. Effect: Free Accel. and Multipliers Exponent ^{{ effect }}", + "2": "On next Ascension, this corruption will be level {{ level }}. Effect: Time Speed is divided by {{ effect }}", + "3": "On next Ascension, this corruption will be level {{ level }}. Effect: Challenge Exponent Reqs. x{{ effect }}", + "4": "On next Ascension, this corruption will be level {{ level }}. Effect: Obtainium gain ^{{ effect }}", + "5": "On next Ascension, this corruption will be level {{ level }}. Effect: Diamond gain ^{{ effect }}", + "6": "On next Ascension, this corruption will be level {{ level }}. Effect: Ant Production ^{{ effect }}", + "7": "On next Ascension, this corruption will be level {{ level }}. Effect: Offering EXP divided by {{ effect }}", + "8": "On next Ascension, this corruption will be level {{ level }}. Effect: Coin Gain ^{{ effect }}" + }, + "scoreMultiplier": "Current Score Multiplier: {{ curr }} / Next Ascension Score Multiplier: {{ next }}", + "spiritEffect": "This corruption gives Rune Spirit Effect +{{curr}}% / Next Ascension Rune Spirit Effect +{{next}}%", + "exitCorruption": { + "name": "CLEANSE THE CORRUPTION", + "description": "Free this world of sin.", + "current": "Reset all Corruptions to level 0 for your current ascension. Does not reset your current ascension.", + "planned": "Push that big 'Reset Corruptions' button to confirm your decision.", + "multiplier": "Note: if you need to do this, you may have bitten off more than you can chew." + }, + "max": "MAX", + "current": "Current: ", + "next": " / Next: ", + "loadoutTable": { + "next": "Next:", + "firstRowTitle": "Click to copy the next Corruptions to the clipboard. This is the format that can be imported", + "otherRowTitle": "Click to rename. Hotkey: SHIFT+{{ value }}", + "import": "Import", + "importTitle": "Import Corruption Loadout in text format", + "zero": "Zero", + "zeroTitle": "Reset Corruptions to zero on your next Ascension. Hotkey: SHIFT+9", + "save": "Save", + "saveTitle": "Save current Corruptions to this Loadout", + "load": "Load" + }, + "importCorruptionsPrompt": { + "import": "Enter a Corruption Loadout to import for next Ascension. It must be in the following text format: 1/2/3/4/5/6/7/8", + "importError": "Your input was not in the correct format, try again." + }, + "corruptionLoadoutName": { + "loadoutPrompt": "What would you like to name Loadout {{ loadNum }}? Names cannot be longer than {{ maxChars }} characters. Nothing crazy!", + "errors": { + "noName": "Okay, maybe next time.", + "exceedsCharacterLimit": "The name you provided is too long! Try again.", + "regexError": "The Loadout Renamer didn't like a character in your name! Try something else.", + "crazyJoke": "Ant God approves of your joke!" + } + }, + "loadoutExport": { + "saveErrorNavigator": "Unable to write the save to clipboard: {{ message }}" + }, + "corrStatsBtn": "Corruption Stats", + "corrLoadoutsBtn": "Corruption Loadouts", + "cleanse": "Cleanse", + "confirm": "Confirm", + "intro": "The most rewarding ventures are those few would dare to embark.", + "traitInfo": "Select the trait levels you wish to run with. Choose wisely! <>", + "antExponent": "This Ascension's climate raises Ant production to the power of <>.", + "spiritBonus": "However, it also multiplies Rune Spirit Effects by <>.", + "corruptionBank": "You have <> Wow! Cubes in the Ascension bank. Gain more by finishing Challenges! Ascend to redeem them.", + "corruptionScore": "Your Ascension Score is <> (base) * <> (Corruption mult) * <> (Bonus mult) = <>", + "ascensionCount": "If you Ascend now, <> will be added to your ascension count.", + "corruptionCubes": "If you Ascend now, you will gain <> Wow! Cubes.", + "corruptionTesseracts": "If you Ascend now, you will gain <> Wow! Tesseracts. [<100,000>>]", + "corruptionHypercubes": "If you Ascend now, you will gain <> Wow! Hypercubes. [<1,000,000,000>>]", + "corruptionPlatonics": "If you Ascend now, you will gain <> PLATONIC CUBES. [<2,666,000,000,000>>]", + "corruptionHepteracts": "If you Ascend now, you will gain <> HEPTERACTS. [<1.666e17>>]", + "autoAscend": { + "c10Completions": "Ascend when you've completed Sadistic Challenge I a total of <> times, Currently <>", + "realTime": "Ascend when the timer is at least <> seconds (Real-time), Currently <>", + "on": "Auto Ascend [ON]", + "off": "Auto Ascend [OFF]", + "modeCompletions": "Mode: C10 Completions", + "modeRealTime": "Mode: Real time" + }, + "importLoadoutInTextFormat": "Import Corruption Loadout in text format", + "loadoutApplied": "Corruption Loadout from previous run has been applied. This will take effect on the next Ascension." + }, + "footnotes": { + "buildings": "Press [1], [2], [3], [4], or [5] to buy the corresponding tier starting from the top. Press [A] to buy Accelerator, [M] to buy Multiplier, or [B] to buy Accelerator Boost.", + "buildings2": "Press [Left arrow] or [Right arrow] to switch tabs. Enjoy!", + "crystals": "Press [1], [2], [3], [4], or [5] to buy the respective tiered producer. Press [6], [7], [8], [9] or [0] to buy the corresponding Crystal upgrade starting on the left.", + "mythos": "Press [1], [2], [3], [4], or [5] to buy the respective tiered producer.", + "particle": "Press [1], [2], [3], [4], or [5] to buy the respective tiered producer.", + "upgrade": "Press [1], [2], [3], [4], [5] or [6] on your keyboard to use resources for each upgrades.", + "achievements": { + "green": "Green background: Achieved.", + "purple": "Purple background: Unachieved, provides bonus multiplier.", + "red": "Red background: Unachieved, provides content/feature unlock.", + "none": "No background: Unachieved, nothing special." + }, + "runes": "Press [1], [2], [3], [4] or [5] on your keyboard to use offerings for each rune, starting with Speed Rune on the left; must have rune unlocked to use hotkey!", + "challenges": { + "hotkey": "Press [1], [2]... up to [0] to enter challenges 1 to 10. Press [E] to exit your Transcension or Reincarnation challenge if stuck!", + "finishTranscension": "If you are unable to finish a Transcension challenge, press the hotkey listed above OR click on the purple Challenge \"C\" button on the reset buttons on top.", + "leaveReincarnation": "To leave a reincarnation challenge, press the grey Challenge \"C\" instead!" + }, + "research": "Welcome to the future! Obtainium is gained through <>. I'd recommend studying the <> researches first. The <> researches are never reset whereas the <> researches will reset upon the next reset tier!", + "shop": "Hover over each portion of the shop to see what each upgrade does!" + }, + "buildings": { + "taxWarning": "Your tax also caps your Coin gain at {{gain}}/s.", + "acceleratorPower": "Acceleration Power: {{power}}% || Acceleration Multiplier: {{mult}}x", + "multiplierPower": "Multiplier Power: {{power}}x || Multiplier: {{mult}}x", + "acceleratorBoost": "Reset Diamonds and Prestige Upgrades, but add {{amount}}% Acceleration Power and 5 free Accelerators.", + "coinsPerSecond": "Coins/Sec: {{coins}} [{{percent}}%]", + "costCoins": "Cost: {{coins}} coins.", + "costDiamonds": "Cost: {{diamonds}} Diamonds.", + "names": { + "workers": "Workers: {{amount}} [+{{gain}}]", + "investments": "Investments: {{amount}} [+{{gain}}]", + "printers": "Printers: {{amount}} [+{{gain}}]", + "coinMints": "Coin Mints: {{amount}} [+{{gain}}]", + "alchemies": "Alchemies: {{amount}} [+{{gain}}]", + "accelerators": "Accelerators: {{amount}} [+{{gain}}]", + "multipliers": "Multipliers: {{amount}} [+{{gain}}]", + "acceleratorBoost": "Accelerator Boost: {{amount}} [+{{gain}}]", + "refineries": "Refineries: {{amount}} [+{{gain}}]", + "coalPlants": "Coal Plants: {{amount}} [+{{gain}}]", + "coalRigs": "Coal Rigs: {{amount}} [+{{gain}}]", + "pickaxes": "Pickaxes: {{amount}} [+{{gain}}]", + "pandorasBoxes": "Pandoras Boxes: {{amount}} [+{{gain}}]", + "augments": "Augments: {{amount}} [+{{gain}}]", + "enchantments": "Enchantments: {{amount}} [+{{gain}}]", + "wizards": "Wizards: {{amount}} [+{{gain}}]", + "oracles": "Oracles: {{amount}} [+{{gain}}]", + "grandmasters": "Grandmasters: {{amount}} [+{{gain}}]", + "protons": "Protons: {{amount}} [+{{gain}}]", + "elements": "Elements: {{amount}} [+{{gain}}]", + "pulsars": "Pulsars: {{amount}} [+{{gain}}]", + "quasars": "Quasars: {{amount}} [+{{gain}}]", + "galacticNuclei": "Galactic Nuclei: {{amount}} [+{{gain}}]", + "dot": "Dot: {{amount}} [+{{gain}}]", + "vector": "Vector: {{amount}} [+{{gain}}]", + "threeSpace": "Three-Space: {{amount}} [+{{gain}}]", + "bentTime": "Bent Time: {{amount}} [+{{gain}}]", + "hilbertSpace": "Hilbert Space: {{amount}} [+{{gain}}]" + }, + "crystalMult": "You have {{crystals}} Crystals, multiplying Coin production by {{gain}}.", + "hoverCrystalUpgrade": "Hover over a crystal upgrade to get information!", + "autoPrestige": "{{action}} when your {{name}} can increase by a factor {{factor}} [Toggle number above]. Current Multiplier: {{mult}}.", + "per": { + "crystal": "Crystal/sec: {{amount}}", + "ref": "Ref./sec: {{amount}}", + "plants": "Plants/sec: {{amount}}", + "rigs": "Rigs/sec: {{amount}}", + "pickaxes": "Pickaxes/sec: {{amount}}", + "shards": "Shards/sec: {{amount}}", + "augments": "Augments/sec: {{amount}}", + "enchantments": "Enchantments/sec: {{amount}}", + "wizards": "Wizards/sec: {{amount}}", + "oracles": "Oracles/sec: {{amount}}", + "atoms": "Atoms/sec: {{amount}}", + "protons": "Protons/sec: {{amount}}", + "elements": "Elements/sec: {{amount}}", + "pulsars": "Pulsars/sec: {{amount}}", + "quasars": "Quasars/sec: {{amount}}", + "constant": "+Constant/sec: {{amount}}", + "dot": "Dot/sec: {{amount}}", + "vector": "Vector/sec: {{amount}}", + "threeSpace": "Three-Space/sec: {{amount}}", + "bentTime": "Bent Time/sec: {{amount}}" + }, + "crystalUpgrades": { + "currentLevel": "Current Level: <>", + "cost": "Cost: <> crystals", + "currentEffect": "Current Effect: <>" + }, + "mythosYouHave": "You have {{shards}} Mythos Shards, providing {{mult}} Multiplier Power boosts.", + "eachMultiplierBoost": "Each Multiplier Boost increases the base effect of Multipliers by 0.005!", + "costMythos": "Cost: {{mythos}} Mythos", + "atomsYouHave": "You have {{atoms}} Atoms, providing {{power}} Building Power. Multiplier to Coin Production: {{mult}}", + "costParticles": "Cost: {{particles}} Particles", + "autoReincarnate": "{{name}} when the autotimer is at least {{amount}} real-life seconds. [Toggle number above]. Current timer: {{timer}}s.", + "thanksR2x14": "Thanks to Research 2x14, you also multiply Crystal production by {{mult}}", + "thanksR2x15": "Thanks to Research 2x15, you also multiply Mythos Shard production by {{mult}}", + "tesseractsYouHave": "You have {{tesseracts}} Wow! Tesseracts. Gain more by beating Challenge 10 on each Ascension.", + "constantYouHave": "You have a mathematical constant of {{const}}. Taxes are divided by {{amount}}.", + "costTesseracts": "Cost: {{tesseracts}} Tesseracts", + "autoTesseract": "Auto buyer will save at least {{tesseracts}} tesseracts. [Enter number above].", + "autoAscensionTesseract": "On Ascension, Auto buyer will save at least {{percent}}% of your current amount of tesseracts. [Enter number above].", + "excessiveWealth": "Due to your excessive wealth, coin production is divided by {{div}} to pay taxes! {{- warning}}", + "constantHover": "Hover over an icon for a description of the upgrade. Click to buy it!" + }, + "octeract": { + "buyLevel": { + "buyPrompt": "How many Octeracts would you like to spend? You have {{n}} OCT. Type -1 to use max!", + "cancelPurchase": "Purchase cancelled!", + "alreadyMax": "Hey! You have already maxed this upgrade. :D", + "cannotAfford": "You cannot afford this upgrade. Sorry!", + "multiBuy": "Purchased {{n}} levels, thanks to Multi Buy!" + }, + "toString": { + "costNextLevel": "Cost for next level", + "becomeAffordable": "(Affordable in {{n}})" + }, + "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 40% More Quarks, 20% More Octeracts, And 100,000x Ant Speed...", + "effect": "You have {{n}} paid your respects to Derpsmith." + }, + "octeractGain": { + "name": "Octeract Cogenesis", + "description": "Have you despised how slow these damn things are? Gain 1% more of them per level! Simple.", + "effect": "Octeract Gain is increased by {{n}}%." + }, + "octeractGain2": { + "name": "Octeract Trigenesis", + "description": "It turns out that you have six additional dimensions to modify your Cogenesis. +1% more Octs per level!", + "effect": "Octeract Gain is increased by {{n}}%." + }, + "octeractQuarkGain": { + "name": "Quark Octeract", + "description": "An altered forme of the hepteract, this gives a 1.1% Quark Bonus per level without Diminishing Return.", + "effect": "Quark gain is increased by {{n}}%." + }, + "octeractQuarkGain2": { + "name": "Octo-Hepteract Primality Synergism", + "description": "For every 111 levels of Quark Octeract, you gain 0.01% more quarks per digit in your Quark Hepteract count per level!", + "effect": "Octo-Hepteract Primality Synergism is {{n}} active." + }, + "octeractCorruption": { + "name": "EXTRA CHONKY Corruptions", + "description": "Adds one level to the cap on corruptions. Derpsmith approves.", + "effect": "Corruption level cap is increased by {{n}}" + }, + "octeractGQCostReduce": { + "name": "EXTRA WIMPY Golden Quark Costs!", + "description": "Reduces the cost of Golden Quarks in the shop by 1% per level.", + "effect": "Golden Quarks are {{n}}% cheaper!" + }, + "octeractExportQuarks": { + "name": "Improved Download Speeds", + "description": "Thanks to ethernet technology, export quarks are increased by 40% per level! Only normal ones.", + "effect": "Export quarks +{{n}}%" + }, + "octeractImprovedDaily": { + "name": "CHONKER Daily Code", + "description": "Derpsmith hacks into the source code, and adds +1 free Singularity upgrade per day from Daily.", + "effect": "Code 'daily' gives +{{n}} free Singularity upgrades per use." + }, + "octeractImprovedDaily2": { + "name": "CHONKERER Daily Code", + "description": "Derpsmith implemented hyperspeed multiplication. +1% more free Singularity upgrades per day from Daily!", + "effect": "Code 'daily' gives +{{n}}% more free Singularity upgrades per use." + }, + "octeractImprovedDaily3": { + "name": "CHONKEREREST Daily Code", + "description": "It will never satisfy Derpsmith. +1 +0.5% more free Singularity upgrades per day from Daily!", + "effect": "Code 'daily' gives +{{n}} more free Singularity upgrades per use." + }, + "octeractImprovedQuarkHept": { + "name": "I wish for even better Quark Hepteracts.", + "description": "The godmother is absent, but Derpsmith is here! +2% DR exponent per level. Stacks additively with all the others!", + "effect": "Quark Hepteract DR +{{n}}." + }, + "octeractImprovedGlobalSpeed": { + "name": "The forbidden clock of time", + "description": "Hypothesized to be locked in a hyperbolic time chamber. +1% Global Speed per level per singularity!", + "effect": "Global Speed per singularity +{{n}}%" + }, + "octeractImprovedAscensionSpeed": { + "name": "Abstract Photokinetics", + "description": "Gain +0.05% Ascension Speed per level per singularity!", + "effect": "Ascension Speed per singularity +{{n}}%" + }, + "octeractImprovedAscensionSpeed2": { + "name": "Abstract Exokinetics", + "description": "Gain +0.02% Ascension Speed per level per singularity!", + "effect": "Ascension Speed per singularity +{{n}}%" + }, + "octeractImprovedFree": { + "name": "Wow! I want free upgrades to be better.", + "description": "Singularity Upgrade level is (paid level * free levels)^0.6 instead of being added.", + "effect": "Singularity Upgrade free levels are {{n}} being powered!" + }, + "octeractImprovedFree2": { + "name": "Wow! Free upgrades still suck.", + "description": "Who said beggars can't be choosers? Extends the exponent of the first upgrade to 0.65.", + "effect": "Exponent of previous upgrade +{{n}}." + }, + "octeractImprovedFree3": { + "name": "Wow! Make free upgrades good already, Platonic!", + "description": "Extends the exponent of the free upgrades to 0.70.", + "effect": "Exponent of the first upgrade +{{n}}" + }, + "octeractImprovedFree4": { + "name": "Coupon of Ultimate Penniless Derpsmiths", + "description": "Each level adds 0.001 to the exponent of free upgrades, with the first level adding another 0.01!", + "effect": "Exponent of the first upgrade +{{n}}" + }, + "octeractSingUpgradeCap": { + "name": "Overwriting Pointers", + "description": "Derpsmith encountered a SegFault after reassigning null... +1 to level cap on certain Singularity Upgrades per level!", + "effect": "Some Singularity Upgrades have +{{n}} max level!" + }, + "octeractOfferings1": { + "name": "Offering Electrolosis", + "description": "Gain 1% more offerings per level.", + "effect": "Offering gain +{{n}}%" + }, + "octeractObtainium1": { + "name": "Obtainium Deluge", + "description": "Gain 1% more obtainium per level.", + "effect": "Obtainium gain +{{n}}%" + }, + "octeractAscensions": { + "name": "Voided Warranty", + "description": "Gain +1% Ascension Count per level, with a 2% bonus for every 10 levels.", + "effect": "Ascension Count increases {{n}}% faster." + }, + "octeractAscensions2": { + "name": "Hidden Late Fees", + "description": "Gain +1% Ascension Count per level, with a 2% bonus for every 10 levels. But... this scales a lot faster. Must be those hidden late fees.", + "effect": "Ascension Count increases {{n}}% faster." + }, + "octeractAscensionsOcteractGain": { + "name": "Digital Octeract Accumulator", + "description": "Octeract gain is 1% faster for every digit in your Ascension count!", + "effect": "Octeract Gain per OOM Ascension count +{{n}}%" + }, + "octeractFastForward": { + "name": "Derpsmith's Singularity Discombobulator", + "description": "Each level makes Singularity give +100% Golden Quarks (additive) and singularity at all time highest count grants +1 singularity count!", + "effect": "Singularities give {{n100}}% more GQ and count as {{n}} more." + }, + "octeractAutoPotionSpeed": { + "name": "Pill of Increased Thirst", + "description": "You can buy pills of thirst-making to consume potions automatically faster! 4% faster per level to be precise.", + "effect": "Auto Potion Singularity Perk works {{n}}% faster than before!" + }, + "octeractAutoPotionEfficiency": { + "name": "Vitamin O Infusion", + "description": "Thanks to the generosity of your Derpsmith, Potions are 2% more potent per level!", + "effect": "Potions give {{n}}% more Offerings and Obtainium." + }, + "octeractOneMindImprover": { + "name": "Infinite Transcription of the One Mind", + "description": "You ask what this upgrade does, but Derpsmith just nods his head. What is he hiding from you?", + "effect": "One Mind converts Ascension Speed to Octeract Gain to the power of {{n}}." + }, + "octeractAmbrosiaLuck2": { + "name": "Florentine Cranberries", + "description": "Totally not a reskin of the blueberry! Adds ☘ +2 Ambrosia Luck, which can increase Ambrosia drop amounts when Blueberries generate Ambrosia.", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "octeractAmbrosiaLuck3": { + "name": "Berries of a Four Leaf Clover", + "description": "Totally not a reskin of the blueberry! Adds ☘ +3 Ambrosia Luck per level.", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "octeractAmbrosiaLuck": { + "name": "Berries of an Eight Leaf Clover", + "description": "Totally not a reskin of the blueberry! Adds ☘ +4 Ambrosial Luck per level, and it is infinitely levelable!", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "octeractAmbrosiaLuck4": { + "name": "Berries of a Ten Leaf Clover", + "description": "Totally not a reskin of the blueberry! Adds ☘ +5 Ambrosial Luck. And it's mega expensive somehow.", + "effect": "☘ Ambrosia Luck +{{n}}(!)" + }, + "octeractAmbrosiaGeneration2": { + "name": "Hourglass of Minutiae", + "description": "A somewhat primative hourglass which somehow makes your blueberries generate seconds 1% faster per level..", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + }, + "octeractAmbrosiaGeneration3": { + "name": "Hourglass of Myopathy", + "description": "An hourglass which is still primative, though somehow less so. +1% Blueberry Second Generation per level.", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + }, + "octeractAmbrosiaGeneration": { + "name": "Hourglass of Infinitude", + "description": "Don't get it twisted- this hourglass is really primative. But it gives +1% Blueberry Second Generation per level and is infinitely levelable!", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + }, + "octeractAmbrosiaGeneration4": { + "name": "Hourglass of Reality", + "description": "An hourglass which is nonprimative and 'more timely'- whatever that means. +2% Blueberry Second Generation per level.", + "effect": "Blueberry Seconds Generation +{{n}}%(!)" + } + }, + "amount": "You have {{octeracts}} Octeracts!", + "secondsPerOcteract": "+1 per <> seconds", + "octeractsPerSecond": "<> per second", + "totalGenerated": "Total Generated: <> Octeracts!", + "generatedCubeBonus": "3-7 Dimensional Cubes <>", + "generatedQuarkBonus": "Quarks <>", + "generatedOfferingBonus": "Offerings <>", + "generatedObtainiumBonus": "Obtainium <>" + }, + "runes": { + "offeringsYouHave": "You have {{offerings}} Offerings.", + "gainExp": "Gain {{amount}}x EXP per offering sacrificed.", + "recycleChance": "You have {{percent}}% chance of recycling your offerings. This multiplies EXP gain by {{mult}}!", + "hover": "Hey, hover over a rune icon to get details on what each one does and what benefits they're giving you!", + "thanksResearches": "Thanks to researches, your effective levels are increased by {{percent}}%", + "levelup": { + "1": "+(Level/4)^1.25 Accelerator, +0.25% Accelerators per level. +1 Accelerator Boost every 20 levels!", + "2": "+(Level/10) Multipliers every 10th level, +0.25% Multipliers per level. Tax growth is delayed more for each level!", + "3": "~(1 + (Level/2)^2 * 2^(Level/2) / 256)x Crystal Production. +1 free level for each Crystal upgrade per 16 levels!", + "4": "+0.125% building cost growth delay per level, +0.0625% Offering recycle chance per level [MAX: 25%], 2^((1000 - Level)/1100) Tax growth multiplier AFTER level 400", + "5": "~(1 + level/200)x Obtainium, (1 + Level^2/2500)x Ant Hatch Speed, +0.005 base Offerings for each tier per level", + "6": "+0.2% Quarks, +1% all Cube types per level! Start with +10% Quarks.", + "7": "I wonder what happens if you feed it {{exp}} Rune EXP." + }, + "power": { + "1": "Speed Rune Bonus: +{{bonus}} Accelerators, +{{percent}}% Accelerators, +{{boost}} Accelerator Boosts.", + "2": "Duplication Rune Bonus: +{{mult1}} Multipliers, +{{mult2}}% Multipliers, -{{tax}}% Tax Growth.", + "3": "Prism Rune Bonus: All Crystal Producer production multiplied by {{mult}}, gain +{{gain}}' free crystal levels.", + "4": "Thrift Rune Bonus: Delay all producer cost increases by {{delay}}%. Offering recycle chance: +{{chance}}%. -{{tax}}% Tax Growth", + "5": "S. Intellect Rune Bonus: Obtainium gain x{{gain}}. Ant Speed: x{{speed}}. Base Offerings: +{{offerings}}", + "6": "IA Rune Bonus: Quark Gain +{{percent1}}%, Ascensions give +{{percent2}}% more of all cube types.", + "7": "You cannot grasp the true form of Ant God's treasure." + }, + "talismans": { + "fortify": "FORTIFY", + "enhance": "ENHANCE", + "respec": "RESPEC", + "respecAll": "RESPEC ALL", + "respecConfirm": "Confirm [-100,000 Offerings]", + "respecConfirmAll": "Confirm All [-400,000 Offerings]", + "respecCancel": "Cancel Respec Changes", + "respecSummary": "+-==-+ Select for 3 GREEN Runes, for Respec! +-==-+", + "buy": "BUY", + "buyAll": "BUY ALL", + "autoBuyOn": "Auto Buy: ON", + "autoBuyOff": "Auto Buy: OFF", + "clickBuyEveryType": "Click to buy every type of Talisman Shards and Fragments, if affordable", + "costToBuy": "Cost to buy {{name}} ({{buyAmount}}): {{obtainium}} Obtainium and {{offerings}} Offerings.", + "modifiers": { + "positive": "{{name}}: Positive", + "negative": "{{name}}: Negative" + }, + "shards": { + "shard": "Talisman Shard", + "commonFragment": "Common Fragment", + "uncommonFragment": "Uncommon Fragment", + "rareFragment": "Rare Fragment", + "epicFragment": "Epic Fragment", + "legendaryFragment": "Legendary Fragment", + "mythicalFragment": "Mythical Fragment" + }, + "names": { + "exemption": "Exemption", + "chronos": "Chronos", + "midas": "Midas", + "metaphysics": "Metaphysics", + "polymath": "Polymath", + "mortuus": "Mortuus Est", + "plastic": "Plastic" + }, + "summaries": { + "exemption": "=-=-=-= Exemption Talisman Effects =-=-=-=", + "chronos": "=-=-=-= Chronos Talisman Effects =-=-=-=", + "midas": "=-=-=-= Midas Talisman Effects =-=-=-=", + "metaphysics": "=-=-=-= Metaphysics Talisman Effects =-=-=-=", + "polymath": "=-=-=-= Polymath Talisman Effects =-=-=-=", + "mortuus": "=-=-=-= Mortuus Est Talisman Effects =-=-=-=", + "plastic": "=-=-=-= Plastic Talisman Effects =-=-=-=" + }, + "effects": { + "exemption": "Taxes -{{x}}%", + "chronos": "Gain +{{x}}% Global Speed Acceleration.", + "midas": "Rune Blessing bonuses +{{x}}%", + "metaphysics": "Talismans' Bonus Rune Levels +{{x}} per level", + "polymath": "Rune Spirit Bonuses +{{x}}%", + "mortuus": "Bonus Ant Levels: +{{x}}", + "plastic": "Gain 1x normal production (Joke)!" + }, + "bonusRuneLevels": { + "speed": "Bonus Speed Rune Levels: {{x}}", + "duplication": "Bonus Duplication Rune Levels: {{x}}", + "prism": "Bonus Prism Rune Levels: {{x}}", + "thrift": "Bonus Thrift Rune Levels: {{x}}", + "SI": "Bonus SI Rune Levels: {{x}}" + }, + "mythicEffects": { + "exemption": "Mythic Effect: +400 Duplication Rune Levels!", + "chronos": "Mythic Effect: +400 Speed Rune Levels!", + "midas": "Mythic Effect: +400 Thrift Rune Levels!", + "metaphysics": "Mythic Effect: +400 Prism Rune Levels!", + "polymath": "Mythic Effect: +400 SI Rune Levels!", + "mortuus": "Mythic Effect: Gain ant speed based on your total rune level!", + "plastic": "Mythic Effect: Gain 1x your normal quark values (Joke)!" + }, + "maxEnhance": "Get Max Enhance for a Mythical bonus effect!" + }, + "blessings": { + "buyUpTo": "Buy up to <> Levels per purchase, if affordable. [Input to toggle]", + "autoRuneOn": "Auto Rune: ON", + "autoRuneOff": "Auto Rune: OFF", + "allIncreaseLevel": "ALL Increase Level", + "blessingLevel": "<>: {{amount}}", + "blessingPower": "Blessing Power: <> =-=-= Effect: <>x {{reward}}!", + "rewards": { + "0": "Global Speed", + "1": "Multiplier Boosts", + "2": "Ant Sacrifice Rewards", + "3": "Delay for A.Boost Cost", + "4": "Obtainium --> Ant Mult." + }, + "increaseLevel": "Increase Level By <> [Cost: <> Offerings]" + }, + "spirits": { + "spiritLevel": "Spirit level: <>", + "spiritPower": "Spirit Power: <> =-=-= Effect: <>{{reward}}!", + "rewards": { + "0": "x Global Speed", + "1": "x Wow! Cubes by Ascension", + "2": "x Additional levels to Crystal caps", + "3": "x Obtainium", + "4": "% stronger Research 4x9 effect" + }, + "buyUpTo": "Buy up to <> Levels per purchase, if affordable. [Input to toggle]" + }, + "perOfferingText": "+{{exp}} EXP per offering, {{x}} [{{y}}] Offerings to level up once.", + "runeEffectSummaryTitle": "=====RUNE EFFECT SUMMARY=====", + "bonusAmount": "[Bonus: {{x}}]", + "bonusNope": "[Bonus: Nope!]", + "resourcesToEnhance": "=-=-= Resources Required to ENHANCE =-=-=", + "resourcesToLevelup": "-=-=- Resources Required to Level Up -=-=-", + "autoEnhanceOn": "Auto Enhance: ON", + "autoEnhanceOff": "Auto Enhance: OFF", + "autoFortifyOn": "Auto Fortify: ON", + "autoFortifyOff": "Auto Fortify: OFF", + "names": { + "speed": "Speed Rune", + "duplication": "Duplication Rune", + "prism": "Prism Rune", + "thrift": "Thrift Rune", + "SI": "Superior Intellect", + "IA": "Infinite Ascent", + "AOAG": "Antiquities of Ant God" + }, + "maxLevel": "Maxed Level!", + "TNL": "+1 in {{EXP}} EXP" + }, + "singularityChallenge": { + "enterChallenge": { + "lowSingularity": "Derpsmith prohibits you from entering this challenge. Go do some more Singing first.", + "confirmation": "You are about to enter {{name}}. Your Singularity Timer will not reset but you will be taken back to the beginning of a Singularity. Do you proceed?", + "decline": "Derpsmith nods his head. Come back when you are ready...", + "acceptSuccess": "You are attempting {{name}} #{{tier}}! You were sent to Singularity {{singReq}}. Buy Antiquities to complete the challenge!", + "acceptFailure": "Derpsmith declares you are already in a singularity challenge and prohibits you from destroying the fabric of your Reality." + }, + "exitChallenge": { + "incompleteWarning": "WARNING: You will not get a completion as you have not yet purchased Antiquities.", + "confirmation": "Are you sure you want to quit {{name}} Tier {{tier}} \n{{warning}}`", + "decline": "Derpsmith tries to hug you, but he has no arms.", + "acceptSuccess": "You have completed the {{tier}} tier of {{name}}! The corresponding challenge rewards have been updated.", + "acceptFailure": "You have been transported back to your highest reached Singularity. Try again soon! -Derpsmith" + }, + "toString": { + "canEnter": "Can be entered after reaching Singularity {{unlockSing}} [Your highest: {{highestSing}}]", + "tiersCompleted": "Tiers completed", + "currentTierSingularity": "The current tier of this challenge takes place in Singularity" + }, + "data": { + "noSingularityUpgrades": { + "name": "No Singularity Upgrades", + "description": "Simply put, you have to beat the target singularity without (most) Singularity Upgrades.
Octeracts, Perks and Quality of Life Singularity Upgrades are preserved.", + "ScalingReward1": "+50% increase to <> gain", + "UniqueReward1": "1st - +12% <>!", + "UniqueReward2": "1st - A free <>!", + "UniqueReward3": "20th - A new <> upgrade!", + "UniqueReward4": "30th - +6% <> for free!", + "UniqueReward5": "30th - A new <> upgrade for NOT FREE!" + }, + "oneChallengeCap": { + "name": "One Challenge Caps", + "description": "Beat the target Singularity, but the first 14 Challenges have cap of only 1!", + "ScalingReward1": "+0.03 increase to <> values", + "ScalingReward2": "+1% <> Speed", + "UniqueReward1": "1st - +3 <> Cap!", + "UniqueReward2": "20th - +1 Free <>", + "UniqueReward3": "20th - A new <> upgrade!", + "UniqueReward4": "25th - +7 <> Cap! And +2 to Ascension Challenge caps." + }, + "noOcteracts": { + "name": "No Octeract Effects", + "description": "Beat the target Singularity, but octeracts and their upgrades do nothing!
Effective Singularity is also much higher based on tier.", + "ScalingReward1": "+0.02 increase to <> bonus power (Base: 2.00)", + "UniqueReward1": "1st - A bonus to <> based on <>!", + "UniqueReward2": "10th - A bonus to <> based on <>!", + "UniqueReward3": "10th - A new <> upgrade!" + }, + "limitedAscensions": { + "name": "Twenty Ascensions Challenge", + "description": "Derpsmith put an embargo on Ascensions. Only (20 - completions) are allowed throughout the entire Singularity, before Ascensions trigger massive debuffs!
Ascension Count Multiplier is hardcapped at 1. Oh and Delta is disabled. Ha.", + "ScalingReward1": "<> per Digit in your <>", + "UniqueReward1": "1st - Permanently double the cap of <> for free!!! (This is really good!)", + "UniqueReward2": "1st - A new feature ;) <>", + "UniqueReward3": "20th - A bonus to <>, <> & <> while in an EXALT! (Based on that Exalts total completions!)", + "UniqueReward4": "25th - A new <> Calculator, amazing!" + }, + "noAmbrosiaUpgrades": { + "name": "No Ambrosia Upgrades", + "description": "Gold Guy has lost his muster (and yes, that's his name!) and needs your help.
Clear the Singularity without any effects from Ambrosia or Ambrosia-Tier Upgrades!", + "ScalingReward1": "+15 & +0.5% <>", + "ScalingReward2": "+2% <> Speed", + "UniqueReward1": "1st - A free <>!", + "UniqueReward2": "1st - +1 <> every time <> is gained!", + "UniqueReward3": "10th - Another free <>!!!", + "UniqueReward4": "15th - A new <> upgrade!", + "UniqueReward5": "20th - A THIRD FREE <>?!?!", + "UniqueReward6": "20th - An <> upgrade!" + }, + "limitedTime": { + "name": "The Grand Singularity Speedrun!", + "description": "Derpsmith has a stopwatch and he's not afraid to use it! Beat the target Singularity in a limited time frame!
<>
After (600 - 20 * completion) seconds, your obt/off/cube production shatters (Divides by (10 + completions) every minute.", + "ScalingReward1": "+6% <>!", + "ScalingReward2": "+6% <>!", + "ScalingReward3": "+1% <>!", + "UniqueReward1": "1st - your quarks no longer reset on singulatity!", + "UniqueReward2": "15th - A new <> upgrade!", + "UniqueReward3": "25th - A very expensive, not good, pretty bad <> upgrade!" + }, + "sadisticPrequel": { + "name": "SADISTIC EXALT III - The Prequel", + "description": "How much more will Platonic misuse the word 'Sadistic'? [No Sing Upgrade, Oct Upgrades OR Ambrosia Upgrades]", + "ScalingReward1": "+3% <> per completion!", + "ScalingReward2": "+3% more <> from code 'Daily' per completion!", + "UniqueReward1": "1st - +50 Free Upgrades from code 'Daily'!", + "UniqueReward2": "10th - A first-tier <>", + "UniqueReward3": "20th - A second-tier <>", + "UniqueReward4": "30th - A particularly Sadistic <>!" + } + }, + "intro": "Do you have what it takes to earn EXALT from Ant God?", + "ScalingHeader": "Scaling Effects (Per Completion)", + "UniqueHeader": "Unique Effects (On Completion #)" + }, + "settings": { + "confirmationTitle": "Confirmation Toggles", + "noHotkeyAvailable": "These do not work with hotkeys. Too bad!", + "specialActions": "Special Actions", + "daily": "Daily", + "add": "Add", + "addAll": "xAll", + "add1": "Add x1", + "time": "Time", + "enterPromoCodeHere": "Enter a promotion code here!", + "currentTheme": "Current Theme", + "themes": { + "dark": "Dark Mode", + "darker": "Darker Mode", + "lighterDark": "Lighter Dark Mode", + "light": "Light Mode", + "dracula": "Dracula Mode" + }, + "currentIconSet": "Current Icon Set", + "notation": { + "default": "Default", + "pureScientific": "Pure Scientific", + "pureEngineering": "Pure Engineering" + }, + "currentNotation": "Current Annotation", + "iconSets": { + "default": "Default", + "legacy": "Legacy", + "simplified": "Simplified", + "monotonous": "Monotonous" + }, + "joinDiscord": "Click the image below to join the Discord!", + "joinPatreon": "Support Development on Patreon!", + "exportQuark": "{{x}}s until +{{y}} export Quark", + "exportGoldenQuark": "{{x}}s until +{{y}} export Golden Quark", + "quarksOnExport": "Quarks on export: {{x}} [Max {{y}}]", + "goldenQuarksOnExport": "Golden Quarks on export: {{x}} [Max {{y}}]", + "copyToClipboard": "Copy to Clipboard", + "exportHere": "Export the game here", + "currently": "Currently: {{x}}", + "loadGameBelow": "Load game below!", + "loadFromFile": "Load from file", + "saveManually": "Save the game manually", + "deleteSave": "Delete savefile", + "events": { + "inactive": "<> INACTIVE", + "activeUntil": "ACTIVE UNTIL: {{x}}", + "starts": "STARTS {{x}}" + } + }, + "wowCubes": { + "greenText": "You can also spend them on upgrades that persist through Ascension.", + "open1": "Open x1", + "open10%": "Open 10%", + "open50%": "Open 50%", + "openCustom": "Custom Amount", + "openAll": "Open All", + "autoOff": "Auto Open [OFF]", + "autoOn": "Auto Open {{percent}}%", + "quarks": { + "quarkTitle": "-=- Cube to Quark Corner -=-", + "resetInfo": "Quark Rewards reset midnight!", + "cubeQuarksToday": "Quarks gained from Cubes: <>", + "cubeQuarksOpenRequirement": "Open {{amount}} Cubes for next quark.", + "cubeQuarksOpenToday": "Cubes opened today: <>", + "tesseractQuarksToday": "Quarks gained from Tesseracts: <>", + "tesseractQuarksOpenRequirement": "Open {{amount}} Tesseracts for next quark.", + "tesseractQuarksOpenToday": "Tesseracts opened today: <>", + "hypercubeQuarksToday": "Quarks gained from Hypercubes: <>", + "hypercubeQuarksOpenRequirement": "Open {{amount}} Hypercubes for next quark.", + "hypercubeQuarksOpenToday": "Hypercubes opened today: <>", + "platonicCubeQuarksToday": "Platonic Cubes gained from Cubes: <>", + "platonicCubeQuarksOpenRequirement": "Open {{amount}} Platonic Cubes for next quark.", + "platonicCubeQuarksOpenToday": "Platonic Cubes opened today: <>" + }, + "cubes": { + "intro": "You feel a sense of Pride and Accomplishment... and a hunger for power.", + "instructions": "Open up some Lootb-- er, Wow! Cubes, to get one of ten permanent bonuses.", + "inventory": "You possess <> Wow! Cubes. Get them from ascending!", + "total": "You have a total of <> Cube tributes!", + "items": { + "1": "Hermes' Tribute x{{amount}}: +{{bonus}} Accelerators per Accelerator Boost", + "2": "Aphrodite's Tribute x{{amount}}: +{{bonus}}% Multipliers", + "3": "Plutus' Tribute x{{amount}}: +{{bonus}}% Offering Gain", + "4": "Iris' Tribute x{{amount}}: +{{bonus}}% Rune EXP", + "5": "Athena's Tribute x{{amount}}: +{{bonus}}% Obtainium Gain", + "6": "Artemis' Tribute x{{amount}}: +{{bonus}}% Ant Speed", + "7": "Ares' Tribute x{{amount}}: +{{bonus}}% Sacrifice Reward", + "8": "Moloch's Tribute x{{amount}}: +{{bonus}} Effective ELO", + "9": "Midas' Tribute x{{amount}}: +{{bonus}} Bonus Rune Levels on Talismans", + "10": "Chronos' Tribute x{{amount}}: +{{bonus}}% Global Time Acceleration" + } + }, + "tesseracts": { + "intro": "You obtain guidance from beings in another dimension!", + "instructions": "Open up some Lootb-- er, Wow! Tesseracts, to boost tributes from the previous tier.", + "inventory": "You possess <> Wow! Tesseracts. Get them from ascending with at least 100,000 score!", + "total": "You have a total of <> Tesseract gifts!", + "items": { + "1": "Hermes' Gift x{{amount}}: +{{bonus}}% Hermes Tribute Power", + "2": "Aphrodite's Gift x{{amount}}: +{{bonus}}% Aphrodite Tribute Power", + "3": "Plutus' Gift x{{amount}}: +{{bonus}}% Plutus Tribute Power", + "4": "Iris' Gift x{{amount}}: +{{bonus}}% Iris Tribute Power", + "5": "Athena's Gift x{{amount}}: +{{bonus}}% Athena Tribute Power", + "6": "Artemis' Gift x{{amount}}: +{{bonus}}% Artemis Tribute Power", + "7": "Ares' Gift x{{amount}}: +{{bonus}}% Ares Tribute Power", + "8": "Moloch's Gift x{{amount}}: +{{bonus}}% Moloch Tribute Power", + "9": "Midas' Gift x{{amount}}: +{{bonus}}% Midas Tribute Power", + "10": "Chronos' Gift x{{amount}}: +{{bonus}}% Chronos Tribute Power" + } + }, + "hypercubes": { + "intro": "I didn't know that Wow! enterprises made 5-Dimensional Objects.", + "instructions": "Open up some Lootb-- er, Wow! Hypercubes, to boost blessings from the previous tier.", + "inventory": "You possess <> Wow! Hypercubes. Get them from ascending with at least 1e9 score!", + "total": "You have a total of <> Hypercube benedictions!", + "items": { + "1": "Hermes' Benediction x{{amount}}: +{{bonus}}% Hermes Gift Power", + "2": "Aphrodite's Benediction x{{amount}}: +{{bonus}}% Aphrodite Gift Power", + "3": "Plutus' Benediction x{{amount}}: +{{bonus}}% Plutus Gift Power", + "4": "Iris' Benediction x{{amount}}: +{{bonus}}% Iris Gift Power", + "5": "Athena's Benediction x{{amount}}: +{{bonus}}% Athena Gift Power", + "6": "Artemis' Benediction x{{amount}}: +{{bonus}}% Artemis Gift Power", + "7": "Ares' Benediction x{{amount}}: +{{bonus}}% Ares Gift Power", + "8": "Moloch's Benediction x{{amount}}: +{{bonus}}% Moloch Gift Power", + "9": "Midas' Benediction x{{amount}}: +{{bonus}}% Midas Gift Power", + "10": "Chronos' Benediction x{{amount}}: +{{bonus}}% Chronos Gift Power" + } + }, + "platonics": { + "intro": "This seems very familiar.", + "instructions": "Open up some Lootb-- er, Platonic! Cubes, for epic perks!.", + "inventory": "You possess <> Wow! Platonic Cubes. Get them from ascending with at least 2.666e12 score!", + "total": "You have a total of <> Platonic Cubes opened!", + "items": { + "1": "Cube Shard: x{{amount}}: +{{bonus}}% Bonus Wow! Cubes", + "2": "Tesseract Shard: x{{amount}}: +{{bonus}}% Bonus Wow! Tesseracts", + "3": "Hypercube Shard: x{{amount}}: +{{bonus}}% Bonus Wow! Hypercubes", + "4": "Platonic Remnant: x{{amount}}: +{{bonus}}% Bonus Platonic! Cubes", + "5": "Hypercube Statue: x{{amount}}: +{{bonus}}% ALL Hypercube bonuses", + "6": "Keynesian Statue: x{{amount}}: +{{bonus}}% Bonus Constant exponent on taxes", + "7": "High-Scoring Statue: x{{amount}}: +{{bonus}}% More Score on corruptions", + "8": "Chronos Statue: x{{amount}}: +{{bonus}}% <> Global Speed (after speed diminishing returns)" + } + }, + "hepteractForge": { + "howDidIGetHere": "How did I get here?", + "noTimeToWaste": "Oh well, no time to waste. This is your lab. Make cool stuff with your Hepteracts!", + "noPassiveBonus": "Hepteracts do not provide passive bonuses. They must be made useful through crafting.", + "youPossessHepteracts": "You possess <> Hepteracts! You know where to get these, right?", + "craft": "Craft", + "max": "Max", + "expand": "Expand", + "warp": "Warp", + "autoSetting": "Auto Setting : {{x}}%", + "autoCraftPercentage": "Autocraft Percentage", + "autoCraftPercentagePrompt": "Enter a number from 0 to 100 (integer only!) to set autocraft percentage. Every ascension, that percentage of your hepteracts are used to craft equally split between every hepteract with AUTO ON. Auto crafting also does not consume other resources! [Except Quarks, of course...]", + "unlocked": "< UNLOCKED >", + "locked": "< LOCKED >", + "inventory": "Inventory: {{x}} / {{y}}", + "orbs": "Orbs:", + "effect": "Effect:", + "powder": "Powder:", + "warps": "Warps:", + "descriptions": { + "chronos": { + "effect": "This hepteract bends time, in your favor. +0.06% Ascension Speed per Chronos Hepteract.", + "currentEffect": "Current Effect: Ascension Speed +{{x}}%", + "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Obtainium!" + }, + "hyperrealism": { + "effect": "This bad boy can make hypercube gain skyrocket. +0.06% Hypercubes per Hyperreal Hepteract.", + "currentEffect": "Current Effect: Hypercubes +{{x}}%", + "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Offerings." + }, + "quark": { + "effect": "One pound, two pound fish, fishy grant +0.05% Quarks per Quark Hepteract fish fish.", + "currentEffect": "Current Effect: Quarks +{{x}}%", + "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Quarks." + }, + "challenge": { + "effect": "That's preposterous. How are you going to gain +0.05% C15 Exponent per Challenge Hepteract? How!?", + "currentEffect": "Current Effect: C15 Exponent +{{x}}%", + "oneCost": "One of these will cost you {{x}} Hepteracts, {{y}} Platonic Cubes and {{z}} Cubes." + }, + "abyss": { + "effect": "It seems like this holds the power to be at the End of Time. Do you remember why you need this?", + "currentEffect": "<[You will submit to the Omega Entity of Time]>", + "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Wow! Cubes (lol)" + }, + "accelerator": { + "effect": "Haha, stupid Corruptions. +2,000 +0.03% Uncorruptable Accelerators per 'Way too many accelerators' Hepteract!", + "currentEffect": "Current Effect: Uncorruptable Accelerators +{{x}} + {{y}}%", + "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Wow! Tesseracts" + }, + "acceleratorBoost": { + "effect": "Haha, stupid Corruptions. +0.1% Accelerator Boosts per 'Way too many accelerator boosts' Hepteract!", + "currentEffect": "Current Effect: Accelerator Boosts +{{x}}%", + "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Hypercubes" + }, + "multiplier": { + "effect": "Haha, stupid Corruptions. +1,000 +0.03% Uncorruptable Multipliers per 'Way too many multipliers' Hepteract!", + "currentEffect": "Current Effect: Uncorruptable Multipliers +{{x}} +{{y}}%", + "oneCost": "One of these will cost you {{x}} Hepteracts and {{y}} Obtainium" + } + } + } + }, + "dynamicUpgrades": { + "validation": { + "setPurchaseAmount": "Set maximum purchase amount per click for the {{x}} upgrade. Type -1 to set to MAX by default.", + "toggleKept": "Toggle kept at {{x}}.", + "onlyNegativeOne": "The only valid negative number for toggle is -1.", + "notZero": "You cannot set the toggle to 0." + }, + "toggleMax": "Your toggle is now set to MAX", + "toggle": "Your toggle is now set to {{x}}" + }, + "hepteracts": { + "unlockedCraft": "Congratulations. You have unlocked the ability to craft {{x}} in the hepteract forge!", + "notUnlocked": "This is not an unlocked craft, thus you cannot craft this item!", + "reachedCapacity": "You have reached the current capacity of {{x}}. Please expand to craft more.", + "craftMax": "This will attempt to craft as many as possible. \nYou can craft up to {{x}} ({{y}}%). Are you sure?", + "executionFailed": "Execution failed: material could not be calculated.", + "craft": "How many would you like to craft? \nYou can buy up to {{x}} ({{y}}%) amount.", + "cancelled": "Okay, maybe next time.", + "notEnough": "Insufficient inventory to expand.", + "craftedHepteracts": "You have successfully crafted {{x}} hepteracts.", + "craftedHepteractsMax": "You have successfully crafted {{x}} hepteracts. If this is less than your input, you either hit the inventory limit or you had insufficient resources.", + "expandPrompt": "This will reduce your balance by {{x}}, but capacity will increase from {{y}} to {{z}} [Expansion Multiplier: {{a}}]. Agree to the terms and conditions and stuff?", + "doubleSpent": "Something already modified your balance or cap, try again!", + "expandedInventory": "Successfully expanded your inventory. You can now fit {{x}}.", + "orbEffect": "Orb Effect: Opening Cubes gives {{x}}% more Quarks.", + "orbsPurchasedToday": "Orbs Purchased Today: {{x}}.", + "amalgamate": "You can amalgamate Overflux Orbs here. [NOTE: these expire at the end of your current day]", + "cost250k": "Cost: 250,000 Hepteracts per Overflux Orb", + "craftMaxOrbs": "This will attempt to buy as many orbs as possible. \nYou can buy up to {{x}} with your hepteracts. Are you sure?", + "hepteractInput": "How many Orbs would you like to purchase?\n You can buy up to {{x}} with your hepteracts.", + "gainedPowder": "You have also gained {{x}} powder immediately, thanks to your shop upgrades.", + "purchasedOrbs": "You have purchased {{x}} Overflux Orbs [+{{y}}% to effect]. {{z}} Enjoy!", + "allCubeGain": "ALL Cube Gain +{{x}}% [Multiplicative], +{{y}}% Quarks [Multiplicative]", + "allCubeGainExtended": "ALL Cube Gain +{{x}}% [Multiplicative], +{{y}}% Quarks [Multiplicative], Ascension Count +{{z}}%, Tesseract Building Production x{{a}} [From Platonic Upgrade 4x1]", + "powderEffect": "Powder effect: {{x}}", + "powderLumps": "You have {{x}} lumps of Overflux Powder.", + "expiredOrbs": "Expired Overflux Orbs become powder at a rate of {{x}} Orbs per powder lump!", + "dayWarpsRemaining": "Day Warps remaining today: {{x}}", + "warpImpossible": "Warping is impossible (you get multiplier to Quarks instead)", + "machineCooldown": "Sorry, but this machine is on cooldown.", + "atleastPowder": "Sorry, but you need 25 powder to operate the warp machine.", + "stumbleMachine": "You stumble upon a mysterious machine. A note attached says that you can reset daily Cube openings for 25 Powder. However it only works once each real life day. You in?", + "walkAwayMachine": "You walk away from the machine, powder intact.", + "useMachine": "Upon using the machine, your cubes feel just a little more rewarding. Daily cube opening counts have been reset! [-25 Powder]", + "useAllWarpsPrompt": "Turning this OFF, will consume all of your remaining Warps (without doing a Warp).\nAre you sure?", + "machineDidNotConsume": "Machine didn't consume your Warps.", + "boostQuarksPrompt": "This machine will now be able to boost your Quarks gained from opening Cubes, based on how many Warps you have remaining. While its ON, warping will be impossible and turning it OFF won't be so easy.\nAre you sure you want to turn it ON?", + "machineOverdrive": "Machine will go into overdrive,\nonce you will have some Warps.", + "machineInOverdrive": "Machine is now on overdrive.", + "machineUsualContinue": "Machine will continue to work as usual, for now." + }, + "importexport": { + "copiedSave": "Copied save to clipboard!", + "copiedFile": "Savefile copied to file!", + "exportFailed": "Export failed!", + "unableCopySave": "Unable to write the save to clipboard.", + "reloadDeletePrompt": "The next confirmation is to delete the save data\nIf you do not want to delete it, cancel it", + "resetPrompt": "Answer the question to confirm you'd like to reset: what is {{a}}+{{b}}? (Hint: {{sum}})", + "wrongAnswer": "Answer was wrong, not resetting!", + "unableImport": "Unable to import this file!", + "loadTestInLive": "You are attempting to load a testing file in a non-testing version!", + "promocodePrompt": "Got a code? Great! Enter it in (CaSe SeNsItIvE). \n [Note to viewer: this is for events and certain always-active codes. \n May I suggest you type in \"synergism2021\" or \"Khafra\" perchance?]", + "comeBackSoon": "Alright, come back soon!", + "noAddCodes": "You do not have an 'Add' code attempt! You will gain 1 in {{x}} seconds.", + "useXAdds": "You can use up to {{x}} attempts at once. How many would you like to use? You can enter a negative value which will use all attempts except the specified number.", + "cancelAdd": "No worries, you didn't lose any of your uses! Come back later!", + "daily0Uses": "0 uses left. Next: end of the day.", + "daily1Uses": "1 use left. Next: end of the day.", + "add1Uses": "{{x}} use left.", + "add0Uses": "{{x}} uses left. Next: in {{y}} seconds.", + "addUses": "{{x}} uses left.", + "timeMultiplier": "{{x}} use(s) left. Multiplier: {{y}}x", + "promocodes": { + "synergism2021": "Promo Code 'synergism2021' Applied! +25 Offerings, +50 Quarks", + "unsmith": "It's Spaghetti Time! [Awarded an achievement!!!]", + "antismith": "Hey, isn't this just a reference to Antimatter Dimensions? Shh. [Awarded an achievement!!!]", + "khafra": "Khafra has blessed you with {{x}} Quarks!", + "daily": { + "message": "Thank you for playing today!\nThe Ant God rewards you with this gift:", + "message2": "Feeling especially generous, the Ant God has also given you free levels of the following Singularity upgrades:" + }, + "add": { + "calculator3": "Thanks to PL-AT Ω you have also gained {{x}} real-life seconds to your Ascension Timer!", + "calculator5": "Thanks to PL-AT Γ you have additionally gained {{x}} real-life seconds to your GQ Export Timer!", + "calculator6": "Thanks to PL-AT _ you have gained {{x}} seconds of Octeract generation!", + "calculator7": "Finally, thanks to PL-AT Ω you have gained {{x}} seconds of Blueberry Time Generation!", + "calculatorSolution": "For {{w}} Quarks or nothing: What is {{x}} + {{y}}? The answer is {{z}} according to your calculator.", + "calculatorPrompt": "For {{w}} Quarks or nothing: What is {{x}} + {{y}}?", + "calculatorMaxed": "Your calculator figured out that {{a}} + {{b}} = {{c}} on its own, so you were awarded {{d}} Quarks! {{e}} {{f}} {{g}} {{h}} {{i}} You have {{j}} uses of Add. You will gain 1 in {{k}} seconds.", + "freeLevel": "Moreover, gain {{x}} free levels of GQ1 and {{y}} free levels of GQ3!!!", + "cancelled": "No worries, you didn't lose any of your uses! Come back later!", + "reward": "You were awarded {{a}} Quarks! {{b}} {{c}} {{d}} You have {{e}} uses of Add. You will gain 1 in {{f}} seconds.", + "wrong": "You guessed {{w}}, but the answer was {{x}}. You have {{y}} uses of Add. You will gain 1 in {{z}} seconds." + }, + "sub": { + "subbed": "Thanks for using the \"sub\" code! I've taken away {{x}} Quarks! :)", + "gave": "I gave you {{x}} Quarks so I could take {{y}} away." + }, + "gamble": { + "wait": "Wait a little bit. We'll get back to you when you're ready to lose again.", + "prompt": "Are you sure? The house always wins!", + "cancelled": "Scared? You should be!", + "betPrompt": "How many Quarks are you putting up?", + "cheaters": "Due to cheaters, you can only bet 10k max.", + "won": "You won. The Syncasino offers you a grand total of 25% of the pot! [+{{x}} Quarks]", + "lost": "Try again... you can do it! [-{{x}} quarks]" + }, + "time": { + "wait": "If you imported a save, you cannot use this code for 15 minutes to prevent cheaters.\n\nRegardless, you must wait at least 15 minutes between each use.", + "confirm": "Click the button within the next 15 seconds to test your luck! If you click within {{x}} ms of a randomly generated time, you will win a prize! This particular instance has a {{y}}x multiplier due to elapsed time between uses.", + "won": "You clicked at the right time! [+{{x}} Quarkies]", + "lost": "You didn't guess the right time, try again soon!", + "ambrosia": "Your blueberries resonate slightly, giving {{blueberryTime}} real life seconds of Blueberry Time." + }, + "spoiler": { + "moreThan1": "You will gain {{x}} Octeracts (when they come out) every second, assuming you have them unlocked!", + "one": "You will gain an Octeract (when they come out) every {{x}} seconds, assuming you have them unlocked!" + }, + "invalid": "Your code is either invalid or already used. Try again!", + "bribe": { + "notUnlocked": "Hmmm... you aren't ready yet.", + "overCapacity": "You can't hold more!", + "thanks": "Thank Alonso (in Discord) for the bribe." + } + } + }, + "toggles": { + "percentBetweenInclusive": "Value must be a number between {{x}} and {{y}}, inclusive!", + "percentKeptAt": "Your percentage is kept at {{x}}%.", + "onAscensionHepteractsCraft": "Okay. On Ascension, {{x}}% of your Hepteracts will be used in crafting.", + "autoUpgradeOn": "Auto Upgrades: [ON]", + "autoUpgradeOff": "Auto Upgrades: [OFF]", + "upgradeMaxIfPossible": "Upgrade: MAX [if possible wow]", + "upgradeOneLevelWow": "Upgrade: 1 Level wow", + "saveOfferingsOn": "Save Offerings [ON]", + "saveOfferingsOff": "Save Offerings [OFF]", + "modeTime": "Mode: TIME", + "modeAmount": "Mode: AMOUNT", + "modePercentage": "Mode: PERCENTAGE" + }, + "main": { + "dataPersistent": "Data on this page is now persistent! If you do not know what this means, you can safely ignore it.", + "starRepo": "Please show your appreciation by giving the GitHub repo a star. ❤️ https://github.com/pseudo-corp/SynergismOfficial", + "transferredFromLZ": "Transferred save to new format successfully!", + "allCorruptionsZero": "All Corruptions have been set to Zero. This will take effect on the next Ascension.", + "corruptionLoadoutApplied": "Corruption Loadout {{x}} \"{{y}}\" has been applied. This will take effect on the next Ascension.", + "ascendPrompt": "Ascending will reset all buildings, rune levels [NOT CAP!], talismans, most researches, and the anthill feature for Cubes of Power. Continue?", + "reincarnatePrompt": "Reincarnating will reset EVERYTHING but in return you will get extraordinarily powerful Particles, and unlock some very strong upgrades and some new features. would you like to Reincarnate? [Disable this message in settings.]", + "transcendPrompt": "Transcends will reset coin and prestige upgrades, coin producers, crystal producers AND diamonds. The first Transcension unlocks new features. Would you like to Transcend? [Toggle this message in settings.]", + "prestigePrompt": "Prestige will reset coin upgrades, coin producers AND crystals. The first Prestige unlocks new features. Would you like to Prestige? [Toggle this message in settings.]", + "welcomeToSingularity": "Welcome to Singularity #{{x}}. You're back to familiar territory, but something doesn't seem right.", + "singularityCancelled": "If you decide to change your mind, let me know. -Ant God", + "singularityMessage1": "You have reached the end of the game, on Singularity #{{x}}. Platonic and the Ant God are proud of you.", + "singularityMessage2": "You may choose to sit on your laurels, and consider the game 'beaten', or you may do something more interesting.", + "singularityMessage3": "You're too powerful for this current universe. The multiverse of Synergism is truly endless, but out there are even more challenging universes parallel to your very own.", + "singularityMessage4": "Start anew, and enter Singularity #{{x}}. Your next universe is harder than your current one, but unlock a permanent +10% Quark Bonus, +10% Ascension Count Bonus, and Gain {{y}} Golden Quarks, which can purchase game-changing endgame upgrades [Boosted by {{z}}% due to patreon bonus!].", + "singularityMessage5": "However, all your past accomplishments are gone! ALL Challenges, Refundable Shop upgrades, Upgrade Tab, Runes, All Cube upgrades, All Cube Openings, Hepteracts (Except for your Quark Hepteracts), Achievements will be wiped clean.", + "singularityConfirm0": "Do you wish to start singularity #{{x}}? Your next universe is harder but you will gain {{y}} Golden Quarks.", + "singularityConfirm1": "So, what do you say? Do you wish to enter the Singularity?", + "singularityConfirm2": "Are you sure you wish to enter the Singularity?", + "singularityConfirm3": "Are you REALLY SURE? You cannot go back from this (without an older savefile)! Confirm one last time to finalize your decision.", + "noAntiquity": "Hmph. Please return with an Antiquity. Thank you. -Ant God", + "insideSingularityChallenge": "Derpsmith thinks you are in a Singularity Challenge. You may exit it by clicking on the challenge icon in the Exalt tab.", + "gameBeat": "Well. It seems you've reached the eye of the Singularity. I'm pleased. This also means there is nowhere to go from here. At least, not until higher powers expand your journey.", + "exitAscensionChallenge": "Are you absolutely sure that you want to exit the Ascension Challenge? You will need to clear challenge 10 again before you can attempt the challenge again!", + "buyResearch3x11": "[LOCKED - Buy Research 3x11]" + }, + "history": { + "perSecondOn": "Per second: ON", + "perSecondOff": "Per second: OFF" + }, + "event": { + "aprilFools": { + "introText": "The <> spins at you, telepathically communicating: 'This is NOT a <><>, I swear. Just click me already!'", + "clicked": "See? Yet another reason to trust Unsmith. Ah well. For clicking me, you gain 5% more Offerings, Obtainium, and ALL Cubes until you refresh the page!", + "clickedText": "You have clicked the <>! Until refresh, gain <>, <>, <>!" + } + }, + "account": { + "logout": "The page will now reload. You are logged out! Goodbye!!" + }, + "pseudoCoins": { + "coinCount": "You have <>!", + "cost": "Cost: <>", + "maxxed": "<>", + "buyButton": "Buy! <>", + "currEffect": "Current Level:", + "nextEffect": "Next Level:", + "upgradeNames": { + "INSTANT_UNLOCK_1": "The Talisman Activator-inator", + "INSTANT_UNLOCK_2": "The Rune Discoverer-inator", + "CUBE_BUFF": "Gold-Infused Cubes", + "AMBROSIA_LUCK_BUFF": "The Gold Leaf Clovers", + "AMBROSIA_GENERATION_BUFF": "Alchemized Ambrosia Speedup", + "GOLDEN_QUARK_BUFF": "Even Golder Quarks", + "FREE_UPGRADE_PROMOCODE_BUFF": "Bribing the Daily Code", + "CORRUPTION_LOADOUT_SLOT_QOL": "More Corruption Loadouts!", + "AMBROSIA_LOADOUT_SLOT_QOL": "More Ambrosia Loadouts!", + "AUTO_POTION_FREE_POTIONS_QOL": "Potion Duplication Glitch", + "OFFLINE_TIMER_CAP_BUFF": "Cozier Beds Enshrined in Gold", + "ADD_CODE_CAP_BUFF": "The Limited-Edition PLAT-P Calculator" + }, + "upgradeEffects": { + "INSTANT_UNLOCK_1": "The Plastic Talisman is <> always unlocked! <>", + "INSTANT_UNLOCK_2": "The Rune of Infinite Ascent is <> always unlocked! <>", + "CUBE_BUFF": "Cube Gain is multiplied by <>", + "AMBROSIA_LUCK_BUFF": "Ambrosia Luck is increased by <>", + "AMBROSIA_GENERATION_BUFF": "Blueberry Generation Speed is multiplied by <>", + "GOLDEN_QUARK_BUFF": "Golden Quark Gain is multiplied by <>", + "FREE_UPGRADE_PROMOCODE_BUFF": "Code 'Daily' gives <> the Free Upgrades!", + "CORRUPTION_LOADOUT_SLOT_QOL": "You have <> additional Corruption Loadout slots!", + "AMBROSIA_LOADOUT_SLOT_QOL": "You have <> additional Ambrosia Loadout slots!", + "AUTO_POTION_FREE_POTIONS_QOL": "Auto-Potion is <> FREE!", + "OFFLINE_TIMER_CAP_BUFF": "Offline Time Capacity is multiplied by <>", + "ADD_CODE_CAP_BUFF": "Code 'add' Capacity is multiplied by <>" + } + } +} diff --git a/translations/es.json b/translations/es.json index 29c9155d3..11bca330d 100644 --- a/translations/es.json +++ b/translations/es.json @@ -1555,35 +1555,47 @@ "unlockedIn": "Desbloquearás una Ventaja nueva en la singularidad {{sing}}", "header": "La mayor Singularidad que has alcanzado es la {{ord}} Singularidad.
Aquí tienes la lista de ventajas que has adquirido para compensar las penalizaciones", "description": "(Pasa el cursor para más detalles. Ventajas en gold text se añadieron o mejoraron en esta Singularidad)", - "welcometoSingularity": "Welcome to the Singualrity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% a ganancias de Quarks y Contador de Ascensión por cada Singularidad. Actual: +{{amount}}%", - "goldenCoins": "Los Quarks Dorados no gastados aumentan la ganancia de Monedas. Especialmente fuerte en la primera Ascensión de cada Singularidad. Actual: x{{amount}}", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Crecimiento Ilimitado", + "default": "+10% a ganancias de Quarks y Contador de Ascensión por cada Singularidad. Actual: +{{amount}}%" + }, + "goldenCoins": { + "name": "Monedas doradas", + "default": "Los Quarks Dorados no gastados aumentan la ganancia de Monedas. Especialmente fuerte en la primera Ascensión de cada Singularidad. Actual: x{{amount}}" + }, "xyz": { + "name": "ZYX: recompenZas diarYas eXtra", "hasLevel2": "Además de GD y niveles gratuitos garantizados de QD 1/2/3 a +0,2/+0,2/+1, ¡obtienes el DOBLE de niveles en mejoras gratuitas de Acción Diaria Especial!", "hasLevel1": "Además de GD y niveles gratuitos de mejoras, la Actividad Diaria Especial te da niveles gratuitos extra de QD 1/2/3 a +0,2/+0,2/+1 respectivamente.", "default": "La Actividad Diaria Especial te recompensa ahora con Quarks Dorados y niveles gratuitos para mejoras de Singularidades aleatorias, ¡ambas escalando con tu contador de singularidad!" }, - "hepteractAutocraft": "Desbloqueará la Autocreación de Hepteractos", - "generousOrbs": "El efecto de los Orbes de Sobreflujo al abrir Cubos para Quarks puede llegar a {{amount}}%", + "generousOrbs": { + "name": "Orbes Generosos", + "default": "El efecto de los Orbes de Sobreflujo al abrir Cubos para Quarks puede llegar a {{amount}}%" + }, "researchDummies": { + "name": "Investigación para Dummies", "hasLevel1": "Mantienes permanentemente Auto Investigación", - "otherwise": "Puedes Investigar usando Pasa para Comprar" - }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" + "default": "Puedes Investigar usando Pasa para Comprar" }, "antGodsCornucopia": { + "name": "Cornucopia de Dios Hormiga", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." }, "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { + "name": "Super Comienzo", "hasLevel4": "Empiezas cada Ascensión con 1 Trascensión, 1 Reencarnación, 1001 Mythos, 2,22e2222 Partículas y 500 Obtainium", "hasLevel3": "Empiezas cada Ascensión con 1 Trascensión, 1 Reencarnación, 1001 Mythos, 1e100 Partículas y 500 Obtainium", "hasLevel2": "Empiezas cada Ascensión con 1 Trascensión, 1 Reencarnación, 1001 Mythos, 1e16 Partículas y 500 Obtainium", @@ -1591,6 +1603,7 @@ "default": "Empiezas cada Ascensión con 1 Trascensión y 1001 Mythos" }, "notSoChallenging": { + "name": "No Tan Desafiante", "hasLevel4": "Empiezas cada Ascensión con 1 finalización de los Desafíos 6, 7 & 9 y 5 finalizaciones del Desafío 8", "hasLevel3": "Empiezas cada Ascensión con 1 finalización de los Desafíos 6 & 7 y 5 finalizaciones del Desafío 8", "hasLevel2": "Empiezas cada Ascensión con 1 finalización de los Desafíos 6, 7 y 8", @@ -1598,6 +1611,7 @@ "default": "Empiezas cada Ascensión con 1 finalización del Desafío 6" }, "automationUpgrades": { + "name": "Mejoras de Automatización", "hasLevel5": "¡Tras alcanzar Singularidad 100, nunca olvidarás el sabor de ¡Wow! Una pila de Galletas con Migas de Chocolate!", "hasLevel4": "Siempre tendrás w1x4 a w1x8 y w2x10; r6x5, r6x10 y r6x20. ¡La Tienda de Automatización se compra automáticamente!", "hasLevel3": "Siempre tendrás w1x4 a w1x8 y w2x10. ¡La Tienda de Automatización se compra automáticamente!", @@ -1606,67 +1620,128 @@ "default": "Siempre tendrás w1x7. (Autocompra Edificios de Partículas)" }, "evenMoreQuarks": { + "name": "Aún Más Quarks", "bug": "¡Esto es un bug! Contacta con Platonic si ves este mensaje, de alguna forma.", - "m": "¡Ganas {{stack}} montones de 5% Quarks! Incremento Total: +{{inc}}%" + "default": "¡Ganas <> montones de <> Quarks! Incremento Total: <>" }, "shopSpecialOffer": { + "name": "Oferta Especial de Tienda", "hasLevel2": "¡Mantienes las mejoras de las Tiendas de Reencarnación y Ascensión permanentemente!", "hasLevel1": "Mantienes permanentemente 100 niveles gratuitos de cada mejora de Tienda de primera fila", "default": "Empiezas cada Singularidad con 10 niveles gratuitos de cada mejora de Tienda de primera fila" }, - "potionAutogenerator": "Cada 180 segundos, ¡usa una poción para Obtainium y Ofrendas automáticamente! Intervalo reducido un 3% por singularidad.", - "respecBeGone": "¡Los talismanes ahora potencian todas las runas todo el tiempo!", + "potionAutogenerator": { + "name": "Autogenerador de Pociones", + "default": "Cada 180 segundos, ¡usa una poción para Obtainium y Ofrendas automáticamente! Intervalo reducido un 3% por singularidad." + }, + "respecBeGone": { + "name": "¡Hasta nunca, Reespecialización!", + "default": "¡Los talismanes ahora potencian todas las runas todo el tiempo!" + }, "forTheLoveOfTheAntGod": { + "name": "¡Por el amor de Dios (Hormiga)!", "hasLevel2": "Mantienes permanentemente autocompradores de Hormigas y empiezas cada ascensión con una de Rango 8", "hasLevel1": "Mantienes permanentemente autocompradores de Hormigas y empiezas cada ascensión con una de Rango 5", "default": "Mantienes permanentemente autocompradores de Hormigas y empiezas cada ascensión con una de Rango 1" }, - "itAllAddsUp": "Las recompensas del código ADD se reducen un {{div}} pero el intervalo se reduce un {{div2}} y la capacidad se multiplica por {{cap}} (redondeado hacia arriba).", + "itAllAddsUp": { + "name": "Todo suma", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Runas Automágicas", "hasLevel3": "El autocomprador de Runas comprará Bendiciones, Espíritus, Fragmentos de Talismán, Fragmentos y subirá el nivel de Ascenso Infinito Y Antigüedades del Dios Hormiga", "hasLevel2": "El autocomprador de Runas comprará Bendiciones, Espíritus, Fragmentos de Talismán, Fragmentos y subirá el nivel de Ascenso Infinito", "hasLevel1": "El autocomprador de Runas comprará Bendiciones, Espíritus y subirá el nivel de Ascenso Infinito", "default": "El autocomprador de Runas comprará Bendiciones y Espíritus" }, - "exaltedAchievements": "¡Desbloquea nuevos y difíciles logros! Se consiguen diferentemente a los otros, sin embargo... (WIP)", + "eternalAscensions": { + "name": "Ascensiones Eternas", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Cámara de EXALTADO", + "default": "Unlocks new, very difficult challenges! They may only be entered after reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Cornucopia de Derpsmith", + "default": "¡Con la bendición de Derpsmith, cada singularidad da +{{counter}}% más Octeractos!" + }, "coolQOLCubes": { + "name": "Genial Cdv de Cubos", "hasLevel1": "¡Mantén todas las investigaciones sobre abrir Cubos Y gana la habilidad de abrir un porcentaje de tus cubos cada Ascensión!", "default": "Las Investigaciones relacionadas con abrir cubos ya no se resetean al Ascender" }, - "irishAnt": "¡Las Hormigas bendecidas con la suerte Irlandesa dan ☘ {{i}} más Suerte de Ambrosia!", - "irishAnt2": "¡Las Hormigas bendecidas con suerte Irlandesa más afortunada dan ☘ {{i}} más Suerte de Ambrosia!", - "overclocked": "¡El nivel máximo de Ciertas Mejoras de Singularidad se incrementan un {{i}}!", + "irishAnt": { + "name": "Hormigas Irlandesas", + "default": "¡Las Hormigas bendecidas con la suerte Irlandesa dan <> más Suerte de Ambrosia!" + }, + "irishAnt2": { + "name": "Hormigas Irlandesas II: La Venganza", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Sobreacelerado", + "default": "¡El nivel máximo de Ciertas Mejoras de Singularidad se incrementan un {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Envío Automatizado de Cubos ¡Wow!", "hasLevel1": "¡Compra automáticamente Mejoras de Cubos cada ascensión, sin importar dónde estés!", "default": "Compra automáticamente Mejoras de Cubos cada ascensión, solo si estás en un Desafío de Singularidad." }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "La Singularidad te da 0,4% más Quarks Dorados por Singularidad. Actual: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Los Quarks Dorados son 0,2% más baratos por Singularidad. Actual: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Exportar te da 2% más Quarks Dorados por Singularidad. Actual: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Revolución Dorada", + "default": "La Singularidad te da 0,4% más Quarks Dorados por Singularidad. Actual: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Revolución Dorada II", + "default": "Los Quarks Dorados son 0,2% más baratos por Singularidad. Actual: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Revolución Dorada III", + "default": "Exportar te da 2% más Quarks Dorados por Singularidad. Actual: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Clones de Platonic clickando tu pantallaP", "hasLevel1": "¡Compra automáticamente Mejoras Platónicas cada ascensión, sin gastar Obtainium u Ofrendas, en cualquier parte!", "default": "Compra automáticamente Mejoras Platónicas cada ascensión, sin gastar Obtainium u Ofrendas, pero solo en Desafíos de Singularidad." }, - "dilatedFiveLeaf": { - "desc": "Increase your base ☘ Ambrosia Luck by <>! +1% per perk level." + "platSigma": { + "name": "PL-AT Σ", + "default": "El código 'add' se rellena {{counter}}% más rápido por nivel y Singularidad. Actual: {{current}} (MAX: -60% intervalo)" + }, + "midasMilleniumAgedGold": { + "name": "Oro milenario de Midas", + "default": "Cada uso de `suma` da 0,01 niveles gratis de GD1 y 0,05 niveles gratuitos de QD3." + }, + "goldenRevolution4": { + "name": "Revolución Dorada IV", + "default": "Cada tick de Octeracto, ¡convierte 1 en {{gq}} QD que hubieras ganado en esta singularidad a tu balance automágicamente!" }, - "platSigma": "El código 'add' se rellena {{counter}}% más rápido por nivel y Singularidad. Actual: {{current}} (MAX: -60% intervalo)", - "midasMilleniumAgedGold": "Cada uso de `suma` da 0,01 niveles gratis de GD1 y 0,05 niveles gratuitos de QD3.", - "goldenRevolution4": "Cada tick de Octeracto, ¡convierte 1 en {{gq}} QD que hubieras ganado en esta singularidad a tu balance automágicamente!", "octeractMetagenesis": { - "hasLevel1": "¡Compra automáticamente Mejoras de Cubos cada ascensión, sin importar dónde estés!", - "default": "Compra automáticamente Mejoras de Cubos cada ascensión, solo si estás en un Desafío de Singularidad." + "name": "Metagénesis de Octeractos", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Alquimia Inmaculada", "hasLevel2": "Tras la Singularidad 200, ¡El Rebobinado Hacia Delante ya no funciona! En su lugar, multiplica tus ganancia de QD y divide el costo de comprarlos por 8.", "hasLevel1": "Tras la Singularidad 200, ¡El Rebobinado Hacia Delante ya no funciona! En su lugar, multiplica tus ganancia de QD y divide el costo de comprarlos por 5.", "default": "Tras la Singularidad 200, ¡El Rebobinado Hacia Delante ya no funciona! En su lugar, multiplica tus ganancia de QD y divide el costo de comprarlos por 3." }, - "skrauQ": "Multiplica las Ganancias de Quarks por ((Singularidad - 179)/20)^2. Actual: {{amt}}... Sí, así de bueno.", - "derpSmithsCornucopia": "¡Con la bendición de Derpsmith, cada singularidad da +{{counter}}% más Octeractos!", - "oneHundredThirtyOne": "Gain <> Ambrosia Luck!", - "twoHundredSixtyNine": "Gain <> Ambrosia Luck!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiplica las Ganancias de Quarks por ((Singularidad - 179)/20)^2. Actual: {{amt}}... Sí, así de bueno." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No requiere Singularidad mínima para comprar", @@ -2064,49 +2139,6 @@ "penaltyRough": "Tus penalizaciones empeorarán mucho en la <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Crecimiento Ilimitado", - "goldenCoins": "Monedas doradas", - "xyz": "ZYX: recompenZas diarYas eXtra", - "hepteractAutocraft": "Autocreación de Hepteractos", - "generousOrbs": "Orbes Generosos", - "researchDummies": "Investigación para Dummies", - "eternalAscensions": "Ascensiones Eternas", - "antGodsCornucopia": "Cornucopia de Dios Hormiga", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Comienzo", - "notSoChallenging": "No Tan Desafiante", - "automationUpgrades": "Mejoras de Automatización", - "evenMoreQuarks": "Aún Más Quarks", - "shopSpecialOffer": "Oferta Especial de Tienda", - "potionAutogenerator": "Autogenerador de Pociones", - "respecBeGone": "¡Hasta nunca, Reespecialización!", - "forTheLoveOfTheAntGod": "¡Por el amor de Dios (Hormiga)!", - "itAllAddsUp": "Todo suma", - "automagicalRunes": "Runas Automágicas", - "exaltedAchievements": "Cámara de EXALTADO", - "derpSmithsCornucopia": "Cornucopia de Derpsmith", - "coolQOLCubes": "Genial Cdv de Cubos", - "irishAnt": "Hormigas Irlandesas", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Hormigas Irlandesas II: La Venganza", - "overclocked": "Sobreacelerado", - "wowCubeAutomatedShipping": "Envío Automatizado de Cubos ¡Wow!", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Revolución Dorada", - "goldenRevolutionII": "Revolución Dorada II", - "goldenRevolutionIII": "Revolución Dorada III", - "platonicClones": "Clones de Platonic clickando tu pantallaP", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Oro milenario de Midas", - "goldenRevolution4": "Revolución Dorada IV", - "octeractMetagenesis": "Metagénesis de Octeractos", - "immaculateAlchemy": "Alquimia Inmaculada", - "skrauQ": "skrauQ", - "twoHundredSixtyNine": "Two Hundred and Sixty Nine!", - "oneHundredThirtyOne": "One Hundred and Thirty One!" } }, "general": { @@ -3589,4 +3621,4 @@ "ADD_CODE_CAP_BUFF": "Code 'add' Capacity is multiplied by <>" } } -} +} diff --git a/translations/fr.json b/translations/fr.json index 8960f5dc6..145202efc 100644 --- a/translations/fr.json +++ b/translations/fr.json @@ -1555,35 +1555,47 @@ "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", "description": "(Hover for more details. Perks in gold text were added or improved in this Singularity)", - "welcometoSingularity": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%", - "goldenCoins": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, "xyz": { + "name": "XYZ : eXtra paYe quotidienneZ", "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "L'auto-fabricateur d'Hepteract sera débloqué", - "generousOrbs": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%", + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" + }, "researchDummies": { + "name": "La Recherche pour les Nuls", "hasLevel1": "Vous conservez en permanence la Recherche Automatique", - "otherwise": "Vous pouvez compléter les recherches en utilisant l'achat au survol" - }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" + "default": "Vous pouvez compléter les recherches en utilisant l'achat au survol" }, "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." }, "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "Le balayage automatique de Défis commencera maintenant les Défis d'Ascension à C10, et vous pouvez maintenant balayer les Défis d'Ascension si vous avez les Défis instantanés 2, pour vous économiser quelques clics !", - "otherwise": "Le balayage automatique de Défis commencera maintenant les Défis d'Ascension à C10, pour vous économiser quelques clics !" + "default": "Le balayage automatique de Défis commencera maintenant les Défis d'Ascension à C10, pour vous économiser quelques clics !" }, "superStart": { + "name": "Super Start", "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", @@ -1591,6 +1603,7 @@ "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { + "name": "Not So Challenging", "hasLevel4": "Vous commencez chaque Ascension avec une complétion des Défis 6, 7 et 9, et 5 complétions du Défi 8.", "hasLevel3": "Vous commencez chaque Ascension avec une complétion des Défis 6 et 7, et 5 complétions du Défi 8.", "hasLevel2": "Vous commencez chaque Ascension avec une complétion des Défis 6, 7 et 8.", @@ -1598,75 +1611,137 @@ "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { + "name": "Améliorations d'Automatisation", "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", - "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", - "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", + "hasLevel4": "Vous avez toujours w1x4 à w1x8 et w2x10; r6x5, r6x10 et r6x20. La boutique d’automatisation est désormais automatiquement acheté !", + "hasLevel3": "Vous avez toujours w1x4 à w1x8 et w2x10. La boutique d’automatisation est désormais automatiquement achetée !", "hasLevel2": "Vous avez toujours w1x4 à w1x8 et w2x10.", "hasLevel1": "Vous avez toujours w1x4 à w1x8.", - "default": "You always have w1x7. (Autobuyers for Particle buildings)" + "default": "Vous avez toujours w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { + "name": "Even More Quarks", "bug": "Ceci est un bug ! Contactez Platonic si vous voyez ce message, d'une manière ou d'une autre.", - "m": "You gain {{stack}} stacks of 5% Quarks! Total Increase: +{{inc}}%" + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { + "name": "Shop Special Offer", "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" }, - "potionAutogenerator": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity.", - "respecBeGone": "Les talismans améliorent désormais toutes les runes à tout moment!", + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Les talismans améliorent désormais toutes les runes à tout moment!" + }, "forTheLoveOfTheAntGod": { + "name": "For the love of (the Ant) God!", "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" }, - "itAllAddsUp": "ADD code reward is divided by {{div}} but the cooldown is also divided by {{div2}} and capacity is multiplied by {{cap}} (rounded up).", + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Automagical Runes", "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", "default": "Runes autobuyer will buy Blessings and Spirits" }, - "exaltedAchievements": "Unlocks new, very difficult achievements! They are earned differently from others, however...", + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered after reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + }, "coolQOLCubes": { + "name": "Cool QoL Cubes", "hasLevel1": "Gardez toutes les Recherches d'ouverture de Cubes et obtenez la possibilité d'ouvrir automatiquement un pourcentage de vos Cubes à chaque Ascension !", "default": "Les Recherches relatives à l'ouverture des Cubes ne se réinitialisent plus à chaque Ascension." }, - "irishAnt": "Ants blessed with the luck of the Irish grant ☘ {{i}} Ambrosia Luck!", - "irishAnt2": "Ants blessed with more fortunate luck of the Irish grant ☘ {{i}} more Ambrosia Luck!", - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Wow! Cube Automated Shipping", "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Clones of Platonic Clicking at Your Desktop", "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." }, - "dilatedFiveLeaf": { - "desc": "Increase your base ☘ Ambrosia Luck by <>! +1% per perk level." + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", "octeractMetagenesis": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Immaculate Alchemy", "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!", - "oneHundredThirtyOne": "Gain <> Ambrosia Luck!", - "twoHundredSixtyNine": "Gain <> Ambrosia Luck!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No minimal Singularity to purchase required", @@ -2064,49 +2139,6 @@ "penaltyRough": "Your penalties will sharply worsen in <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "xyz": "XYZ : eXtra paYe quotidienneZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "La Recherche pour les Nuls", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Améliorations d'Automatisation", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "irishAnt": "Irish Ants", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Irish Ants II: Electric Boogaloo", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ", - "twoHundredSixtyNine": "Two Hundred and Sixty Nine!", - "oneHundredThirtyOne": "One Hundred and Thirty One!" } }, "general": { @@ -3589,4 +3621,4 @@ "ADD_CODE_CAP_BUFF": "Code 'add' Capacity is multiplied by <>" } } -} +} diff --git a/translations/kaa.json b/translations/kaa.json index 1ed4c96a3..985ba34ac 100644 --- a/translations/kaa.json +++ b/translations/kaa.json @@ -1397,35 +1397,47 @@ "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", "description":"(Hover for more details. Perks in gold text were added or improved in this Singularity)", - "welcometoSingularity": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%", - "goldenCoins": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, "xyz": { + "name": "XYZ: Xtra dailY rewardZ", "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "Hepteract Autocraft will be unlocked", - "generousOrbs": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%", + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" + }, "researchDummies": { - "hasLevel1": "You permanently keep Auto Research", - "otherwise": "You can Research using Hover to Buy" + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" - }, - "antGodsCornucopia": { + "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." - }, - "sweepomatic":{ + }, + "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" - }, + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + }, "superStart": { + "name": "Super Start", "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", @@ -1433,6 +1445,7 @@ "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { + "name": "Not So Challenging", "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", @@ -1440,6 +1453,7 @@ "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { + "name": "Automation Upgrades", "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", @@ -1448,60 +1462,128 @@ "default": "You always have w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { + "name": "Even More Quarks", "bug": "This is a bug! Contact Platonic if you see this message, somehow.", - "m": "You gain {{stack}} stacks of 5% Quarks! Total Increase: +{{inc}}%" + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { + "name": "Shop Special Offer", "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" }, - "potionAutogenerator": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity.", - "respecBeGone": "Talismans now buff all runes at all times!", + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talismans now buff all runes at all times!" + }, "forTheLoveOfTheAntGod": { + "name": "For the love of (the Ant) God!", "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" }, - "itAllAddsUp": "ADD code reward is divided by {{div}} but the cooldown is also divided by {{div2}} and capacity is multiplied by {{cap}} (rounded up).", + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Automagical Runes", "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", "default": "Runes autobuyer will buy Blessings and Spirits" }, - "exaltedAchievements": "Unlocks new, very difficult achievements! They are earned differently from others, however...", + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + }, "coolQOLCubes": { + "name": "Cool QoL Cubes", "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", "default": "Researches related to opening cubes will no longer reset on Ascension" }, - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Wow! Cube Automated Shipping", "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Clones of Platonic Clicking at Your Desktop", "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" + }, "octeractMetagenesis": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Immaculate Alchemy", "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No minimal Singularity to purchase required", @@ -1859,44 +1941,6 @@ "penaltyRough": "Your penalties will sharply worsen in <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "xyz": "XYZ: Xtra dailY rewardZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Research for Dummies", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Automation Upgrades", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ" } }, "general": { diff --git a/translations/nl.json b/translations/nl.json index 04059fc72..6c8cf34d6 100644 --- a/translations/nl.json +++ b/translations/nl.json @@ -1555,35 +1555,47 @@ "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", "description": "(Hover for more details. Perks in gold text were added or improved in this Singularity)", - "welcometoSingularity": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%", - "goldenCoins": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, "xyz": { + "name": "XYZ: Xtra dailY rewardZ", "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "Hepteract Autocraft will be unlocked", - "generousOrbs": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%", - "researchDummies": { - "hasLevel1": "You permanently keep Auto Research", - "otherwise": "You can Research using Hover to Buy" + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" + "researchDummies": { + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" }, "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." }, "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { + "name": "Super Start", "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", @@ -1591,6 +1603,7 @@ "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { + "name": "Not So Challenging", "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", @@ -1598,6 +1611,7 @@ "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { + "name": "Automation Upgrades", "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", @@ -1606,67 +1620,128 @@ "default": "You always have w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { + "name": "Even More Quarks", "bug": "This is a bug! Contact Platonic if you see this message, somehow.", - "m": "You gain {{stack}} stacks of 5% Quarks! Total Increase: +{{inc}}%" + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { + "name": "Shop Special Offer", "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" }, - "potionAutogenerator": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity.", - "respecBeGone": "Talismans now buff all runes at all times!", + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talismans now buff all runes at all times!" + }, "forTheLoveOfTheAntGod": { + "name": "For the love of (the Ant) God!", "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" }, - "itAllAddsUp": "ADD code reward is divided by {{div}} but the cooldown is also divided by {{div2}} and capacity is multiplied by {{cap}} (rounded up).", + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Automagical Runes", "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", "default": "Runes autobuyer will buy Blessings and Spirits" }, - "exaltedAchievements": "Unlocks new, very difficult achievements! They are earned differently from others, however...", + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + }, "coolQOLCubes": { + "name": "Cool QoL Cubes", "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", "default": "Researches related to opening cubes will no longer reset on Ascension" }, - "irishAnt": "Ants blessed with the luck of the Irish grant ☘ {{i}} Ambrosia Luck!", - "irishAnt2": "Ants blessed with more fortunate luck of the Irish grant ☘ {{i}} more Ambrosia Luck!", - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Wow! Cube Automated Shipping", "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Clones of Platonic Clicking at Your Desktop", "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." }, - "dilatedFiveLeaf": { - "desc": "Increase your base ☘ Ambrosia Luck by <>! +1% per perk level." + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", "octeractMetagenesis": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Immaculate Alchemy", "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!", - "oneHundredThirtyOne": "Gain <> Ambrosia Luck!", - "twoHundredSixtyNine": "Gain <> Ambrosia Luck!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No minimal Singularity to purchase required", @@ -2064,49 +2139,6 @@ "penaltyRough": "Your penalties will sharply worsen in <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welkom bij singulariteit!", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "xyz": "XYZ: Xtra dailY rewardZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Research for Dummies", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatische Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Automation Upgrades", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "irishAnt": "Irish Ants", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Irish Ants II: Electric Boogaloo", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Vlekkeloze alchemie", - "skrauQ": "skrauQ", - "twoHundredSixtyNine": "Two Hundred and Sixty Nine!", - "oneHundredThirtyOne": "One Hundred and Thirty One!" } }, "general": { @@ -3589,4 +3621,4 @@ "ADD_CODE_CAP_BUFF": "Code 'add' Capacity is multiplied by <>" } } -} +} diff --git a/translations/pl.json b/translations/pl.json index 0558b3e9a..609f614cd 100644 --- a/translations/pl.json +++ b/translations/pl.json @@ -1555,35 +1555,47 @@ "unlockedIn": "Odblokujesz zupełnie nowy profit w Osobliwości {{sing}}", "header": "Najwyższa osobliwość, jaką osiągnąłeś, to {{ord}} Osobliwość.
Oto lista korzyści, które uzyskałeś, aby zrekompensować kary ", "description": "(Najedź kursorem, aby więcej szczegółów. Dodatki w złotym tekście zostały dodane lub ulepszone w tej Osobliwości)", - "welcometoSingularity": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% do przyrostu kwarków i liczby Ascendecji dla każdej Osobliwości. Obecnie: +{{amount}}%", - "goldenCoins": "Niewydane Złote Kwarki zwiększają przyrost monet. Szczególnie silny dla pierwszych Ascendencji każdej Osobliwości. Obecnie: x{{amount}}", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% do przyrostu kwarków i liczby Ascendecji dla każdej Osobliwości. Obecnie: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Niewydane Złote Kwarki zwiększają przyrost monet. Szczególnie silny dla pierwszych Ascendencji każdej Osobliwości. Obecnie: x{{amount}}" + }, "xyz": { - "hasLevel2": "Oprócz GQ i gwarantowanych bezpłatnych poziomów do GQ 1/2/3 po +0,2/+0,2/+1, otrzymujesz PODWÓJNIE więcej darmowych poziomów ulepszeń z Codziennej Akcji Specjalnej!", - "hasLevel1": "Oprócz poziomów GQ i bezpłatnych ulepszeń, Codziennych akcji specjalnych zapewnia dodatkowe bezpłatne poziomy do GQ 1/2/3 odpowiednio na poziomie +0,2/+0,2/+1.", - "default": "Dzienna Akcja Specjalna nagradza Cię teraz Złotymi Kwarkami i darmowymi poziomami losowych ulepszeń Osobliwości, skalujących się wraz z liczbą Osobliwości!" + "name": "XYZ: Xtra dailY rewardZ", + "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", + "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", + "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "Hepteract Autocraft zostanie odblokowany", - "generousOrbs": "Efekt Przepływowych Kul przy otwieraniu Kostek dla Kwarków może teraz wzrosnąć do {{amount}}%", - "researchDummies": { - "hasLevel1": "You permanently keep Auto Research", - "otherwise": "You can Research using Hover to Buy" + "generousOrbs": { + "name": "Generous Orbs", + "default": "Efekt Przepływowych Kul przy otwieraniu Kostek dla Kwarków może teraz wzrosnąć do {{amount}}%" }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" + "researchDummies": { + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" }, "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." }, "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { + "name": "Super Start", "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", @@ -1591,6 +1603,7 @@ "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { + "name": "Not So Challenging", "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", @@ -1598,6 +1611,7 @@ "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { + "name": "Automation Upgrades", "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", @@ -1606,67 +1620,128 @@ "default": "You always have w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { + "name": "Even More Quarks", "bug": "This is a bug! Contact Platonic if you see this message, somehow.", - "m": "You gain {{stack}} stacks of 5% Quarks! Total Increase: +{{inc}}%" + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { + "name": "Shop Special Offer", "hasLevel2": "Ulepszenia sklepu Reinkarnacja i Asendencji są przechowywane na stałe!", "hasLevel1": "Na stałe zachowujesz 100 darmowych poziomów każdego ulepszenia Sklepu w pierwszym rzędzie", "default": "Każdą Osobliwość rozpoczynasz z 10 darmowymi poziomami każdego ulepszenia Sklepu w pierwszym rzędzie" }, - "potionAutogenerator": "Co 180 sekund automatycznie używaj jednej mikstury na Obtainium i Dary! Interwał zmniejszony o 3% na osobliwość.", - "respecBeGone": "Talizmany wzmacniają teraz wszystkie runy przez cały czas!", + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Co 180 sekund automatycznie używaj jednej mikstury na Obtainium i Dary! Interwał zmniejszony o 3% na osobliwość." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talizmany wzmacniają teraz wszystkie runy przez cały czas!" + }, "forTheLoveOfTheAntGod": { + "name": "For the love of (the Ant) God!", "hasLevel2": "Na stałe zatrzymujesz autokupujące mrówki i zaczynasz każdą Ascendencje z Mrówką 8. poziomu", "hasLevel1": "Na stałe zatrzymujesz autokupujące mrówki i zaczynasz każdą Ascendencje z Mrówką 5. poziomu", "default": "Na stałe zatrzymujesz autokupujące mrówki i zaczynasz każdą Ascendencje z Mrówką 1. poziomu" }, - "itAllAddsUp": "Nagroda za kod ADD jest dzielona przez {{div}}, ale czas odnowienia jest również dzielony przez {{div2}}, a pojemność jest mnożona przez {{cap}} (zaokrąglając w górę).", + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Automagical Runes", "hasLevel3": "Autokupujący runy kupi Błogosławieństwa, Duchy, Odłamki Talizmanów, Fragmenty i zwiększy poziom Nieskończonej Ascendencji ORAZ Starożytności Ant God", "hasLevel2": "Autokupujący runy kupi Błogosławieństwa, Duchy, Odłamki Talizmanów, Fragmenty i zwiększy poziom Nieskończonej Ascendencji", "hasLevel1": "Autokupujący Runy kupi Błogosławieństwa, Duchy i awansuje na zwiększy poziom Nieskończonej Ascendencji", "default": "Autokupujący runy kupi Błogosławieństwa i Duchy" }, - "exaltedAchievements": "Odblokowuje nowe, bardzo trudne osiągnięcia! Zarabia się je jednak inaczej niż inne...", + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered after reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + }, "coolQOLCubes": { + "name": "Cool QoL Cubes", "hasLevel1": "Zachowaj wszystkie badania otwierania kostek ORAZ zyskaj możliwość automatycznego otwierania procentu twoich kostek podczas każdej Ascendencji!", "default": "Badania związane z otwieraniem kostek nie będą już resetowane podczas Ascendencji" }, - "irishAnt": "Ants blessed with the luck of the Irish grant ☘ {{i}} Ambrosia Luck!", - "irishAnt2": "Ants blessed with more fortunate luck of the Irish grant ☘ {{i}} more Ambrosia Luck!", - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Wow! Cube Automated Shipping", "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Clones of Platonic Clicking at Your Desktop", "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." }, - "dilatedFiveLeaf": { - "desc": "Increase your base ☘ Ambrosia Luck by <>! +1% per perk level." + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", "octeractMetagenesis": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Immaculate Alchemy", "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!", - "oneHundredThirtyOne": "Gain <> Ambrosia Luck!", - "twoHundredSixtyNine": "Gain <> Ambrosia Luck!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No minimal Singularity to purchase required", @@ -2064,49 +2139,6 @@ "penaltyRough": "Your penalties will sharply worsen in <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "xyz": "XYZ: Xtra dailY rewardZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Research for Dummies", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Automation Upgrades", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "irishAnt": "Irish Ants", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Irish Ants II: Electric Boogaloo", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ", - "twoHundredSixtyNine": "Two Hundred and Sixty Nine!", - "oneHundredThirtyOne": "One Hundred and Thirty One!" } }, "general": { @@ -3589,4 +3621,4 @@ "ADD_CODE_CAP_BUFF": "Code 'add' Capacity is multiplied by <>" } } -} +} diff --git a/translations/pt.json b/translations/pt.json index d2aeb67f6..085addf46 100644 --- a/translations/pt.json +++ b/translations/pt.json @@ -1397,35 +1397,47 @@ "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", "description":"(Hover for more details. Perks in gold text were added or improved in this Singularity)", - "welcometoSingularity": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%", - "goldenCoins": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}", +"welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, "xyz": { + "name": "XYZ: Xtra dailY rewardZ", "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "Hepteract Autocraft will be unlocked", - "generousOrbs": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%", - "researchDummies": { - "hasLevel1": "You permanently keep Auto Research", - "otherwise": "You can Research using Hover to Buy" + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" + "researchDummies": { + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" }, - "antGodsCornucopia": { + "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." }, - "sweepomatic":{ + "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { + "name": "Super Start", "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", @@ -1433,6 +1445,7 @@ "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { + "name": "Not So Challenging", "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", @@ -1440,6 +1453,7 @@ "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { + "name": "Automation Upgrades", "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", @@ -1448,60 +1462,128 @@ "default": "You always have w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { + "name": "Even More Quarks", "bug": "This is a bug! Contact Platonic if you see this message, somehow.", - "m": "You gain {{stack}} stacks of 5% Quarks! Total Increase: +{{inc}}%" + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { + "name": "Shop Special Offer", "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" }, - "potionAutogenerator": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity.", - "respecBeGone": "Talismans now buff all runes at all times!", + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talismans now buff all runes at all times!" + }, "forTheLoveOfTheAntGod": { + "name": "For the love of (the Ant) God!", "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" }, - "itAllAddsUp": "ADD code reward is divided by {{div}} but the cooldown is also divided by {{div2}} and capacity is multiplied by {{cap}} (rounded up).", + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Automagical Runes", "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", "default": "Runes autobuyer will buy Blessings and Spirits" }, - "exaltedAchievements": "Unlocks new, very difficult achievements! They are earned differently from others, however...", + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + }, "coolQOLCubes": { + "name": "Cool QoL Cubes", "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", "default": "Researches related to opening cubes will no longer reset on Ascension" }, - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Wow! Cube Automated Shipping", "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" + }, "platonicClones": { + "name": "Clones of Platonic Clicking at Your Desktop", "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" + }, "octeractMetagenesis": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Immaculate Alchemy", "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No minimal Singularity to purchase required", @@ -1859,43 +1941,6 @@ "penaltyRough": "Your penalties will sharply worsen in <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "xyz": "XYZ: Xtra dailY rewardZ", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Research for Dummies", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Automation Upgrades", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ" } }, "general": { diff --git a/translations/pt_BR.json b/translations/pt_BR.json index 0fb7ea5db..cd115e756 100644 --- a/translations/pt_BR.json +++ b/translations/pt_BR.json @@ -1397,111 +1397,193 @@ "unlockedIn": "", "header": "", "description":"", - "welcometoSingularity": "", - "unlimitedGrowth": "", - "goldenCoins": "", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, "xyz": { - "hasLevel2": "", - "hasLevel1": "", - "default": "" + "name": "XYZ: Xtra dailY rewardZ", + "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", + "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", + "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "", - "generousOrbs": "", - "researchDummies": { - "hasLevel1": "", - "otherwise": "" + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" }, - "eternalAscensions": { - "hasLevel1": "", - "default": "" + "researchDummies": { + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" }, "antGodsCornucopia": { - "hasLevel3": "", - "hasLevel2": "", - "hasLevel1": "", - "default": "" - }, - "sweepomatic":{ - "hasLevel1": "", - "otherwise": "" + "name": "Ant God's Cornucopia", + "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", + "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", + "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", + "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." + }, + "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", + "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { - "hasLevel4": "", - "hasLevel3": "", - "hasLevel2": "", - "hasLevel1": "", - "default": "" + "name": "Super Start", + "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", + "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", + "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", + "hasLevel1": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos and 10 Particles", + "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { - "hasLevel4": "", - "hasLevel3": "", - "hasLevel2": "", - "hasLevel1": "", - "default": "" + "name": "Not So Challenging", + "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", + "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", + "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", + "hasLevel1": "You start each Ascension with 1 completion of Challenges 6 and 7", + "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { - "hasLevel5": "", - "hasLevel4": "", - "hasLevel3": "", - "hasLevel2": "", - "hasLevel1": "", - "default": "" + "name": "Automation Upgrades", + "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", + "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", + "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", + "hasLevel2": "You always have w1x4 through w1x8 and w2x10.", + "hasLevel1": "You always have w1x4 through w1x8.", + "default": "You always have w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { - "bug": "", - "m": "" + "name": "Even More Quarks", + "bug": "This is a bug! Contact Platonic if you see this message, somehow.", + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { - "hasLevel2": "", - "hasLevel1": "", - "default": "" + "name": "Shop Special Offer", + "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", + "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", + "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" + }, + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talismans now buff all runes at all times!" }, - "potionAutogenerator": "", - "respecBeGone": "", "forTheLoveOfTheAntGod": { - "hasLevel2": "", - "hasLevel1": "", - "default": "" + "name": "For the love of (the Ant) God!", + "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", + "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", + "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" + }, + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." }, - "itAllAddsUp": "", "automagicalRunes": { - "hasLevel3": "", - "hasLevel2": "", - "hasLevel1": "", - "default": "" + "name": "Automagical Runes", + "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", + "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", + "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", + "default": "Runes autobuyer will buy Blessings and Spirits" + }, + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" }, - "exaltedAchievements": "", "coolQOLCubes": { - "hasLevel1": "", - "default": "" + "name": "Cool QoL Cubes", + "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", + "default": "Researches related to opening cubes will no longer reset on Ascension" + }, + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" }, - "overclocked": "", "wowCubeAutomatedShipping": { - "hasLevel1": "", - "default": "" + "name": "Wow! Cube Automated Shipping", + "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", + "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + }, + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" }, - "congealedblueberries": "", - "goldenRevolution": "", - "goldenRevolutionII": "", - "goldenRevolutionIII": "", "platonicClones": { - "hasLevel1": "", - "default": "" + "name": "Clones of Platonic Clicking at Your Desktop", + "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", + "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." + }, + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." + }, + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" }, - "platSigma": "", - "midasMilleniumAgedGold": "", - "goldenRevolution4": "", "octeractMetagenesis": { - "hasLevel1": "", - "default": "" + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { - "hasLevel2": "", - "hasLevel1": "", - "default": "" - }, - "skrauQ": "", - "derpSmithsCornucopia": "" + "name": "Immaculate Alchemy", + "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", + "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", + "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." + }, + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "", @@ -1855,44 +1937,6 @@ "penaltyRough": "", "antiquitiesBought": "", "antiquitiesNotBought": "" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "", - "goldenCoins": "", - "xyz": "", - "hepteractAutocraft": "", - "generousOrbs": "", - "researchDummies": "", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "", - "notSoChallenging": "", - "automationUpgrades": "", - "evenMoreQuarks": "", - "shopSpecialOffer": "", - "potionAutogenerator": "", - "respecBeGone": "", - "forTheLoveOfTheAntGod": "", - "itAllAddsUp": "", - "automagicalRunes": "", - "exaltedAchievements": "", - "derpSmithsCornucopia": "", - "coolQOLCubes": "", - "overclocked": "", - "wowCubeAutomatedShipping": "", - "congealedblueberries": "", - "goldenRevolution": "", - "goldenRevolutionII": "", - "goldenRevolutionIII": "", - "platonicClones": "", - "platSigma": "", - "midasMilleniumAgedGold": "", - "goldenRevolution4": "", - "octeractMetagenesis": "", - "immaculateAlchemy": "", - "skrauQ": "" } }, "general": { diff --git a/translations/ru.json b/translations/ru.json index 20b8ba371..2e9f648c4 100644 --- a/translations/ru.json +++ b/translations/ru.json @@ -1555,35 +1555,47 @@ "unlockedIn": "Вы разблокируете новую Привилегию в Сингулярности {{sing}}", "header": "Высшая Сингулярность, которой вы достигли - {{ord}} Сингулярность.
Вот список привилегий, которые вы приобрели для компенсации штрафов ", "description": "(Наведите курсор для получения более подробной информации. В этой Сингулярности были добавлены или улучшены привилегии, отображаемые золотым текстом)", - "welcometoSingularity": "Добро пожаловать в Сингулярность! За достижение этого этапа, вам положена привилегия: Гептеракты теперь можно создавать автоматически (когда вы откроете их снова), а Платоновы Улучшения теперь КупиМакс, если доступны!", - "unlimitedGrowth": "+10% к увеличению количества Кварков и счётчику Вознесения для каждой Сингулярности. Текущий: +{{amount}}%", - "goldenCoins": "Непотраченные Золотые Кварки увеличивают получение Монет. Особенно полезно для первого Вознесения каждой Сингулярности. Текущий: x{{amount}}", + "welcometoSingularity": { + "name": "Добро пожаловать в Сингулярность!", + "default": "Добро пожаловать в Сингулярность! За достижение этого этапа, вам положена привилегия: Гептеракты теперь можно создавать автоматически (когда вы откроете их снова), а Платоновы Улучшения теперь КупиМакс, если доступны!" + }, + "unlimitedGrowth": { + "name": "Неограниченный рост", + "default": "+10% к увеличению количества Кварков и счётчику Вознесения для каждой Сингулярности. Текущий: +{{amount}}%" + }, + "goldenCoins": { + "name": "Золотые монеты", + "default": "Непотраченные Золотые Кварки увеличивают получение Монет. Особенно полезно для первого Вознесения каждой Сингулярности. Текущий: x{{amount}}" + }, "xyz": { + "name": "XYZ: Xтра ежедневныY приZ", "hasLevel2": "В дополнении к ЗК и гарантированным бесплатным уровням к ЗК 1/2/3 на +0.2/+0.2/+1, вы получаете ДВОЙНОЕ количество бесплатных улучшений от Специального Действия 'Daily'!", "hasLevel1": "В дополнении к ЗК и бесплатным уровням улучшения, Специальное Действие 'Daily' даёт вам дополнительные бесплатные уровни к ЗК 1/2/3 на +0.2/+0.2/+1 уровни соответственно.", "default": "Специальный Код 'Daily' теперь дарует вам Золотые Кварки и случайные бесплатные улучшения Сингулярности; и то и то увеличивается в зависимости от счётчика сингулярности!" }, - "hepteractAutocraft": "Открывает Автосоздание гептерактов", - "generousOrbs": "Эффект Сфер Изобильного Потока при открытии Кубов для Кварков теперь может увеличиваться до {{amount}}%", + "generousOrbs": { + "name": "Щедрые Сферы", + "default": "Эффект Сфер Изобильного Потока при открытии Кубов для Кварков теперь может увеличиваться до {{amount}}%" + }, "researchDummies": { + "name": "Исследования для Чайников", "hasLevel1": "Навсегда оставляете Авто Исследования", - "otherwise": "Вы можете Исследовать, Наведя курсор мыши, чтобы Купить" - }, - "eternalAscensions": { - "hasLevel1": "Ваш счётчик вознесений получает множитель, зависящий от счётчика Сингулярности. Также открывает новый режим Авто Вознесения - Реальное Время! Текущий: х{{amount}}", - "default": "Ваш счётчик вознесений получает множитель, зависящий от счётчика Сингулярности! Текущий: х{{amount}}" + "default": "Вы можете Исследовать, Наведя курсор мыши, чтобы Купить" }, "antGodsCornucopia": { + "name": "Рог изобилия Муравьиного Бога", "hasLevel3": "У Скорости Муравьёв теперь есть 'чистый' множитель х4.44, а также истинно чистый множитель х1e12!", "hasLevel2": "У Скорости Муравьёв теперь есть 'чистый' множитель х4.44, а также истинно чистый множитель х1e6!", "hasLevel1": "У Скорости Муравьёв теперь есть 'чистый' множитель х4.44, а также истинно чистый множитель х1,000!", "default": "У Скорости Муравьёв теперь есть 'чистый' множитель х4.44." }, "sweepomatic": { + "name": "Робот Пыле-сборот Мк.2", "hasLevel1": "Ради экономии ваших кликов, Авто Зачистка Испытаний теперь начинает Испытания Вознесения с И10 и проходит через Испытания Вознесения, если у вас есть Мгновенные Испытания 2!", - "otherwise": "Ради экономии ваших кликов, Авто Зачистка Испытаний теперь начинает Испытания Вознесения с И10!" + "default": "Ради экономии ваших кликов, Авто Зачистка Испытаний теперь начинает Испытания Вознесения с И10!" }, "superStart": { + "name": "Супер Старт", "hasLevel4": "Вы начинаете каждое Вознесение с 1 Трансценденцией, 1 Реинкарнацией, 1001 Мифосом, 2.22e2222 Частиц и 500 Обтаниума", "hasLevel3": "Вы начинаете каждое Вознесение с 1 Трансценденцией, 1 Реинкарнацией, 1001 Мифосом, 1e100 Частиц и 500 Обтаниума", "hasLevel2": "Вы начинаете каждое Вознесение с 1 Трансценденцией, 1 Реинкарнацией, 1001 Мифосом, 1e16 Частиц и 500 Обтаниума", @@ -1591,6 +1603,7 @@ "default": "Вы начинаете каждое Вознесение с 1 Трансценденцией и 1001 Мифосом" }, "notSoChallenging": { + "name": "Тоже Мне Испытание", "hasLevel4": "Вы начинаете каждое Вознесение с 1 выполненным Испытанием 6, 7 и 9, и 5 выполненными Испытаниями 8", "hasLevel3": "Вы начинаете каждое Вознесение с 1 выполненным Испытанием 6 и 7, и 5 выполненными Испытаниями 8", "hasLevel2": "Вы начинаете каждое Вознесение с 1 выполненным Испытанием 6, 7 и 8", @@ -1598,6 +1611,7 @@ "default": "Вы начинаете каждое Вознесение с 1 выполненным Испытанием 6" }, "automationUpgrades": { + "name": "Улучшения Автоматизации", "hasLevel5": "Достигнув 100 Сингулярности, вы никогда не забудете вкус Вау! Кучка Печенья с Шоколадной Крошкой!", "hasLevel4": "У вас всегда есть с w1x4 по w1x8 и w2x10; r6x5, r6x10 и r6x20. Магазин автоматизации также приобретается автоматически!", "hasLevel3": "У вас всегда есть с w1x4 по w1x8 и w2x10. Магазин автоматизации теперь приобретается автоматически!", @@ -1606,67 +1620,128 @@ "default": "У вас всегда есть с w1x7. (Автопокупатели для строений Частиц)" }, "evenMoreQuarks": { + "name": "Ещё Больше Кварков", "bug": "Это баг! Напишите Platonic, если вы каким-либо образом увидели это сообщение.", - "m": "Вы получаете {{stack}} стаков по 5% Кварков! Общее Увеличение: +{{inc}}%" + "default": "Вы получаете <> стаков по <> Кварков! Общее Увеличение: <>" }, "shopSpecialOffer": { + "name": "Особое Предложение в Магазине", "hasLevel2": "Улучшения в магазинах уровней Реинкарнации и Вознесения сохраняются постоянно!", "hasLevel1": "Вы постоянно сохраняете 100 бесплатных уровней каждого улучшения Магазина в первом ряду", "default": "Вы начинаете каждую Сингулярность с 10 бесплатными уровнями каждого улучшения Магазина в первом ряду" }, - "potionAutogenerator": "Каждые 180 секунд автоматически используется одно зелье Обтаниума и Подношений! Интервал уменьшает на 3% за сингулярность.", - "respecBeGone": "Теперь Талисманы всегда усиливают все руны!", + "potionAutogenerator": { + "name": "Автогенератор Зелий", + "default": "Каждые 180 секунд автоматически используется одно зелье Обтаниума и Подношений! Интервал уменьшает на 3% за сингулярность." + }, + "respecBeGone": { + "name": "Уходи, Перенабор!", + "default": "Теперь Талисманы всегда усиливают все руны!" + }, "forTheLoveOfTheAntGod": { + "name": "Ради (Муравьиного) Бога!", "hasLevel2": "Навсегда сохраняете автопокупатели Муравьёв и начинаете каждое Вознесение с Муравьёв 8-го уровня", "hasLevel1": "Вы навсегда сохраняете автопокупатели Муравьёв и начинаете каждое Вознесение с Муравьём 5-го уровня", "default": "Вы навсегда сохраняете автопокупатели Муравьёв и начинаете каждое Вознесение с Муравьём 1-го уровня" }, - "itAllAddsUp": "Награда за код ADD делится на {{div}}, но время восстановления также делится на {{div2}}, а ёмкость умножается на {{cap}} (округляется в большую сторону).", + "itAllAddsUp": { + "name": "Всё идет по нарастающей", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "Автомагические Руны", "hasLevel3": "Автопокупатель рун будет покупать Благословения, Духов, Осколки Талисманов, Фрагменты и будет повышать уровень Бесконечного Восхождения И Антиквариатов Муравьиного Бога", "hasLevel2": "Автопокупатель рун будет покупать Благословения, Духов, Осколки Талисманов, Фрагменты и будет повышать уровень Бесконечного Восхождения", "hasLevel1": "Автопокупатель рун будет покупать Благословения, Духов и повышать уровень Бесконечного Восхождения", "default": "Автопокупатель рун будет покупать Благословения и Духов" }, - "exaltedAchievements": "Открывает новые, очень сложные достижения! Однако они зарабатываются иначе, чем другие...", + "eternalAscensions": { + "name": "Вечные Вознесения", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Хранилище ВОЗВЫШЕНИЯ", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Рог Изобилия Кукузнеца", + "default": "С благословением от Кукузнеца, каждая сингулярность даёт +{{counter}}% больше Октерактов!" + }, "coolQOLCubes": { + "name": "Крутой Сервис Для Кубов", "hasLevel1": "Сохраняются все исследования Открытия Кубов И появляется возможность автоматически открывать определенный процент ваших кубов при каждом Вознесении!", "default": "Исследования, касающиеся открытия кубов больше не сбрасываются при Вознесении" }, - "irishAnt": "Муравьи, благословлённые удачей Ирландцев, дают ☘ {{i}} Удачи Амброзии!", - "irishAnt2": "Муравьи, благословлённые ещё большей удачей Ирландцев, дают ☘ {{i}} Удачи Амброзии!", - "overclocked": "Лимиты уровней для Некоторых Улучшений Сингулярности увеличены на {{i}}!", + "irishAnt": { + "name": "Ирландские Муравьи", + "default": "Муравьи, благословлённые удачей Ирландцев, дают <> Удачи Амброзии!" + }, + "irishAnt2": { + "name": "Ирландские Муравьи II: Электрическое Бугало", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Разогнанный", + "default": "Лимиты уровней для Некоторых Улучшений Сингулярности увеличены на {{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "Автоматические Поставки Wow! Кубов", "hasLevel1": "Автоматическая покупка улучшений кубов каждое вознесение, вне зависимости от того, где вы!", "default": "Автоматическая покупка Улучшений Кубов каждое вознесение, но только если вы в Испытании Сингулярности." }, - "congealedblueberries": "Полутвёрдая Голубика, выполняет все функции нормальной. Даёт +{{i}} ягод Голубики, которые могут быть использованы в дереве Голубики!", - "goldenRevolution": "Сингулярность даёт на 0.4% больше Золотых Кварков за Сингулярность. Текущий: +{{current}}% (МАКС: +100%)", - "goldenRevolutionII": "Золотые Кварки стоят на 0.2% дешевле за Сингулярность. Текущий: -{{current}}% (МАКС: -50%)", - "goldenRevolutionIII": "Экспорт даёт на 2% больше Золотых Кварков за Сингулярность. Текущий: +{{current}}% (МАКС: +500%)", + "congealedblueberries": { + "name": "Замороженная Голубика", + "default": "Полутвёрдая Голубика, выполняет все функции нормальной. Даёт +{{i}} ягод Голубики, которые могут быть использованы в дереве Голубики!" + }, + "goldenRevolution": { + "name": "Золотая Революция", + "default": "Сингулярность даёт на 0.4% больше Золотых Кварков за Сингулярность. Текущий: +{{current}}% (МАКС: +100%)" + }, + "goldenRevolutionII": { + "name": "Золотая Революция II", + "default": "Золотые Кварки стоят на 0.2% дешевле за Сингулярность. Текущий: -{{current}}% (МАКС: -50%)" + }, + "goldenRevolutionIII": { + "name": "Золотая Революция III", + "default": "Экспорт даёт на 2% больше Золотых Кварков за Сингулярность. Текущий: +{{current}}% (МАКС: +500%)" + }, "platonicClones": { + "name": "Клоны Platonic'а, Кликающие с Вами", "hasLevel1": "Автоматическая покупка Платоновых Улучшений каждое вознесение, без траты Обтаниума или Подношений, где угодно!", "default": "Автоматическая покупка Платоновых Улучшений каждое вознесение, без траты Обтаниума или Подношений, но только в Испытаниях Сингулярности." }, - "dilatedFiveLeaf": { - "desc": "Увеличивает базовую ☘ Удачу Амброзии на <>! +1% за уровень навыка." + "platSigma": { + "name": "PL-AT Σ", + "default": "Код 'add' восполняется на {{counter}}% быстрее за каждый уровень за Сингулярность. Текущий: {{current}} (МАКС: Время перезарядки -60%)" + }, + "midasMilleniumAgedGold": { + "name": "Тысячелетнее Золото Мидаса", + "default": "Каждое использование кода 'add' даёт 0.01 бесплатных уровней ЗК1 и 0.05 бесплатных уровней ЗК3." + }, + "goldenRevolution4": { + "name": "Золотая Революция IV", + "default": "Каждый тик Октеракта автоматически переводит 1 в {{gq}} ЗК, который вы получили в этой сингулярности, на ваш баланс автоматически!" }, - "platSigma": "Код 'add' восполняется на {{counter}}% быстрее за каждый уровень за Сингулярность. Текущий: {{current}} (МАКС: Время перезарядки -60%)", - "midasMilleniumAgedGold": "Каждое использование кода 'add' даёт 0.01 бесплатных уровней ЗК1 и 0.05 бесплатных уровней ЗК3.", - "goldenRevolution4": "Каждый тик Октеракта автоматически переводит 1 в {{gq}} ЗК, который вы получили в этой сингулярности, на ваш баланс автоматически!", "octeractMetagenesis": { - "hasLevel1": "За каждое использование кода 'Daily' даёт 1% от купленных уровней Ко И Тригенезиса октерактов в качестве бонусных уровней к ним же!", - "default": "За каждое использование кода 'Daily' даёт 1% от купленных уровней Когенезиса октерактов в качестве бонусных уровней к нему же!" + "name": "Метагенезис Октерактов", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "Безупречная Алхимия", "hasLevel2": "После 200-й Сингулярности, Перемотки больше не работают! Вместо этого ваше получение ЗК умножено, а стоимость покупки ЗК разделена, на 8.", "hasLevel1": "После 200-й Сингулярности, Перемотки больше не работают! Вместо этого ваше получение ЗК умножено, а стоимость покупки ЗК разделена, на 5.", "default": "После 200-й Сингулярности, Перемотки больше не работают! Вместо этого ваше получение ЗК умножено, а стоимость покупки ЗК разделена, на 3." }, - "skrauQ": "Умножает все Получения Кварков на ((Сингулярность - 179)/20)^2. Текущий: {{amt}}... Да, это настолько хорошо.", - "derpSmithsCornucopia": "С благословением от Кукузнеца, каждая сингулярность даёт +{{counter}}% больше Октерактов!", - "oneHundredThirtyOne": "<> Удачи Амброзии!", - "twoHundredSixtyNine": "<> Удачи Амброзии!" + "skrauQ": { + "name": "икравК", + "default": "Умножает все Получения Кварков на ((Сингулярность - 179)/20)^2. Текущий: {{amt}}... Да, это настолько хорошо." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "Никакой минимальной Сингулярности для покупки не требуется", @@ -2064,49 +2139,6 @@ "penaltyRough": "Ваши штрафы резко ухудшатся в <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "" - }, - "perkNames": { - "welcometoSingularity": "Добро пожаловать в Сингулярность!", - "unlimitedGrowth": "Неограниченный рост", - "goldenCoins": "Золотые монеты", - "xyz": "XYZ: Xтра ежедневныY приZ", - "hepteractAutocraft": "Автосоздание Гептерактов", - "generousOrbs": "Щедрые Сферы", - "researchDummies": "Исследования для Чайников", - "eternalAscensions": "Вечные Вознесения", - "antGodsCornucopia": "Рог изобилия Муравьиного Бога", - "sweepomatic": "Робот Пыле-сборот Мк.2", - "superStart": "Супер Старт", - "notSoChallenging": "Тоже Мне Испытание", - "automationUpgrades": "Улучшения Автоматизации", - "evenMoreQuarks": "Ещё Больше Кварков", - "shopSpecialOffer": "Особое Предложение в Магазине", - "potionAutogenerator": "Автогенератор Зелий", - "respecBeGone": "Уходи, Перенабор!", - "forTheLoveOfTheAntGod": "Ради (Муравьиного) Бога!", - "itAllAddsUp": "Всё идет по нарастающей", - "automagicalRunes": "Автомагические Руны", - "exaltedAchievements": "Хранилище ВОЗВЫШЕНИЯ", - "derpSmithsCornucopia": "Рог Изобилия Кукузнеца", - "coolQOLCubes": "Крутой Сервис Для Кубов", - "irishAnt": "Ирландские Муравьи", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Ирландские Муравьи II: Электрическое Бугало", - "overclocked": "Разогнанный", - "wowCubeAutomatedShipping": "Автоматические Поставки Wow! Кубов", - "congealedblueberries": "Замороженная Голубика", - "goldenRevolution": "Золотая Революция", - "goldenRevolutionII": "Золотая Революция II", - "goldenRevolutionIII": "Золотая Революция III", - "platonicClones": "Клоны Platonic'а, Кликающие с Вами", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Тысячелетнее Золото Мидаса", - "goldenRevolution4": "Золотая Революция IV", - "octeractMetagenesis": "Метагенезис Октерактов", - "immaculateAlchemy": "Безупречная Алхимия", - "skrauQ": "икравК", - "twoHundredSixtyNine": "Двести и Шестьдесят Девять!", - "oneHundredThirtyOne": "Сто и Тридцать Один!" } }, "general": { @@ -3589,4 +3621,4 @@ "ADD_CODE_CAP_BUFF": "Ёмкость кода 'add' увеличена в <> раз" } } -} +} diff --git a/translations/source.json b/translations/source.json index 6544f5270..6a99f684e 100644 --- a/translations/source.json +++ b/translations/source.json @@ -1575,118 +1575,193 @@ "unlockedIn": "You will unlock a whole new Perk in Singularity {{sing}}", "header": "The highest Singularity you've reached is the {{ord}} Singularity.
Here is the list of perks you have acquired to compensate the penalties", "description": "(Hover for more details. Perks in gold text were added or improved in this Singularity)", - "welcometoSingularity": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!", - "unlimitedGrowth": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%", - "goldenCoins": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}", + "welcometoSingularity": { + "name": "Welcome to Singularity!", + "default": "Welcome to the Singularity! As a perk for reaching this milestone: you can now autocraft Hepteracts (when you unlock them again) and Platonic Upgrades will BuyMax if they are affordable!" + }, + "unlimitedGrowth": { + "name": "Unlimited Growth", + "default": "+10% to Quarks gain and Ascension Count for each Singularity. Currently: +{{amount}}%" + }, + "goldenCoins": { + "name": "Golden Coins", + "default": "Unspent Golden Quarks boost Coin gain. Especially strong for first Ascensions of each Singularity. Currently: x{{amount}}" + }, "xyz": { + "name": "XYZ: Xtra dailY rewardZ", "hasLevel2": "In addition to GQ and guaranteed free levels to GQ 1/2/3 at +0.2/+0.2/+1, you get DOUBLE the amount of free upgrade levels from the Daily Special Action!", "hasLevel1": "In addition to GQ and free upgrade levels, the Daily Special Action gives you additional free levels to GQ 1/2/3 at +0.2/+0.2/+1 levels respectively.", "default": "The Daily Special Action now rewards you with Golden Quarks and free levels for random Singularity upgrades, both scaling with your singularity count!" }, - "hepteractAutocraft": "Hepteract Autocraft will be unlocked", - "generousOrbs": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%", - "researchDummies": { - "hasLevel1": "You permanently keep Auto Research", - "otherwise": "You can Research using Hover to Buy" + "generousOrbs": { + "name": "Generous Orbs", + "default": "Overflux Orbs effect on opening Cubes for Quarks can now go up to {{amount}}%" }, - "eternalAscensions": { - "hasLevel1": "Your ascension count is multipled based on your Singularity count and unlock a new Real Time based Auto Ascension mode! Currently: x{{amount}}", - "default": "Your ascension count is multipled based on your Singularity count! Currently: x{{amount}}" + "researchDummies": { + "name": "Research for Dummies", + "hasLevel1": "You permanently keep Auto Research and can Research using Hover to Buy!", + "default": "You can Research using Hover to Buy" }, "antGodsCornucopia": { + "name": "Ant God's Cornucopia", "hasLevel3": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e12 multiplier!", "hasLevel2": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1e6 multiplier!", "hasLevel1": "Ant Speed now has an 'uncorruptable' x4.44 multiplier and a true uncorruptable x1,000 multiplier!", "default": "Ant Speed now has a permanent 'uncorruptable' x4.44 multiplier." }, - "sweepomatic":{ + "sweepomatic": { + "name": "Automatic Sweep-o-matic Mk.2", "hasLevel1": "The Auto Challenge Sweeper will now start Ascension Challenges at c10 and can now sweep through Ascension Challenges if you have Instant Challenges 2, saving you clicks!", - "otherwise": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" + "default": "The Auto Challenge Sweeper will now start Ascension Challenges at c10, saving you clicks!" }, "superStart": { - "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", - "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", - "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", - "hasLevel1": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos and 10 Particles", - "default": "You start each Ascension with 1 Transcension and 1001 Mythos" + "name": "Super Start", + "hasLevel4": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 2.22e2222 Particles and 500 Obtainium", + "hasLevel3": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e100 Particles and 500 Obtainium", + "hasLevel2": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos, 1e16 Particles and 500 Obtainium", + "hasLevel1": "You start each Ascension with 1 Transcension, 1 Reincarnation, 1001 Mythos and 10 Particles", + "default": "You start each Ascension with 1 Transcension and 1001 Mythos" }, "notSoChallenging": { - "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", - "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", - "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", - "hasLevel1": "You start each Ascension with 1 completion of Challenges 6 and 7", - "default": "You start each Ascension with 1 completion of Challenge 6" + "name": "Not So Challenging", + "hasLevel4": "You start each Ascension with 1 completion of Challenges 6, 7 & 9 and 5 completions of Challenge 8", + "hasLevel3": "You start each Ascension with 1 completion of Challenges 6 & 7 and 5 completions of Challenge 8", + "hasLevel2": "You start each Ascension with 1 completion of Challenges 6, 7 and 8", + "hasLevel1": "You start each Ascension with 1 completion of Challenges 6 and 7", + "default": "You start each Ascension with 1 completion of Challenge 6" }, "automationUpgrades": { - "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", - "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", - "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", - "hasLevel2": "You always have w1x4 through w1x8 and w2x10.", - "hasLevel1": "You always have w1x4 through w1x8.", - "default": "You always have w1x7. (Autobuyers for Particle buildings)" + "name": "Automation Upgrades", + "hasLevel5": "Having achieved 100 Singularity, you will never forget the taste of Wow! A pile of Chocolate Chip Cookies!", + "hasLevel4": "You always have w1x4 through w1x8 and w2x10; r6x5, r6x10 and r6x20. Automation Shop is also automatically purchased!", + "hasLevel3": "You always have w1x4 through w1x8 and w2x10. Automation Shop is now automatically purchased!", + "hasLevel2": "You always have w1x4 through w1x8 and w2x10.", + "hasLevel1": "You always have w1x4 through w1x8.", + "default": "You always have w1x7. (Autobuyers for Particle buildings)" }, "evenMoreQuarks": { - "bug": "This is a bug! Contact Platonic if you see this message, somehow.", - "m": "You gain {{stack}} stacks of 5% Quarks! Total Increase: +{{inc}}%" + "name": "Even More Quarks", + "bug": "This is a bug! Contact Platonic if you see this message, somehow.", + "default": "You gain <> stacks of <> Quarks! Total Increase: <>" }, "shopSpecialOffer": { - "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", - "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", - "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" + "name": "Shop Special Offer", + "hasLevel2": "Reincarnation and Ascension tier Shop upgrades are kept permanently!", + "hasLevel1": "You permanently keep 100 free levels of each Shop upgrade in the first row", + "default": "You start each Singularity with 10 free levels of each Shop upgrade in the first row" + }, + "potionAutogenerator": { + "name": "Potion Autogenerator", + "default": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity." + }, + "respecBeGone": { + "name": "Respec, be gone!", + "default": "Talismans now buff all runes at all times!" }, - "potionAutogenerator": "Every 180 Seconds, automatically use one potion for Obtainium and Offerings! Interval reduced by 3% per singularity.", - "respecBeGone": "Talismans now buff all runes at all times!", "forTheLoveOfTheAntGod": { - "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", - "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", - "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" + "name": "For the love of (the Ant) God!", + "hasLevel2": "You permanently keep Ant autobuyers and start each Ascension with a Tier 8 Ant", + "hasLevel1": "You permanently keep Ant autobuyers and start each Ascension with a Tier 5 Ant", + "default": "You permanently keep Ant autobuyers and start each Ascension with a Tier 1 Ant" + }, + "itAllAddsUp": { + "name": "It all adds up", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." }, - "itAllAddsUp": "ADD code reward is divided by {{div}} but the cooldown is also divided by {{div2}} and capacity is multiplied by {{cap}} (rounded up).", "automagicalRunes": { - "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", - "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", - "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", - "default": "Runes autobuyer will buy Blessings and Spirits" + "name": "Automagical Runes", + "hasLevel3": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent AND Antiquities of Ant God", + "hasLevel2": "Runes autobuyer will buy Blessings, Spirits, Talisman Shards, Fragments and will level up Infinite Ascent", + "hasLevel1": "Runes autobuyer will buy Blessings, Spirits and level up Infinite Ascent", + "default": "Runes autobuyer will buy Blessings and Spirits" + }, + "eternalAscensions": { + "name": "Eternal Ascensions", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "Exalt Vault", + "default": "Unlocks new, very difficult challenges! They may only be entered by reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith's Cornucopia", + "default": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!" }, - "exaltedAchievements": "Unlocks new, very difficult achievements! They are earned differently from others, however...", "coolQOLCubes": { - "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", - "default": "Researches related to opening cubes will no longer reset on Ascension" + "name": "Cool QoL Cubes", + "hasLevel1": "Keep all Cube Opening researches AND gain the ability to automatically open a percentage of your cubes each Ascension!", + "default": "Researches related to opening cubes will no longer reset on Ascension" + }, + "irishAnt": { + "name": "Irish Ants", + "default": "Ants blessed with the luck of the Irish grant <> Ambrosia Luck!" + }, + "irishAnt2": { + "name": "Irish Ants II: Electric Boogaloo", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "Overclocked", + "default": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!" }, - "irishAnt": "Ants blessed with the luck of the Irish grant ☘ {{i}} Ambrosia Luck!", - "irishAnt2": "Ants blessed with more fortunate luck of the Irish grant ☘ {{i}} more Ambrosia Luck!", - "overclocked": "Level Caps on Certain Singularity Upgrades are increased by {{i}}!", "wowCubeAutomatedShipping": { - "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", - "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + "name": "Wow! Cube Automated Shipping", + "hasLevel1": "Automatically buy Cube Upgrades with each ascension, no matter where you are!", + "default": "Automatically buy Cube Upgrades with each ascension, but only if you are in a Singularity Challenge." + }, + "congealedblueberries": { + "name": "Congealed Blueberries", + "default": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!" + }, + "goldenRevolution": { + "name": "Golden Revolution", + "default": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)" + }, + "goldenRevolutionII": { + "name": "Golden Revolution II", + "default": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)" + }, + "goldenRevolutionIII": { + "name": "Golden Revolution III", + "default": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)" }, - "congealedblueberries": "Semisolid Blueberries act like normal Blueberries. Gain +{{i}} Blueberries which may be used in the Blueberry tree!", - "goldenRevolution": "Singularity grants 0.4% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +100%)", - "goldenRevolutionII": "Golden Quarks are 0.2% cheaper per Singularity. Currently: -{{current}}% (MAX: -50%)", - "goldenRevolutionIII": "Export gives 2% more Golden Quarks per Singularity. Currently: +{{current}}% (MAX: +500%)", "platonicClones": { - "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", - "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." + "name": "Clones of Platonic Clicking at Your Desktop", + "hasLevel1": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, anywhere!", + "default": "Automatically buy Platonic Upgrades with each ascension, without spending Obtainium or Offerings, but only in a Singularity Challenge." + }, + "platSigma": { + "name": "PL-AT Σ", + "default": "The 'Add' Special Action refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)" + }, + "midasMilleniumAgedGold": { + "name": "Midas' Millenium-Aged Gold", + "default": "Every use of the 'Add' Special Action gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3." }, - "dilatedFiveLeaf": { - "desc": "Increase your base ☘ Ambrosia Luck by <>! +1% per perk level." + "goldenRevolution4": { + "name": "Golden Revolution IV", + "default": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!" }, - "platSigma": "Code 'add' refills {{counter}}% faster per level per Singularity. Currently: {{current}} (MAX: -60% Cooldown)", - "midasMilleniumAgedGold": "Every use of code `add` gives 0.01 free levels of GQ1 and 0.05 free levels of GQ3.", - "goldenRevolution4": "Every Octeract tick, convert 1 in {{gq}} GQ you would gain in this singularity to your balance automagically!", "octeractMetagenesis": { - "hasLevel1": "Gives 1% of your purchased Octeract Co AND Trigenesis as bonus levels of themselves per use of code daily!", - "default": "Gives 1% of your purchased Octeract Cogenesis as bonus levels of Octeract Cogenesis per use of code daily!" + "name": "Octeract Metagenesis", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { - "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", - "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", - "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." - }, - "skrauQ": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good.", - "derpSmithsCornucopia": "With blessing from the Derpsmith, every singularity grants +{{counter}}% more Octeracts!", - "oneHundredThirtyOne": "Gain <> Ambrosia Luck!", - "twoHundredSixtyNine": "Gain <> Ambrosia Luck!" + "name": "Immaculate Alchemy", + "hasLevel2": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 8.", + "hasLevel1": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 5.", + "default": "After Singularity 200, Fast Forwards no longer work! Instead, multiply your GQ gain and divide your GQ buy cost by 3." + }, + "skrauQ": { + "name": "skrauQ", + "default": "Multiply all Quark Gain by ((Singularity - 179)/20)^2. Currently: {{amt}}... Yes, it's that good." + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "No minimal Singularity to purchase required", @@ -2084,49 +2159,6 @@ "penaltyRough": "Your penalties will sharply worsen in <>.", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "Welcome to Singularity!", - "unlimitedGrowth": "Unlimited growth", - "goldenCoins": "Golden coins", - "xyz": "XYZ: Xtra dailY rewardZ", - "hepteractAutocraft": "Hepteract Autocraft", - "generousOrbs": "Generous Orbs", - "researchDummies": "Research for Dummies", - "eternalAscensions": "Eternal Ascensions", - "antGodsCornucopia": "Ant God's Cornucopia", - "sweepomatic": "Automatic Sweep-o-matic Mk.2", - "superStart": "Super Start", - "notSoChallenging": "Not So Challenging", - "automationUpgrades": "Automation Upgrades", - "evenMoreQuarks": "Even More Quarks", - "shopSpecialOffer": "Shop Special Offer", - "potionAutogenerator": "Potion Autogenerator", - "respecBeGone": "Respec, be gone!", - "forTheLoveOfTheAntGod": "For the love of (the Ant) God!", - "itAllAddsUp": "It all adds up", - "automagicalRunes": "Automagical Runes", - "exaltedAchievements": "EXALT Vault", - "derpSmithsCornucopia": "Derpsmith's Cornucopia", - "coolQOLCubes": "Cool Qol Cubes", - "irishAnt": "Irish Ants", - "dilatedFiveLeaf": "Dilated Five Leaf Clover!", - "irishAnt2": "Irish Ants II: Electric Boogaloo", - "overclocked": "Overclocked", - "wowCubeAutomatedShipping": "Wow! Cube Automated Shipping", - "congealedblueberries": "Congealed Blueberries", - "goldenRevolution": "Golden Revolution", - "goldenRevolutionII": "Golden Revolution II", - "goldenRevolutionIII": "Golden Revolution III", - "platonicClones": "Clones of Platonic Clicking at Your Desktop", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "Midas' Millenium-Aged Gold", - "goldenRevolution4": "Golden Revolution IV", - "octeractMetagenesis": "Octeract Metagenesis", - "immaculateAlchemy": "Immaculate Alchemy", - "skrauQ": "skrauQ", - "twoHundredSixtyNine": "Two Hundred and Sixty Nine!", - "oneHundredThirtyOne": "One Hundred and Thirty One!" } }, "general": { diff --git a/translations/zh.json b/translations/zh.json index 51dbc914b..b911dc51a 100644 --- a/translations/zh.json +++ b/translations/zh.json @@ -1555,35 +1555,47 @@ "unlockedIn": "第{{sing}}次进入奇点后将解锁新特权", "header": "您的最高奇点次数为{{ord}}次奇点。
以下是您在奇点中获得的特权", "description": "(鼠标停留在特权上可以查看效果。金色文本的特权在本次奇点解锁或者加强)", - "welcometoSingularity": "欢迎进入奇点时代!您可以在解锁相应七阶立方后,自动进行七阶立方锻造,且只要资源充足,可以最大化购买PLATONIC方盒升级!", - "unlimitedGrowth": "每进入1次奇点,夸克获取数量和飞升次数获取数量就增加10%(目前增加了{{amount}}%)", - "goldenCoins": "根据未花费的金夸克增加金币产量。每次奇点的飞升前阶段效果最好(目前增加了{{amount}}%)", + "welcometoSingularity": { + "name": "欢迎来到奇点时代!", + "default": "欢迎进入奇点时代!您可以在解锁相应七阶立方后,自动进行七阶立方锻造,且只要资源充足,可以最大化购买PLATONIC方盒升级!" + }, + "unlimitedGrowth": { + "name": "无限成长", + "default": "每进入1次奇点,夸克获取数量和飞升次数获取数量就增加10%(目前增加了{{amount}}%)%" + }, + "goldenCoins": { + "name": "金币之雨", + "default": "根据未花费的金夸克增加金币产量。每次奇点的飞升前阶段效果最好(目前增加了{{amount}}%)" + }, "xyz": { + "name": "“每日”代码额外奖励", "hasLevel2": "输入“每日”代码后可以获得金夸克和随机奇点升级的免费等级,额外获得0.2级金夸克 I,0.2级金夸克 II和1级金夸克 III,另外再使获得的免费等级数量翻倍!", "hasLevel1": "输入“每日”代码后可以获得金夸克和随机奇点升级的免费等级,还可以额外获得0.2级金夸克 I,0.2级金夸克 II和1级金夸克 III。", "default": "输入“每日”代码后可以获得金夸克和随机奇点升级的免费等级,且效果随着奇点次数而增长!" }, - "hepteractAutocraft": "可以自动进行七阶立方锻造", - "generousOrbs": "超通量珠加成夸克获取数量的效果上限变为{{amount}}%", + "generousOrbs": { + "name": "慷慨之珠", + "default": "超通量珠加成夸克获取数量的效果上限变为{{amount}}%" + }, "researchDummies": { + "name": "傻瓜式研究教学", "hasLevel1": "您可以保留更好的自动研究,即方盒升级[1x9]", - "otherwise": "您可以使用鼠标停留购买升级研究" - }, - "eternalAscensions": { - "hasLevel1": "使您的飞升次数获取数量根据奇点次数而增加,且可以根据现实时间自动飞升了!目前获取数量倍率:{{amount}}倍", - "default": "使您的飞升次数获取数量根据奇点次数而增加!目前获取数量倍率:{{amount}}倍" + "default": "您可以使用鼠标停留购买升级研究" }, "antGodsCornucopia": { + "name": "蚁神的聚宝盆", "hasLevel3": "蚂蚁速度变为不受腐化影响的4.44倍,且再乘以完全不受任何等级腐化影响的1e12倍!", "hasLevel2": "蚂蚁速度变为不受腐化影响的4.44倍,且再乘以完全不受任何等级腐化影响的1e6倍!", "hasLevel1": "蚂蚁速度变为不受腐化影响的4.44倍,且再乘以完全不受任何等级腐化影响的1000倍!", "default": "蚂蚁速度变为不受腐化影响的4.44倍。" }, "sweepomatic": { - "hasLevel1": "在飞升挑战中,自动扫荡挑战可以从挑战10开始运行;并且如果您拥有立即完成挑战 2,还可以自动扫荡飞升挑战,节省点击次数!", - "otherwise": "自动扫荡挑战可以从挑战10开始运行飞升挑战,节省点击次数!" + "name": "自动扫荡·改 2", + "hasLevel1": "自动扫荡挑战可以从挑战10开始运行飞升挑战,并且如果您拥有立即完成挑战 2,还可以自动扫荡飞升挑战,节省点击次数!", + "default": "自动扫荡挑战可以从挑战10开始运行飞升挑战,节省点击次数!" }, "superStart": { + "name": "超级初始", "hasLevel4": "飞升后初始获得1次超越,1次转世,1001神话,2.22e2222粒子和500难得素", "hasLevel3": "飞升后初始获得1次超越,1次转世,1001神话,1e100粒子和500难得素", "hasLevel2": "飞升后初始获得1次超越,1次转世,1001神话,1e16粒子和500难得素", @@ -1591,6 +1603,7 @@ "default": "飞升后初始获得1次超越和1001神话" }, "notSoChallenging": { + "name": "这就是挑战?", "hasLevel4": "飞升后初始完成5次挑战8,1次挑战6、挑战7和挑战9", "hasLevel3": "飞升后初始完成5次挑战8,1次挑战6和挑战7", "hasLevel2": "升后初始完成1次挑战6、挑战7和挑战8", @@ -1598,6 +1611,7 @@ "default": "飞升后初始完成1次挑战6" }, "automationUpgrades": { + "name": "永久保留自动升级", "hasLevel5": "您常时获得方盒升级1x4至1x8和方盒升级2x10。您常时自动加强和升阶护身符,常时自动购买死神蚁。您常时自动购买自动化升级!100次进入奇点后,您永远记住了巧克力曲奇饼干(方盒升级Cx1)的味道,并可以永久保留它的效果!", "hasLevel4": "您常时获得方盒升级1x4至1x8和方盒升级2x10。您常时自动加强和升阶护身符,常时自动购买死神蚁。您常时自动购买自动化升级!", "hasLevel3": "您常时获得方盒升级1x4至1x8和方盒升级2x10。您常时自动购买自动化升级!", @@ -1606,67 +1620,128 @@ "default": "您常时获得方盒升级1x7(粒子建筑自动购买)。" }, "evenMoreQuarks": { + "name": "更多夸克", "bug": "发生了错误!如果您看到了这条消息,请联系Platonic。", - "m": "夸克获取数量额外{{stack}}次增加5%(相互叠乘)!总加成:{{inc}}%" + "default": "夸克获取数量额外<>次增加<>(相互叠乘)!总加成:<>" }, "shopSpecialOffer": { + "name": "商店特惠", "hasLevel2": "您常时获得商店的EX额外祭品、AUTO自动献祭祭品、EX额外难得素、AUTO难得素自动研究、蚂蚁速度、昂贵物品至满级,常时保留商店的季票1、季票2、季票3、季票Y、飞升的速度1%加成、飞升的速度0.5%加成", "hasLevel1": "您常时获得商店的EX额外祭品、AUTO自动献祭祭品、EX额外难得素、AUTO难得素自动研究、蚂蚁速度、昂贵物品至满级", "default": "进入奇点后您直接获得商店的EX额外祭品、AUTO自动献祭祭品、EX额外难得素、AUTO难得素自动研究、蚂蚁速度、昂贵物品各10级,可以重置这些升级获得夸克" }, - "potionAutogenerator": "每180秒自动各使用一瓶难得素药剂和一瓶祭品药剂!每次奇点使时间间隔减少3%。", - "respecBeGone": "护身符的额外等级对所有符文均生效!", + "potionAutogenerator": { + "name": "自动使用药剂", + "default": "每180秒自动各使用一瓶难得素药剂和一瓶祭品药剂!每次奇点使时间间隔减少3%。" + }, + "respecBeGone": { + "name": "别了,变配!", + "default": "护身符的额外等级对所有符文均生效!" + }, "forTheLoveOfTheAntGod": { + "name": "看在(蚁)神的份上", "hasLevel2": "您可以保留所有蚂蚁自动购买,飞升后初始获得一只神使蚁", "hasLevel1": "您可以保留所有蚂蚁自动购买,飞升后初始获得一只蚁后", "default": "您可以保留所有蚂蚁自动购买,飞升后初始获得一只工蚁" }, - "itAllAddsUp": "使用“增加”代码的奖励除以{{div}},但恢复时间也除以{{div2}},且使用次数上限乘以{{cap}}(向上取整)。", + "itAllAddsUp": { + "name": "集腋成裘", + "default": "The 'Add' Special Action reward & cooldown is divided by {{div}} while its maximum capacity is multiplied the same amount! (Rounded Up)." + }, "automagicalRunes": { + "name": "自动魔法符文", "hasLevel3": "开启自动符文时您可以自动购买祝福、魂灵、护身符的所有碎片,并会将祭品分配给符文6 - 无限晋升和符文7 - 蚁神之古物", "hasLevel2": "开启自动符文时您可以自动购买祝福、魂灵、护身符的所有碎片,并会将祭品分配给符文6 - 无限晋升", "hasLevel1": "开启自动符文时您可以自动购买祝福和魂灵,并会将祭品分配给符文6 - 无限晋升", "default": "开启自动符文时您可以自动购买祝福和魂灵" }, - "exaltedAchievements": "解锁新的,更加困难的成就!获取方式与其余的成就不同……(制作中)", + "eternalAscensions": { + "name": "永恒飞升", + "default": "Unlock a new Real Time based Auto Ascension mode!" + }, + "exaltedAchievements": { + "name": "拔擢成就", + "default": "Unlocks new, very difficult challenges! They may only be entered after reaching high enough Singularities!" + }, + "derpSmithsCornucopia": { + "name": "Derpsmith的聚宝盆", + "default": "Derpsmith祝福了您,每次奇点可以多获得{{counter}}%惊奇八阶方块!" + }, "coolQOLCubes": { + "name": "酷炫的开盒体验", "hasLevel1": "飞升时,研究6x13、7x3、7x18、8x8、8x23不再重置,并可以自动开启特定比例的方盒及立方!", "default": "飞升时,研究6x13、7x3、7x18、8x8、8x23不再重置" }, - "irishAnt": "受到爱尔兰之运祝福的蚂蚁可以使神肴之运增加{{i}}!", - "irishAnt2": "受到爱尔兰之运更多祝福的蚂蚁可以使神肴之运再增加{{i}}!", - "overclocked": "特定奇点升级的等级上限增加{{i}}!", + "irishAnt": { + "name": "爱尔兰蚂蚁", + "default": "受到爱尔兰之运祝福的蚂蚁可以使神肴之运增加<>!" + }, + "irishAnt2": { + "name": "爱尔兰蚂蚁 II:电子布加洛舞", + "default": "Ants blessed with more fortunate luck of the Irish increase base ☘ Ambrosia Luck by <>! +1% per perk level." + }, + "overclocked": { + "name": "超载", + "default": "特定奇点升级的等级上限增加{{i}}!" + }, "wowCubeAutomatedShipping": { + "name": "惊奇方盒自动运输", "hasLevel1": "每次飞升自动购买方盒升级!", "default": "每次飞升自动购买方盒升级,只在奇点挑战中有效" }, - "congealedblueberries": "半固态蓝莓跟普通蓝莓一样。您可以额外获得{{i}}蓝莓,用它们来购买更多升级!", - "goldenRevolution": "每次奇点使进入奇点的金夸克获取数量增加0.4%。目前增加了{{current}}%(最高增加100%)", - "goldenRevolutionII": "每次奇点使商店购买金夸克的花费减少0.2%。目前减少了{{current}}%(最高减少50%)", - "goldenRevolutionIII": "每次奇点使每小时导出存档的金夸克奖励增加2%。目前增加了{{current}}%(最高增加500%)", + "congealedblueberries": { + "name": "凝结蓝莓", + "default": "半固态蓝莓跟普通蓝莓一样。您可以额外获得{{i}}蓝莓,用它们来购买更多升级!" + }, + "goldenRevolution": { + "name": "金之革命", + "default": "每次奇点使进入奇点的金夸克获取数量增加0.4%。目前增加了{{current}}%(最高增加100%)" + }, + "goldenRevolutionII": { + "name": "金之革命 II", + "default": "每次奇点使商店购买金夸克的花费减少0.2%。目前减少了{{current}}%(最高减少50%)" + }, + "goldenRevolutionIII": { + "name": "金之革命 III", + "default": "每次奇点使每小时导出存档的金夸克奖励增加2%。目前增加了{{current}}%(最高增加500%)" + }, "platonicClones": { + "name": "PLATONIC桌面点击之克隆", "hasLevel1": "每次飞升自动购买PLATONIC升级,且不花费难得素和祭品!", "default": "每次飞升自动购买PLATONIC升级,且不花费难得素和祭品,只在奇点挑战中有效" }, - "dilatedFiveLeaf": { - "desc": "使☘ 神肴之运基础值增加<>!每级特权使加成数值增加1%。" + "platSigma": { + "name": "PL-AT Σ", + "default": "对于每次奇点,每级特权使“增加”代码的使用次数加快{{counter}}%恢复。目前加快了{{current}}%(最高使恢复时间减少60%)" + }, + "midasMilleniumAgedGold": { + "name": "米达斯的千年之金", + "default": "每次使用“增加”代码后还可以使金夸克 I的免费等级增加0.01,金夸克 III的免费等级增加0.05。" + }, + "goldenRevolution4": { + "name": "金之革命 IV", + "default": "每个时刻获得惊奇八阶方块时,也自动获得金夸克,数量为奇点的金夸克获取数量的1/{{gq}}!" }, - "platSigma": "对于每次奇点,每级特权使“增加”代码的使用次数加快{{counter}}%恢复。目前加快了{{current}}%(最高使恢复时间减少60%)", - "midasMilleniumAgedGold": "每次使用“增加”代码后还可以使金夸克 I的免费等级增加0.01,金夸克 III的免费等级增加0.05。", - "goldenRevolution4": "每个时刻获得惊奇八阶方块时,也自动获得金夸克,数量为奇点的金夸克获取数量的1/{{gq}}!", "octeractMetagenesis": { - "hasLevel1": "每次使用“每日”代码后可以使惊奇八阶方块同生和惊奇八阶方块三度起源的免费等级增加当前等级的1%!", - "default": "每次使用“每日”代码后可以使惊奇八阶方块同生的免费等级增加当前等级的1%!" + "name": "八阶方块世代交替", + "hasLevel1": "Gives free levels of Octeract Cogenesis AND Trigenesis based on your current free levels and purchased levels: (level * free / 640)^0.5, (level^2 * free/125000)^0.333 respectively ", + "default": "Gives free levels of Octeract Cogenesis based on your current free levels and purchased levels: (level * free / 1000)^0.5" }, "immaculateAlchemy": { + "name": "完美炼金术", "hasLevel2": "从第200次奇点开始,增加奇点次数的升级不再生效!但使您的金夸克获取数量变为8倍,并使购买金夸克的花费除以8。", "hasLevel1": "从第200次奇点开始,增加奇点次数的升级不再生效!但使您的金夸克获取数量变为5倍,并使购买金夸克的花费除以5。", "default": "从第200次奇点开始,增加奇点次数的升级不再生效!但使您的金夸克获取数量变为3倍,并使购买金夸克的花费除以3。" }, - "skrauQ": "使夸克获取数量变为((奇点次数-179)/20)的平方倍。目前倍率为{{amt}}……是的,就是这么好。", - "derpSmithsCornucopia": "Derpsmith祝福了您,每次奇点可以多获得{{counter}}%惊奇八阶方块!", - "oneHundredThirtyOne": "使<> 神肴之运增加<>!", - "twoHundredSixtyNine": "使<> 神肴之运增加<>!" + "skrauQ": { + "name": "克夸", + "default": "使夸克获取数量变为((奇点次数-179)/20)的平方倍。目前倍率为{{amt}}……是的,就是这么好。" + }, + "primalPower": { + "name": "Primal Power!", + "hasLevel1": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: + <> & <> Ambrosia Luck!", + "default": "Gain awesome power by reaching Prime Numbered Singularities! Currently gaining: <> Ambrosia Luck!" + } }, "toString": { "noMinimum": "无进入奇点次数要求", @@ -2064,49 +2139,6 @@ "penaltyRough": "惩罚将在<>后大幅增加。", "antiquitiesBought": "<>", "antiquitiesNotBought": "<>" - }, - "perkNames": { - "welcometoSingularity": "欢迎来到奇点时代!", - "unlimitedGrowth": "无限成长", - "goldenCoins": "金币之雨", - "xyz": "“每日”代码额外奖励", - "hepteractAutocraft": "七阶立方自动锻造", - "generousOrbs": "慷慨之珠", - "researchDummies": "傻瓜式研究教学", - "eternalAscensions": "永恒飞升", - "antGodsCornucopia": "蚁神的聚宝盆", - "sweepomatic": "自动扫荡·改 2", - "superStart": "超级初始", - "notSoChallenging": "这就是挑战?", - "automationUpgrades": "永久保留自动升级", - "evenMoreQuarks": "更多夸克", - "shopSpecialOffer": "商店特惠", - "potionAutogenerator": "自动使用药剂", - "respecBeGone": "别了,变配!", - "forTheLoveOfTheAntGod": "看在(蚁)神的份上", - "itAllAddsUp": "集腋成裘", - "automagicalRunes": "自动魔法符文", - "exaltedAchievements": "拔擢成就", - "derpSmithsCornucopia": "Derpsmith的聚宝盆", - "coolQOLCubes": "酷炫的开盒体验", - "irishAnt": "爱尔兰蚂蚁", - "dilatedFiveLeaf": "膨胀的五叶草!", - "irishAnt2": "爱尔兰蚂蚁 II:电子布加洛舞", - "overclocked": "超载", - "wowCubeAutomatedShipping": "惊奇方盒自动运输", - "congealedblueberries": "凝结蓝莓", - "goldenRevolution": "金之革命", - "goldenRevolutionII": "金之革命 II", - "goldenRevolutionIII": "金之革命 III", - "platonicClones": "PLATONIC桌面点击之克隆", - "platSigma": "PL-AT Σ", - "midasMilleniumAgedGold": "米达斯的千年之金", - "goldenRevolution4": "金之革命 IV", - "octeractMetagenesis": "八阶方块世代交替", - "immaculateAlchemy": "完美炼金术", - "skrauQ": "克夸", - "twoHundredSixtyNine": "贰佰陆拾玖!", - "oneHundredThirtyOne": "壹佰叁拾壹!" } }, "general": { @@ -3589,4 +3621,4 @@ "ADD_CODE_CAP_BUFF": "使“增加”代码的次数上限变为原来的<>倍" } } -} +}