1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-21 16:13:55 +00:00

Beta v1.1 Alpha 21

This commit is contained in:
Jacorb90 2020-08-31 22:27:52 -04:00
parent 23b2e51c98
commit ff98671976
2 changed files with 7 additions and 3 deletions

View file

@ -16,6 +16,10 @@
<div class="vl"></div>
<div v-if="player.tab=='changelog'" class="col right">
<button class="back" onclick="showTab('tree')"></button><br><br>
<h3>Beta v1.1 Alpha 21</h3>
<ul>
<li>Rebalanced from h10 to endgame (now ends at 1e920,000 Points unless you wanna grind)</li>
</ul><br>
<h3>Beta v1.1 Alpha 20</h3>
<ul>
<li>Made h10 hidden until you beat h9</li>

View file

@ -369,7 +369,7 @@ const LAYER_UPGS = {
},
32: {
desc: "Add free Boosters based on your Generator Power.",
cost: new Decimal(1265),
cost: new Decimal(1263),
unl: function() { return player.hb.upgrades.includes(14) },
currently: function() { return player.g.power.plus(1).log10().sqrt().floor() },
effDisp: function(x) { return "+"+formatWhole(x) },
@ -470,14 +470,14 @@ const LAYER_UPGS = {
},
34: {
desc: "Generators are stronger based on their amount.",
cost: new Decimal(1075),
cost: new Decimal(1070),
unl: function() { return player.ss.upgrades.includes(21) },
currently: function() { return player.g.points.plus(1).log10().plus(1).log10().plus(1).sqrt() },
effDisp: function(x) { return format(x.sub(1).times(100))+"% stronger" },
},
35: {
desc: "Subspace boosts Generator Power gain.",
cost: new Decimal(1132),
cost: new Decimal(1130),
unl: function() { return player.ss.upgrades.includes(21) },
currently: function() { return player.ss.subspace.plus(1).pow(25) },
effDisp: function(x) { return format(x)+"x" },