TS 132 now makes Replicanti 1.5x faster

This commit is contained in:
kajfik 2024-04-29 20:35:55 +02:00
parent dce5659c50
commit f17e2a81eb
2 changed files with 6 additions and 5 deletions

View File

@ -144,8 +144,8 @@ export function totalReplicantiSpeedMult(overCap) {
RealityUpgrade(23),
);
totalMult = totalMult.times(preCelestialEffects);
if (TimeStudy(132).isBought && Perk.studyPassive.isBought) {
totalMult = totalMult.times(3);
if (TimeStudy(132).isBought) {
totalMult = totalMult.times(Perk.studyPassive.isBought ? 3 : 1.5);
}
if (!overCap && Achievement(134).isUnlocked) {

View File

@ -328,9 +328,10 @@ export const normalTimeStudies = [
requirement: [122],
reqType: TS_REQUIREMENT_TYPE.AT_LEAST_ONE,
requiresST: [131, 133],
description: () => (Perk.studyPassive.isBought && !Pelle.isDoomed
? `Replicanti Galaxies are ${formatPercents(0.4)} stronger and Replicanti are ${format(3)} times faster`
: `Replicanti Galaxies are ${formatPercents(0.4)} stronger`),
description: () => (Pelle.isDoomed
? `Replicanti Galaxies are ${formatPercents(0.4)} stronger`
: `Replicanti Galaxies are ${formatPercents(0.4)} stronger and Replicanti are
${Perk.studyPassive.isBought ? formatX(3) : formatX(1.5, 1, 1)} faster`),
effect: 0.4
},
{