Bars on lockdown

This commit is contained in:
Nif 2024-03-07 20:22:42 +00:00
parent 6446cb09db
commit 0ba046a84b

View file

@ -56,7 +56,8 @@ addLayer("p", {
return "Beta - Level " + getBetaLevel() + " (" + player[this.layer].points + "/" + getBetaCost() return "Beta - Level " + getBetaLevel() + " (" + player[this.layer].points + "/" + getBetaCost()
+ ")<br>Effect: x" + getBetaEffect() + " to point gen." + ")<br>Effect: x" + getBetaEffect() + " to point gen."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getAlphaLevel().gte(1) }
}, },
betaRank: { betaRank: {
direction: RIGHT, direction: RIGHT,
@ -67,7 +68,8 @@ addLayer("p", {
return "Beta - Rank " + getBetaRank() + " (" + getBetaLevel() + "/" + getBetaRankCost() return "Beta - Rank " + getBetaRank() + " (" + getBetaLevel() + "/" + getBetaRankCost()
+ ")<br>Effect: +" + getBetaRankEffect() + " to Beta base." + ")<br>Effect: +" + getBetaRankEffect() + " to Beta base."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getAlphaLevel().gte(1) }
}, },
gamma: { gamma: {
direction: RIGHT, direction: RIGHT,
@ -78,7 +80,8 @@ addLayer("p", {
return "Gamma - Level " + getGammaLevel() + " (" + player[this.layer].points + "/" + getGammaCost() return "Gamma - Level " + getGammaLevel() + " (" + player[this.layer].points + "/" + getGammaCost()
+ ")<br>Effect: x" + getGammaEffect() + " to point gen." + ")<br>Effect: x" + getGammaEffect() + " to point gen."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getBetaLevel().gte(1) }
}, },
gammaRank: { gammaRank: {
direction: RIGHT, direction: RIGHT,
@ -89,7 +92,8 @@ addLayer("p", {
return "Gamma - Rank " + getGammaRank() + " (" + getGammaLevel() + "/" + getGammaRankCost() return "Gamma - Rank " + getGammaRank() + " (" + getGammaLevel() + "/" + getGammaRankCost()
+ ")<br>Effect: +" + getGammaRankEffect() + " to Gamma base." + ")<br>Effect: +" + getGammaRankEffect() + " to Gamma base."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getBetaLevel().gte(1) }
}, },
delta: { delta: {
direction: RIGHT, direction: RIGHT,
@ -100,7 +104,8 @@ addLayer("p", {
return "Delta - Level " + getDeltaLevel() + " (" + player[this.layer].points + "/" + getDeltaCost() return "Delta - Level " + getDeltaLevel() + " (" + player[this.layer].points + "/" + getDeltaCost()
+ ")<br>Effect: x" + getDeltaEffect() + " to point gen." + ")<br>Effect: x" + getDeltaEffect() + " to point gen."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getGammaLevel().gte(1) }
}, },
deltaRank: { deltaRank: {
direction: RIGHT, direction: RIGHT,
@ -111,7 +116,8 @@ addLayer("p", {
return "Delta - Rank " + getDeltaRank() + " (" + getDeltaLevel() + "/" + getDeltaRankCost() return "Delta - Rank " + getDeltaRank() + " (" + getDeltaLevel() + "/" + getDeltaRankCost()
+ ")<br>Effect: +" + getDeltaRankEffect() + " to Delta base." + ")<br>Effect: +" + getDeltaRankEffect() + " to Delta base."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getGammaLevel().gte(1) }
}, },
epsilon: { epsilon: {
direction: RIGHT, direction: RIGHT,
@ -122,7 +128,8 @@ addLayer("p", {
return "Epsilon - Level " + getEpsilonLevel() + " (" + player[this.layer].points + "/" + getEpsilonCost() return "Epsilon - Level " + getEpsilonLevel() + " (" + player[this.layer].points + "/" + getEpsilonCost()
+ ")<br>Effect: ^" + getEpsilonEffect() + " to point gen." + ")<br>Effect: ^" + getEpsilonEffect() + " to point gen."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getDeltaLevel().gte(1) }
}, },
epsilonRank: { epsilonRank: {
direction: RIGHT, direction: RIGHT,
@ -133,7 +140,8 @@ addLayer("p", {
return "Epsilon - Rank " + getEpsilonRank() + " (" + getEpsilonLevel() + "/" + getEpsilonRankCost() return "Epsilon - Rank " + getEpsilonRank() + " (" + getEpsilonLevel() + "/" + getEpsilonRankCost()
+ ")<br>Effect: +" + getEpsilonRankEffect() + " to Epsilon base." + ")<br>Effect: +" + getEpsilonRankEffect() + " to Epsilon base."
}, },
fillStyle: {backgroundColor: "#0c6949"} fillStyle: {backgroundColor: "#0c6949"},
unlocked() { return getDeltaLevel().gte(1) }
}, },
}, },
microtabs: { microtabs: {
@ -156,7 +164,8 @@ addLayer("p", {
["bar", "gammaRank"], ["bar", "gammaRank"],
["bar", "deltaRank"], ["bar", "deltaRank"],
["bar", "epsilonRank"] ["bar", "epsilonRank"]
] ],
unlocked() { return getAlphaLevel().gte(15) }
} }
} }
}, },