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:
parent
dde1eded43
commit
ea60b78318
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue