Fixed for Version 2.002 Beta (mostly)

This commit is contained in:
Aktanusa
2016-06-28 22:32:07 -04:00
parent e1c4826605
commit 5a42ae532e
3 changed files with 24 additions and 24 deletions

View File

@@ -181,7 +181,10 @@ CM.Cache.RemakeChain = function() {
CM.Cache.RemakeSeaSpec = function() {
if (Game.season == 'christmas') {
CM.Cache.SeaSpec = Math.max(25, Game.cookiesPs * 60 * 1);
var val = Game.cookiesPs * 60;
if (Game.hasBuff('Elder frenzy')) val *= 0.5; // very sorry
if (Game.hasBuff('Frenzy')) val *= 0.75; // I sincerely apologize
CM.Cache.SeaSpec = Math.max(25, val);
if (Game.Has('Ho ho ho-flavored frosting')) CM.Cache.SeaSpec *= 2;
}
}