Skip to content

Commit

Permalink
v0.1.0 P2
Browse files Browse the repository at this point in the history
  • Loading branch information
jwklong committed Jan 4, 2022
1 parent d9619db commit 1832653
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions js/classes/alephlayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ class AlephLayer
{
this.aleph = new Decimal(0);
this.upgrades = {
alephGain: new AlephUpgrade("Increase your task gain", level => Decimal.pow(1.215, level).mul(100),
alephGain: new AlephUpgrade("Increase your aleph gain", level => Decimal.pow(1.215, level).mul(100),
level => Decimal.pow(1.2 + game.restackLayer.permUpgrades.aleph.apply(), level)),
alephGainBonus: new AlephUpgrade("Get a Bonus to task gain",
alephGainBonus: new AlephUpgrade("Get a Bonus to aleph gain",
level => Utils.createValueDilation(Decimal.pow(1000, level).mul(1000), 0.02),
level => new Decimal(1).add(level.mul(0.1)).mul(Decimal.pow(1.05, Decimal.max(level.sub(10), 0))), {
getEffectDisplay: effectDisplayTemplates.percentStandard(3, "", " %", 0)
}),
alephBoost: new AlephUpgrade("Gain more aleph based on the log(ℵ) you have",
level => new Decimal(1e6).pow(Decimal.pow(1.5, level)),
level => new Decimal(1).add(Decimal.max(0, game.alephLayer.aleph).add(1).log10().mul(level).mul(0.05)).pow(2.5)),
deltaBoost: new AlephUpgrade("Gain more 🗡",
deltaBoost: new AlephUpgrade("Gain more δ",
level => Decimal.pow(1e5, level).mul(1e3),
level => Decimal.pow(10, level), {
maxLevel: 4
Expand All @@ -30,7 +30,7 @@ class AlephLayer
alephBoost2: new AlephUpgrade("Gain more aleph based on the log(log(α)) you have",
level => Utils.createValueDilation(Decimal.pow(1e30, level).mul(1e100), 0.01),
level => game.layers[0] ? Decimal.pow(new Decimal(1.1).add(level.mul(0.1)), Decimal.max(0, game.layers[0].resource).add(1).log10().add(1).log10()) : new Decimal(1)),
betterBetaFormula: new AlephUpgrade("The Prestige Formula is better",
betterBetaFormula: new AlephUpgrade("The β Prestige Formula is better",
level => new Decimal(1e90),
level => new Decimal(1).add(level.mul(0.12)), {
maxLevel: 1,
Expand Down
2 changes: 1 addition & 1 deletion js/components/aleph-upgrade.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Vue.component("aleph-upgrade", {
props: ["upgrade"],
template: `<resource-upgrade :upgrade="upgrade" :resourcename="&aleph;"></resource-upgrade>`
template: `<resource-upgrade :upgrade="upgrade" :resourcename="'<span class=` + 'aleph' + `>ℵ</span>'"></resource-upgrade>`
});
4 changes: 2 additions & 2 deletions js/mod.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
var mod = {
primaryName: "ω",
secondaryName: "Engine",
version: "0.1.0 P1",
engineVer: "0.1.0 P1", //DO NOT MODIFY
version: "0.1.0 P2",
engineVer: "0.1.0 P2", //DO NOT MODIFY
themes: [
["Dark", "css/themes/dark.css"],
["Light", "https://veprogames.github.io/omega-layers/css/main.css"],
Expand Down

0 comments on commit 1832653

Please sign in to comment.