mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-21 16:13:55 +00:00
v1.0 Beta 2 Patch 1
Inflation has been fixed
This commit is contained in:
parent
6881f49f57
commit
29b7f76f25
1 changed files with 5 additions and 1 deletions
|
@ -1396,7 +1396,11 @@ const LAYER_UPGS = {
|
|||
desc: "Spells are stronger based on your Total Super-Prestige Points.",
|
||||
cost: new Decimal(30),
|
||||
unl: function() { return player.sp.upgrades.includes(13)||player.sp.upgrades.includes(22) },
|
||||
currently: function() { return player.sp.total.plus(1).log10().div(5).plus(1) },
|
||||
currently: function() {
|
||||
let sp = player.sp.total
|
||||
if (sp.gte(250)) sp = sp.log10().times(250/Math.log10(250)).min(sp)
|
||||
return sp.plus(1).log10().div(5).plus(1)
|
||||
},
|
||||
effDisp: function(x) { return format(x.sub(1).times(100))+"% stronger" },
|
||||
},
|
||||
24: {
|
||||
|
|
Loading…
Reference in a new issue