Skip to content

Commit f94d636

Browse files
committed
0.4.2
1 parent 2332f46 commit f94d636

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

MeTMT/js/layers.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -653,14 +653,14 @@ addLayer("u", {
653653
11: {
654654
cost(x) { return new Decimal(2).mul(x.pow(2)).pow(15).pow(3) },
655655
title: "Ultra Buyable!",
656-
display() { return "Amount: " + format(getBuyableAmount(this.layer, this.id).floor()) + "\nCost: " + format(this.cost().floor()) + " ulra points\nEffect: x" + format(this.effect()) + " point gain"},
656+
display() { return "Amount: " + format(getBuyableAmount(this.layer, this.id).floor()) + "\nCost: " + format(this.cost().floor()) + " ultra points\nEffect: x" + format(this.effect()) + " point gain"},
657657
canAfford() { return player[this.layer].points.gte(this.cost()) },
658658
buy() {
659659
player[this.layer].points = player[this.layer].points.sub(this.cost())
660660
setBuyableAmount(this.layer, this.id, getBuyableAmount(this.layer, this.id).add(1))
661661
},
662662
effect() {
663-
return new Decimal(1).mul(this.cost().sub(1)).times(50 + (hasUpgrade('i', 16) ? 50 : 0)).pow(0.9).add(1)
663+
return new Decimal(1).mul(this.cost().sub(1)).times(50 + (hasUpgrade('i', 16) ? -40 : 0)).pow(0.9).add(1)
664664
},
665665
unlocked() {return player['+'].points.gte(12)}
666666
},
@@ -739,8 +739,8 @@ addLayer("i", {
739739
unlocked() {return player['+'].points.gte(20)}
740740
},
741741
16: {
742-
title: "UltraBuff",
743-
description: "Boost the ultra buyable effect",
742+
title: "Exchange 2",
743+
description: "Nerf the ultra buyable, but x9 point gain",
744744
cost: new Decimal(150),
745745
unlocked() {return player['+'].points.gte(20)}
746746
},

MeTMT/js/mod.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ let modInfo = {
1313

1414
// Set your version in num and name
1515
let VERSION = {
16-
num: "0.4.1",
17-
name: "NoGap T1",
16+
num: "0.4.2",
17+
name: "NoGap T2",
1818
}
1919

2020
let changelog = `galaxy has a changelog you don't need this one!`
@@ -62,6 +62,7 @@ function getPointGen() {
6262
if (player['+'].points.gte(16)) gain = gain.times(player['+'].points.pow(1.1))
6363
if (hasUpgrade('i', 12)) gain = gain.times(2)
6464
if (hasUpgrade('i', 14)) gain = gain.times(5)
65+
if (hasUpgrade('i', 16)) gain = gain.times(9)
6566
if (hasUpgrade('i', 17)) gain = gain.times(69420)
6667
return gain
6768
}

0 commit comments

Comments
 (0)