swap delta and epsilon effects

This commit is contained in:
Nif 2024-03-07 17:57:57 +00:00
parent f590171c4f
commit c751543ea1
2 changed files with 4 additions and 4 deletions

View file

@ -44,8 +44,8 @@ function getPointGen() {
let gain = getAlphaLevel().div(20)
gain = gain.mul(getBetaLevel().div(20).add(1))
gain = gain.mul(getGammaLevel().div(15).add(1))
gain = gain.pow(getDeltaLevel().div(50).add(1))
gain = gain.pow(getEpsilonLevel().div(10).add(1))
gain = gain.mul(getDeltaLevel().div(10).add(1))
gain = gain.pow(getEpsilonLevel().div(40).add(1))
return gain
}

View file

@ -69,7 +69,7 @@ addLayer("p", {
progress() { return player[this.layer].points.div(getNextDeltaCost()) },
display() {
return "Delta - Level " + getDeltaLevel() + " (" + player[this.layer].points + "/" + getNextDeltaCost()
+ ")<br>Effect: ^" + getDeltaLevel().div(50).add(1) + " to point gen."
+ ")<br>Effect: x" + getDeltaLevel().div(10).add(1) + " to point gen."
},
fillStyle: {backgroundColor: "#0c6949"}
},
@ -80,7 +80,7 @@ addLayer("p", {
progress() { return player[this.layer].points.div(getNextEpsilonCost()) },
display() {
return "Epsilon - Level " + getEpsilonLevel() + " (" + player[this.layer].points + "/" + getNextEpsilonCost()
+ ")<br>Effect: x" + getEpsilonLevel().div(10).add(1) + " to point gen."
+ ")<br>Effect: ^" + getEpsilonLevel().div(40).add(1) + " to point gen."
},
fillStyle: {backgroundColor: "#0c6949"}
},