1
0
Fork 0
mirror of https://github.com/thepaperpilot/The-Modding-Tree.git synced 2025-03-14 18:11:38 +00:00

Adjusted ritual runes' starting costs

This commit is contained in:
thepaperpilot 2021-05-16 13:39:17 -05:00
parent dde1eded43
commit ea60b78318

View file

@ -112,7 +112,7 @@ function createRuneBuyable(id, title) {
},
cost(x) {
const amount = x || getBuyableAmount("rituals", this.id);
return new Decimal(1e10).times(new Decimal(10).pow(amount));
return new Decimal(1e9).times(new Decimal(10).pow(amount));
},
canAfford() {
return player[id].points.gte(this.cost());