mirror of
https://github.com/thepaperpilot/The-Modding-Tree.git
synced 2025-02-07 10:31:37 +00:00
Reduced distill completions softcap
This commit is contained in:
parent
11c9c7a786
commit
991fbfa928
1 changed files with 6 additions and 6 deletions
|
@ -52,7 +52,7 @@ Vue.component("instrument", {
|
|||
`,
|
||||
computed: {
|
||||
completions() {
|
||||
return softcap(player.distill[`${this.data}Completions`], new Decimal(1000), .25);
|
||||
return softcap(player.distill[`${this.data}Completions`], new Decimal(1000), 1 / 3);
|
||||
},
|
||||
canAfford() {
|
||||
return layers.distill.buyables[this.data].canAfford();
|
||||
|
@ -120,11 +120,11 @@ function updateInstrument(instrument, requiredLevel, diff) {
|
|||
function getEssentiaMult() {
|
||||
let gain = new Decimal(1);
|
||||
gain = gain.times(new Decimal(1.1).pow(getJobLevel("distill")));
|
||||
gain = gain.times(softcap(player.distill.retortCompletions, new Decimal(1000), .25).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.alembicCompletions, new Decimal(1000), .25).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.crucibleCompletions, new Decimal(1000), .25).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.bainMarieCompletions, new Decimal(1000), .25).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.vapoursCompletions, new Decimal(1000), .25).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.retortCompletions, new Decimal(1000), 1 / 3).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.alembicCompletions, new Decimal(1000), 1 / 3).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.crucibleCompletions, new Decimal(1000), 1 / 3).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.bainMarieCompletions, new Decimal(1000), 1 / 3).div(100).add(1));
|
||||
gain = gain.times(softcap(player.distill.vapoursCompletions, new Decimal(1000), 1 / 3).div(100).add(1));
|
||||
gain = gain.times(layers.generators.clickables.distill.effect());
|
||||
gain = gain.times(ritualEffect("gain"));
|
||||
if (player.generators.distillActive && (player.tab === "generators" || player.generators.timeLoopActive)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue