Cookie Clicker

Cookie Clicker

Cookie Garden Helper - Reloaded
Minor improvement for Juicy QueenBeet
Given the time sink these plants are, I made a small adjustment to the template in the mod for the sake of farming them repeatedly.

By adding the Juicy QueenBeet itself to the requisite slots in the garden template, I can keep the clean garden option on and avoid other plants like duketaters mutating in the valuable JQB plots.
Obviously, it isn't relevant for the first time it's growing since new seeds won't be cleared by the clean action, but if repeatedly trying to grow them, the current template isn't sufficient.

Since the JQB cannot be planted, there is no negative consequence if it is present in the template, but by including it, non-JQB's will be cleaned up, thus saving a plot from being lost to duketaters and such.

It's just a minor thing I found helpful. Hope it's of benefit to someone else.

===========================

1. Open {SteamLibraryLocation}\steamapps\common\Cookie Clicker\resources\app\mods\workshop\CookieGardenHelper-reloaded\main.js in a text editor

2. Starting at line 767 with the comment "//Juicy Queenbeet" to line 842 (which should be just above "//Golden clover" - replace it with the following:

//Juicy queenbeet
if(seedId==22){
var Q = [21,0]
var J = [22,0]
var X = [0,0]
if(l>=9){
return [
[Q,Q,Q,Q,Q,Q],
[Q,J,Q,Q,J,Q],
[Q,Q,Q,Q,Q,Q],
[Q,Q,Q,Q,Q,Q],
[Q,J,Q,Q,J,Q],
[Q,Q,Q,Q,Q,Q]
];
}
if(l>=8){
return [
[X,X,X,X,X,X],
[Q,Q,Q,Q,Q,Q],
[Q,J,Q,Q,J,Q],
[Q,Q,Q,Q,Q,Q],
[Q,J,Q,Q,J,Q],
[Q,Q,Q,Q,Q,Q]
];
}
if(l>=7){
return [
[X,X,X,X,X,X],
[X,Q,Q,Q,Q,Q],
[X,Q,J,Q,J,Q],
[X,Q,Q,Q,Q,Q],
[X,Q,J,Q,J,Q],
[X,Q,Q,Q,Q,Q]
];
}
if(l>=6){
return [
[X,X,X,X,X,X],
[X,Q,Q,Q,Q,Q],
[X,Q,J,Q,J,Q],
[X,Q,Q,Q,Q,Q],
[X,X,X,X,X,X],
[X,X,X,X,X,X]
];
}
if(l>=5){
return [
[X,X,X,X,X,X],
[X,Q,Q,Q,X,X],
[X,Q,J,Q,X,X],
[X,Q,Q,Q,X,X],
[X,X,X,X,X,X],
[X,X,X,X,X,X]
];
}
if(l>=4){
return [
[X,X,X,X,X,X],
[X,X,X,X,X,X],
[X,Q,Q,Q,X,X],
[X,Q,J,Q,X,X],
[X,Q,Q,Q,X,X],
[X,X,X,X,X,X]
];
}
if(l>=3){
return [
[X,X,X,X,X,X],
[X,X,X,X,X,X],
[X,X,Q,Q,Q,X],
[X,X,Q,J,Q,X],
[X,X,Q,Q,Q,X],
[X,X,X,X,X,X]
];
}
return this.emptyPlot();
}
Last edited by MadeToFall; 27 Feb @ 8:07pm