From 645a9b67c3e759404690bfa3ecf4b9210e20f780 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 2 Jan 2025 13:27:31 -0500 Subject: [PATCH] try again --- src/logic/buildings.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/logic/buildings.js b/src/logic/buildings.js index 39a5ffd..8807b6d 100644 --- a/src/logic/buildings.js +++ b/src/logic/buildings.js @@ -65,7 +65,7 @@ BModify._Initialize = function(en, Research) { this.baseRs = baseRS; this.rsTotal = baseRS; - this.getBaseRsMax = function(){return this.baseRs*5*Math.pow(20-this.id, 1.3);} + this.getBaseRsMax = function(){return this.baseRs*5*Math.pow(20-this.id, 0.3);} this.rsMax = this.getBaseRsMax(); this.rsUsed = 0; this.interest = 0; @@ -192,7 +192,7 @@ BModify._Initialize = function(en, Research) { var dep = (this.RhpS / Game.fps) * this.me.amount * this.decayedFactor() * (this.interest>0?1.5:1); this.rsUsed += dep; BModify.totalDp += dep; - this.rsMaxBoost *= 1+(0.01/Game.fps); + //this.rsMaxBoost *= 1+(0.01/Game.fps); } } @@ -303,7 +303,7 @@ BModify._Initialize = function(en, Research) { str+='
'+this.rsNames[0]+' use rate ('+this.rsNames[2]+'/second) per '+this.me.dname.toLowerCase()+': '+ Beautify((this.pause || this.depleted) ? 0 : this.RhpS*(this.interest>0?1.5:1), 1); str+=' ('+Beautify(this.RhpS * this.me.amount * this.decayedFactor()*(this.interest>0?1.5:1), 1)+' for '+Beautify(this.me.amount)+' '+this.me.plural.toLowerCase(); - str+=')'+(((this.interest>0)&&(!this.pause)&&(!this.depleted))?' (50% faster due to interest)':'')+'
'; + str+=')'; str+='
Base yield: '+Beautify(this.yield, 1)+ " cookies/"+this.rsNames[1]+'
'; str+='
Total amount of '+this.rsNames[0].toLowerCase()+': '+Beautify(this.rsTotal) + " " + this.rsNames[2]+'
'; str+='
Used '+this.rsNames[0].toLowerCase()+' so far: '+Beautify(this.rsUsed) + " " + this.rsNames[2]+'
';