安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






If you're referring to the time shown on the item, it's the amount of time you have to wait until you have enough cookies to buy, which can be quite long, especially in the later stages of the game; you'll be relying on Combos to get the cookies you need!
perhaps it needs an update for the new version of the game?
100% respect that shit.
### Fix
- Fix broken Sort Grandmapocalypse switch
The only problem I've run into is that the "Sort Grandmapocalypse" doesn't work as I expect - I was expecting it to not sort the upgrades that triggered/escalated the Grandmapocalypse, like Communal Brainsweep, but it still seems to sort them regardless.
Design Detail for Payback Rate Mod (Slide) [docs.google.com]
# first get frenzy, which makes cookiesPs * 7
else if (choice == 'frenzy') {
buff = Game.gainBuff('frenzy', Math.ceil(77 * effectDurMod), 7);
}
# second get Lucky! base on buffed cookiesPs
else if (choice == 'multiply cookies') {
var moni = mult * Math.min(Game.cookies * 0.15, Game.cookiesPs * 60 * 15) + 13;//add 15% to cookies owned (+13), or 15 minutes of cookie production - whichever is lowest
Game.Earn(moni);
popup = loc("Lucky!") + '<br><small>' + loc("+%1!", loc("%1 cookie", LBeautify(moni))) + '</small>';
}
However using cookiesPs it not a stable way to banking the target number, i get it, i will update this later to use cookiesPsRaw
In game's source code around Cookie Clicker\resources\app\src\main.js Line 5597:
var maxPayout = Math.min(Game.cookiesPs * 60 * 60 * 6, Game.cookies * 0.5) * mult;
in order to get max payout from cookie chain, cookies need to be larger than(Game.cookiesPs * 60 * 60 * 6) * 2, which is Game.cookiesPs * 43200
Also, shouldn't the text next to the banking feature suggest 42,000 with the Get Lucky upgrade, not 43,200?
but it does have a building sorting function
Cookie monster uses Payback Period, but I think it is important in Cookie Clicker to increase CPS (Delta CPS) as soon as possible, plus consider the shorter Payback Period the better, so this MOD uses the parameter "Delta CPS / Payback Period".
In addition, cookie monster does not take into account tiered upgrades and does not provide building sorting function.