1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2025-05-10 20:11:33 +00:00
It is finally here!
This commit is contained in:
Aarex Tiaokhiao 2020-09-14 15:26:10 -04:00
parent 8da71643e5
commit c08042da7e
9 changed files with 848 additions and 697 deletions

View file

@ -41,7 +41,7 @@ function updateTemp() {
tmp.enhEff2 = getEnhancerEff2()
tmp.subbedEnh = new Decimal(0)
if (tmp.challActive ? tmp.challActive.h[52] : true) {
tmp.subbedEnh = tmp.subbedEnh.plus(new Decimal(player.h.time).times(40).plus(1).log10().pow(10).max(10)).round()
tmp.subbedEnh = tmp.subbedEnh.add(new Decimal(player.h.time).times(40).add(1).log10().pow(10).max(10)).round()
}
tmp.freeExtCap = getFreeExtCapsules()
@ -121,7 +121,7 @@ function updateTemp() {
data.compressed = tmp.s.sbUnl.sub(SPACE_BUILDINGS.max).max(0).floor().toNumber()
data.work = new Decimal(1)
if (player.i.building) data.work = data.work.add(player.i.extraBuildings.add(1).log10().add(2).div(5))
if (player.i.building) data.work = data.work.add(player.i.extraBuildings.add(4).sqrt().div(5))
data.workEff = Decimal.pow(2, data.work.sub(1))
}
}